mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-04-29 22:04:25 +02:00
30 lines
521 B
Groovy
Executable File
30 lines
521 B
Groovy
Executable File
|
|
apply plugin: 'java-library'
|
|
|
|
group 'com.reandroid.lib.arsc'
|
|
version '1.0.1'
|
|
|
|
java {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
allprojects {
|
|
tasks.compileJava {
|
|
//options.addStringOption('-Xlint:unchecked', '-quiet')
|
|
}
|
|
}
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('lib.properties') {
|
|
expand('version': version)
|
|
}
|
|
}
|
|
|