xref: /aosp_15_r20/external/clpeak/android/app/build.gradle (revision 1cd03ba3888297bc945f2c84574e105e3ced3e34)
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 29
5    defaultConfig {
6        applicationId "kr.clpeak"
7        minSdkVersion 26
8        targetSdkVersion 29
9        versionCode 6
10        versionName "1.1.0"
11        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12        externalNativeBuild {
13            cmake {
14                cppFlags "-std=c++11"
15            }
16        }
17    }
18    buildTypes {
19        release {
20            minifyEnabled false
21            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
22        }
23    }
24    externalNativeBuild {
25        cmake {
26            path "src/main/cpp/CMakeLists.txt"
27        }
28    }
29}
30
31dependencies {
32    implementation fileTree(dir: 'libs', include: ['*.jar'])
33    implementation 'com.android.support:appcompat-v7:28.0.0'
34    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
35    testImplementation 'junit:junit:4.12'
36    androidTestImplementation 'com.android.support.test:runner:1.0.2'
37    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
38}
39