| 123456789101112131415161718192021222324252627282930 |
- apply plugin: 'com.android.library'
- android {
- compileSdk 33
- namespace 'com.baidu.aip.asrwakeup3.core'
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 28
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- packagingOptions{
- doNotStrip "*/*/libvad.dnn.so"
- doNotStrip "*/*/libbd_easr_s1_merge_normal_20151216.dat.so"
- }
- }
- dependencies {
- api fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.0.2'
- // implementation files('libs\\com.baidu.tts_2.6.3.c2aaa9f_20220922113422.jar')
- }
|