You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
598 B
Groovy
24 lines
598 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
}
|
|
}
|
|
|
|
def unityLib = project(':unityLibrary').extensions.getByName('android')
|
|
|
|
defaultConfig {
|
|
consumerProguardFiles "consumer-proguard.pro"
|
|
minSdkVersion unityLib.defaultConfig.minSdkVersion.mApiLevel
|
|
targetSdkVersion unityLib.defaultConfig.targetSdkVersion.mApiLevel
|
|
}
|
|
|
|
compileSdkVersion unityLib.compileSdkVersion
|
|
buildToolsVersion unityLib.buildToolsVersion
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
} |