• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 83
10        versionName "2.5.12"
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}
34
35dependencies {
36    implementation fileTree(include: ['*.jar'], dir: 'libs')
37    implementation "androidx.core:core-ktx:1.9.0"
38    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
39
40    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
41    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
42}
43