35 lines
881 B
Groovy
35 lines
881 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
buildToolsVersion "29.0.3"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "org.bandie.yipanic"
|
||
|
minSdkVersion 23
|
||
|
targetSdkVersion 29
|
||
|
versionCode 1
|
||
|
versionName "1.1"
|
||
|
testFunctionalTest = false
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
|
||
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||
|
implementation 'com.android.volley:volley:1.1.1'
|
||
|
implementation 'androidx.preference:preference:1.1.1'
|
||
|
implementation 'androidx.security:security-crypto:1.0.0-rc02'
|
||
|
implementation 'com.google.android.material:material:1.1.0'
|
||
|
}
|