12345678910111213141516171819202122232425 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.3"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 29
- versionCode 1
- versionName "1.1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation files('libs/facesdk.jar')
- implementation files('libs/baidu_license.jar')
- api files('libs/ast.jar')
- }
|