| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 26 |
| |
| defaultConfig { |
| applicationId 'com.google.sample.oboe.liveeffect' |
| minSdkVersion 16 |
| targetSdkVersion 26 |
| versionCode 1 |
| versionName '1.0' |
| ndk { |
| abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' |
| } |
| externalNativeBuild { |
| cmake { |
| arguments '-DANDROID_TOOLCHAIN=clang' |
| } |
| } |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| } |
| } |
| externalNativeBuild { |
| cmake { |
| path 'src/main/cpp/CMakeLists.txt' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation 'com.android.support:appcompat-v7:26.1.0' |
| implementation 'com.android.support.constraint:constraint-layout:1.1.0' |
| implementation project(':audio-device') |
| } |