xref: /aosp_15_r20/external/oboe/tests/UnitTestRunner/app/build.gradle (revision 05767d913155b055644481607e6fa1e35e2fe72c)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 34
5    defaultConfig {
6        applicationId "com.google.oboe.tests.unittestrunner"
7        minSdkVersion 21
8        targetSdkVersion 34
9        versionCode 1
10        versionName "1.0"
11    }
12    buildTypes {
13        release {
14            minifyEnabled false
15            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
16        }
17    }
18    externalNativeBuild {
19        cmake {
20            path file('../../CMakeLists.txt')
21        }
22    }
23}
24
25dependencies {
26    implementation fileTree(dir: 'libs', include: ['*.jar'])
27    implementation 'androidx.appcompat:appcompat:1.1.0'
28    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
29}
30