blob: 2ca189fa65301bbd20f1ec9f8741593e78bb3bb7 [file] [log] [blame]
Phil Burk0433d8f2018-11-21 16:41:25 -08001apply plugin: 'com.android.application'
2
3android {
Phil Burk652d5f62019-07-29 11:27:17 -07004 compileSdkVersion 28
Phil Burk0433d8f2018-11-21 16:41:25 -08005 defaultConfig {
6 applicationId = "com.google.sample.oboe.manualtest"
Phil Burk652d5f62019-07-29 11:27:17 -07007 minSdkVersion 25
8 targetSdkVersion 28
Phil Burk76ef15c2019-09-18 22:34:13 +09009 versionCode 21
10 versionName "1.5.12"
Phil Burk0433d8f2018-11-21 16:41:25 -080011 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12 externalNativeBuild {
13 cmake {
14 cppFlags "-std=c++14"
15 // abiFilters "x86", "armeabi-v7a", "arm64-v8a"
16 // abiFilters "arm64-v8a"
17 }
18 }
19 }
20 buildTypes {
21 release {
22 minifyEnabled false
23 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
24 }
25 debug {
26 jniDebuggable true
27 }
28 }
29 externalNativeBuild {
30 cmake {
31 path "CMakeLists.txt"
32 }
33 }
34}
35
36dependencies {
37 implementation fileTree(include: ['*.jar'], dir: 'libs')
Phil Burk652d5f62019-07-29 11:27:17 -070038 implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta2'
Phil Burk0433d8f2018-11-21 16:41:25 -080039
Phil Burk652d5f62019-07-29 11:27:17 -070040 testImplementation 'junit:junit:4.13-beta-3'
41 implementation 'com.android.support:appcompat-v7:28.0.0'
Phil Burk0433d8f2018-11-21 16:41:25 -080042 androidTestImplementation 'com.android.support.test:runner:1.0.2'
43 androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
44}