You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
6 years ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
defaultConfig {
|
||
|
vectorDrawables.useSupportLibrary = true
|
||
|
applicationId "gr.auth.databases.flavours"
|
||
|
minSdkVersion 19
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "0.1"
|
||
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
||
|
implementation 'androidx.preference:preference:1.1.0-alpha02'
|
||
|
implementation 'androidx.legacy:legacy-preference-v14:1.0.0'
|
||
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
||
|
implementation 'androidx.cardview:cardview:1.0.0'
|
||
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
||
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||
|
implementation 'com.google.android.material:material:1.0.0'
|
||
|
implementation 'com.google.android.gms:play-services-maps:16.0.0'
|
||
|
}
|
||
|
|
||
|
configurations.all {
|
||
|
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
|
||
|
def requested = details.requested
|
||
|
if (requested.group == 'com.android.support') {
|
||
|
if (!requested.name.startsWith("multidex")) {
|
||
|
details.useVersion '25.3.0'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|