Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 1 | apply plugin: 'com.android.application' |
| 2 | |
| 3 | android { |
Phil Burk | 652d5f6 | 2019-07-29 11:27:17 -0700 | [diff] [blame] | 4 | compileSdkVersion 28 |
Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 5 | defaultConfig { |
| 6 | applicationId = "com.google.sample.oboe.manualtest" |
Phil Burk | 236521e | 2019-10-15 07:51:07 -0700 | [diff] [blame] | 7 | minSdkVersion 23 |
Phil Burk | 652d5f6 | 2019-07-29 11:27:17 -0700 | [diff] [blame] | 8 | targetSdkVersion 28 |
Phil Burk | a183c55 | 2020-06-18 12:03:47 -0700 | [diff] [blame] | 9 | // Also update the versions in the AndroidManifest.xml file. |
Haibo Huang | c0d5f47 | 2021-02-09 16:44:15 -0800 | [diff] [blame] | 10 | versionCode 44 |
| 11 | versionName "1.6.2" |
Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" |
| 13 | externalNativeBuild { |
| 14 | cmake { |
| 15 | cppFlags "-std=c++14" |
Emilie Roberts | 1c043b0 | 2020-04-27 13:02:17 +0200 | [diff] [blame] | 16 | abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a" |
Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 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 | |
| 36 | dependencies { |
| 37 | implementation fileTree(include: ['*.jar'], dir: 'libs') |
Phil Burk | f95ea09 | 2020-04-07 17:58:50 -0700 | [diff] [blame] | 38 | implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta4' |
Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 39 | |
Phil Burk | 652d5f6 | 2019-07-29 11:27:17 -0700 | [diff] [blame] | 40 | testImplementation 'junit:junit:4.13-beta-3' |
| 41 | implementation 'com.android.support:appcompat-v7:28.0.0' |
Phil Burk | 0433d8f | 2018-11-21 16:41:25 -0800 | [diff] [blame] | 42 | androidTestImplementation 'com.android.support.test:runner:1.0.2' |
| 43 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' |
Emilie Roberts | 1c043b0 | 2020-04-27 13:02:17 +0200 | [diff] [blame] | 44 | } |