blob: f6e3fd5a008f727f02a99c9258ad87cf95f74b0a [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 Burk236521e2019-10-15 07:51:07 -07007 minSdkVersion 23
Phil Burk652d5f62019-07-29 11:27:17 -07008 targetSdkVersion 28
Phil Burka183c552020-06-18 12:03:47 -07009 // Also update the versions in the AndroidManifest.xml file.
Haibo Huangc0d5f472021-02-09 16:44:15 -080010 versionCode 44
11 versionName "1.6.2"
Phil Burk0433d8f2018-11-21 16:41:25 -080012 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
13 externalNativeBuild {
14 cmake {
15 cppFlags "-std=c++14"
Emilie Roberts1c043b02020-04-27 13:02:17 +020016 abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
Phil Burk0433d8f2018-11-21 16:41:25 -080017 }
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 Burkf95ea092020-04-07 17:58:50 -070038 implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta4'
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'
Emilie Roberts1c043b02020-04-27 13:02:17 +020044}