xref: /aosp_15_r20/external/oboe/samples/LiveEffect/build.gradle (revision 05767d913155b055644481607e6fa1e35e2fe72c)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 34
5
6    defaultConfig {
7        applicationId 'com.google.oboe.samples.liveeffect'
8        minSdkVersion 21
9        targetSdkVersion 34
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.6.0-rc01'
36    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
37    implementation project(':audio-device')
38}
39