1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 28 5 6 defaultConfig { 7 applicationId 'com.google.oboe.samples.liveeffect' 8 minSdkVersion 16 9 targetSdkVersion 28 10 versionCode 1 11 versionName '1.0' 12 ndk { 13 abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' 14 } 15 externalNativeBuild { 16 cmake { 17 arguments '-DANDROID_TOOLCHAIN=clang' 18 abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' 19 } 20 } 21 } 22 buildTypes { 23 release { 24 minifyEnabled false 25 } 26 } 27 externalNativeBuild { 28 cmake { 29 path 'src/main/cpp/CMakeLists.txt' 30 } 31 } 32} 33 34dependencies { 35 implementation 'androidx.appcompat:appcompat:1.0.0-rc02' 36 implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 37 implementation project(':audio-device') 38} 39