123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- plugins {
- id 'com.android.library'
- id 'kotlin-android'
- }
- android {
- compileSdkVersion COMPILE_SDK_VERSION
- buildToolsVersion BUILD_TOOLS_VERSION
- defaultConfig {
- minSdkVersion MIN_SDK_VERSION
- targetSdkVersion TARGET_SDK_VERSION
- ndkVersion NDK_VERSION
- externalNativeBuild {
- cmake {
- cppFlags '-std=c++11 -frtti -fexceptions -lz'
- abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
- }
- }
- }
- buildTypes {
- release {
- minifyEnabled true
- proguardFiles 'proguard-rules.pro'
- }
- }
- buildFeatures {
- buildConfig = false
- }
- lintOptions {
- abortOnError false
- }
- repositories {
- flatDir {
- dirs 'libs'
- }
- }
- dexOptions {
- preDexLibraries = false
- }
- externalNativeBuild {
- cmake {
- path "CMakeLists.txt"
- }
- }
- }
- dependencies {
- implementation "org.jetbrains.kotlin:kotlin-stdlib:$KOTLIN_VERSION"
- implementation 'androidx.core:core-ktx:1.3.2'
- // implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.3.1"
- // implementation "androidx.lifecycle:lifecycle-extensions-ktx:1.0.1"
- implementation 'androidx.fragment:fragment-ktx:1.3.2'
- implementation 'androidx.lifecycle:lifecycle-process:2.3.1'
- }
|