/* * Copyright (C) 2017 Baidu, Inc. All Rights Reserved. */ apply plugin: 'com.android.library' android { compileSdkVersion 30 buildToolsVersion '28.0.2' defaultConfig { minSdkVersion 16 targetSdkVersion 26 versionCode 1 versionName "1.0" ndk{ abiFilters 'armeabi-v7a' } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } debug { debuggable = true jniDebuggable = true } } // externalNativeBuild { // cmake { // path "CMakeLists.txt" // } // } } dependencies { api fileTree(dir: 'libs', include: ['*.jar']) api files('libs/facesdk.jar') api files('libs/baidu_license.jar') api 'androidx.appcompat:appcompat:1.0.0' }