| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| apply plugin: 'kotlin-android-extensions' |
| android { |
| compileSdkVersion 29 |
| buildToolsVersion "29.0.3" |
| |
| defaultConfig { |
| // Usually the applicationId follows the same scheme as the application package name, |
| // however, this sample will be published on the Google Play Store which will not allow an |
| // applicationId starting with "com.google" as this is reserved for official Google |
| // products. The current owner of Oboe sample apps on Google Play is Phil Burk, who |
| // publishes using the application Id prefix of "com.plausiblesoftware". |
| applicationId "com.plausiblesoftware.drumthumper" |
| minSdkVersion 26 |
| targetSdkVersion 29 |
| versionCode 1 |
| versionName "1.0" |
| |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt') |
| } |
| } |
| |
| externalNativeBuild { |
| cmake { |
| path 'src/main/cpp/CMakeLists.txt' |
| } |
| } |
| } |
| |
| dependencies { |
| implementation fileTree(dir: 'libs', include: ['*.jar']) |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" |
| implementation 'androidx.appcompat:appcompat:1.2.0' |
| implementation 'androidx.core:core-ktx:1.3.1' |
| } |