xref: /aosp_15_r20/external/oboe/samples/audio-device/build.gradle (revision 05767d913155b055644481607e6fa1e35e2fe72c)
1apply plugin: 'com.android.library'
2
3android {
4    compileSdkVersion 34
5    defaultConfig {
6        minSdkVersion 21
7        targetSdkVersion 34
8    }
9    buildTypes {
10        release {
11            minifyEnabled false
12            proguardFiles getDefaultProguardFile('proguard-android.txt')
13        }
14    }
15}
16
17dependencies {
18    implementation 'androidx.appcompat:appcompat:1.0.0-rc02'
19}
20