• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 28
5    defaultConfig {
6        applicationId "com.google.packagesdk"
7        minSdkVersion 15
8        targetSdkVersion 28
9        versionCode 1
10        versionName "1.0"
11        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
12        externalNativeBuild {
13            cmake {
14                cppFlags ""
15            }
16        }
17    }
18    buildTypes {
19        release {
20            minifyEnabled false
21            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
22        }
23    }
24    externalNativeBuild {
25        cmake {
26            path "CMakeLists.txt"
27        }
28    }
29}
30
31dependencies {
32    implementation fileTree(dir: 'libs', include: ['*.jar'])
33    implementation 'com.android.support:appcompat-v7:28.0.0'
34    testImplementation 'junit:junit:4.12'
35    androidTestImplementation 'com.androidx.test:runner:1.1.1'
36    androidTestImplementation 'com.androidx.test.espresso:espresso-core:3.1.1'
37}
38