39 lines
1.0 KiB
Groovy
39 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.android.snippets"
|
|
minSdkVersion 19
|
|
targetSdkVersion 31
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'GoogleAppIndexingWarning'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':shared')
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "androidx.slice:slice-builders-ktx:1.0.0-alpha4"
|
|
implementation "androidx.appcompat:appcompat:1.0.0-beta01"
|
|
implementation "androidx.cardview:cardview:1.0.0-beta01"
|
|
testImplementation 'junit:junit:4.12'
|
|
}
|