| 1234567891011121314151617181920212223242526272829303132333435363738 |
- plugins {
- id 'com.android.library'
- }
- android {
- compileSdkVersion 29
- // buildToolsVersion "30.0.2"
- defaultConfig {
- minSdkVersion 22
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- // release {
- // minifyEnabled false
- // proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- // buildConfigField 'boolean', 'USE_AIKL', 'true'
- // }
- // debug {
- // debuggable true
- // jniDebuggable true
- // buildConfigField 'boolean', 'USE_AIKL', 'true'
- // }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- namespace 'com.baidu.idl.main.facesdk.facesdkbrary'
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- api project(path: ':modules:facelibrary')
- }
|