Rename packages
This commit is contained in:
parent
db3b280a26
commit
77d08b1a35
1 changed files with 4 additions and 1 deletions
|
@ -1,10 +1,13 @@
|
||||||
|
apply plugin: 'java'
|
||||||
|
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
android
|
android
|
||||||
}
|
}
|
||||||
|
|
||||||
task androidJar(type: Jar) {
|
task androidJar(type: Jar) {
|
||||||
appendix = "android"
|
appendix = "android"
|
||||||
from sourceSets.main.output
|
from sourceSets.main.java.outputDir
|
||||||
exclude("**/PlatformUtil.*")
|
exclude("**/PlatformUtil.*")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue