62 lines
2.5 KiB
Groovy
62 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
testOptions {
|
|
unitTests.returnDefaultValues = true
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
compileSdkVersion 29
|
|
buildToolsVersion "29.0.2"
|
|
defaultConfig {
|
|
applicationId "com.bernd32.weatherdemo"
|
|
minSdkVersion 24
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
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 'androidx.preference:preference:1.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.2.0-alpha03'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.7.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.7.0'
|
|
implementation "com.squareup.retrofit2:adapter-rxjava2:2.4.0"
|
|
implementation "io.reactivex.rxjava2:rxandroid:2.1.0"
|
|
implementation "androidx.room:room-rxjava2:2.2.3"
|
|
// GSON body parser
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
|
|
// RecyclerView
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
// Glide
|
|
implementation 'com.github.bumptech.glide:glide:4.10.0'
|
|
annotationProcessor 'com.github.bumptech.glide:glide:4.10.0'
|
|
implementation 'com.google.android.gms:play-services-location:17.0.0'
|
|
implementation 'com.facebook.stetho:stetho:1.5.1'
|
|
// Room components
|
|
implementation "androidx.room:room-runtime:$rootProject.roomVersion"
|
|
annotationProcessor "androidx.room:room-compiler:$rootProject.roomVersion"
|
|
androidTestImplementation "androidx.room:room-testing:$rootProject.roomVersion"
|
|
// debugImplementation because LeakCanary should only run in debug builds.
|
|
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.1'
|
|
}
|