1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 34 5 defaultConfig { 6 applicationId = "com.mobileer.oboetester" 7 minSdkVersion 23 8 targetSdkVersion 34 9 versionCode 94 10 versionName "2.7.5" 11 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 12 externalNativeBuild { 13 cmake { 14 cppFlags "-std=c++17" 15 abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a" 16 } 17 } 18 } 19 buildTypes { 20 release { 21 minifyEnabled false 22 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 23 } 24 debug { 25 jniDebuggable true 26 } 27 } 28 externalNativeBuild { 29 cmake { 30 path "CMakeLists.txt" 31 } 32 } 33 namespace 'com.mobileer.oboetester' 34} 35 36dependencies { 37 implementation fileTree(include: ['*.jar'], dir: 'libs') 38 implementation "androidx.core:core-ktx:1.9.0" 39 implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 40 implementation 'androidx.appcompat:appcompat:1.6.1' 41 42 androidTestImplementation 'androidx.test.ext:junit:1.1.5' 43 androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' 44} 45