• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.application'
2apply plugin: 'kotlin-android'
3
4android {
5    compileSdkVersion 35
6    defaultConfig {
7        applicationId 'com.google.oboe.samples.liveeffect'
8        minSdkVersion 21
9        targetSdkVersion 35
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    compileOptions {
28        sourceCompatibility JavaVersion.VERSION_18
29        targetCompatibility JavaVersion.VERSION_18
30    }
31    externalNativeBuild {
32        cmake {
33            path 'src/main/cpp/CMakeLists.txt'
34        }
35    }
36    namespace 'com.google.oboe.samples.liveEffect'
37}
38
39dependencies {
40    implementation 'androidx.appcompat:appcompat:1.7.0'
41    implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
42    implementation project(':audio-device')
43}
44