mirror of
https://github.com/blanking003/cx-cocos.git
synced 2024-12-26 11:49:01 +00:00
34 lines
816 B
Groovy
34 lines
816 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion PROP_MIN_SDK_VERSION
|
||
|
targetSdkVersion PROP_TARGET_SDK_VERSION
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
}
|
||
|
|
||
|
sourceSets.main {
|
||
|
aidl.srcDir "../java/src"
|
||
|
java.srcDir "../java/src"
|
||
|
manifest.srcFile "AndroidManifest.xml"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(include: ['*.jar'], dir: '../java/libs')
|
||
|
}
|