You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
4 years ago
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
android {
|
||
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
||
|
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion rootProject.ext.minSdkVersion
|
||
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||
|
versionCode rootProject.ext.versionCode
|
||
|
versionName rootProject.ext.versionName
|
||
|
|
||
|
externalNativeBuild {
|
||
|
cmake {
|
||
|
cppFlags ""
|
||
|
}
|
||
|
}
|
||
|
ndk {
|
||
|
abiFilters "armeabi-v7a", "arm64-v8a"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
externalNativeBuild {
|
||
|
cmake {
|
||
|
path "CMakeLists.txt"
|
||
|
}
|
||
|
}
|
||
|
sourceSets {
|
||
|
main {
|
||
|
jniLibs.srcDirs = ['libs']
|
||
|
jni.srcDirs = []
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||
|
implementation "androidx.appcompat:appcompat:$rootProject.appcompatVersion"
|
||
|
implementation "androidx.core:core-ktx:$rootProject.core_ktx"
|
||
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$rootProject.lifecycle_ktx"
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||
|
}
|