Skip to content

Instantly share code, notes, and snippets.

@isopan
Created May 19, 2015 03:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isopan/23be91d6f73614fd20c6 to your computer and use it in GitHub Desktop.
Save isopan/23be91d6f73614fd20c6 to your computer and use it in GitHub Desktop.
Android Studio New Module
task clearJar(type: Delete) {
delete 'build/libs/mylibrary.jar'
}
task makeJar(type: Copy) {
from('build/intermediates/bundles/release/')
into('release/')
include('classes.jar')
rename('classes.jar', 'mylibrary.jar')
}
makeJar.dependsOn(clearJar, build)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment