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 namespace 'com.google.oboe.tests.unittestrunner' 24} 25 26dependencies { 27 implementation fileTree(dir: 'libs', include: ['*.jar']) 28 implementation 'androidx.appcompat:appcompat:1.1.0' 29 implementation 'androidx.constraintlayout:constraintlayout:1.1.3' 30} 31