mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-26 11:21:34 +01:00
Versions bumped & minApi put to 21
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.3.40'
|
ext.kotlin_version = '1.3.40'
|
||||||
ext.nav_version = '2.1.0-alpha05'
|
ext.nav_version = '2.1.0-alpha06'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ dependencies {
|
|||||||
implementation libraries.fragment
|
implementation libraries.fragment
|
||||||
implementation libraries.paging
|
implementation libraries.paging
|
||||||
implementation libraries.lifecycle
|
implementation libraries.lifecycle
|
||||||
|
implementation libraries.liveDataKTX
|
||||||
implementation libraries.navigation
|
implementation libraries.navigation
|
||||||
implementation libraries.picasso
|
implementation libraries.picasso
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ dependencies {
|
|||||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
|
|
||||||
implementation libraries.coroutines
|
implementation libraries.coroutines
|
||||||
|
implementation libraries.liveDataKTX
|
||||||
implementation libraries.retrofit
|
implementation libraries.retrofit
|
||||||
implementation libraries.room
|
implementation libraries.room
|
||||||
implementation libraries.moshiKotlin
|
implementation libraries.moshiKotlin
|
||||||
|
|||||||
@@ -1,14 +1,13 @@
|
|||||||
ext {
|
ext {
|
||||||
|
|
||||||
versions = [
|
versions = [
|
||||||
minSdkVersion : 16,
|
minSdkVersion : 21,
|
||||||
minSdkVersionDev : 21,
|
|
||||||
compileSdkVersion : 28,
|
compileSdkVersion : 28,
|
||||||
targetSdkVersion : 28,
|
targetSdkVersion : 28,
|
||||||
buildToolsVersion : "28.0.3",
|
buildToolsVersion : "28.0.3",
|
||||||
supportLibraryVersion : "28.0.0",
|
supportLibraryVersion : "28.0.0",
|
||||||
appCompatVersion : "1.1.0-alpha04",
|
appCompatVersion : "1.1.0-alpha04",
|
||||||
lifecycleVersion : "2.2.0-alpha01",
|
lifecycleVersion : "2.2.0-alpha02",
|
||||||
fragmentVersion : "1.1.0-beta01",
|
fragmentVersion : "1.1.0-beta01",
|
||||||
workManagerVersion : "2.1.0-alpha03",
|
workManagerVersion : "2.1.0-alpha03",
|
||||||
constraintLayoutVesion: "2.0.0-beta1",
|
constraintLayoutVesion: "2.0.0-beta1",
|
||||||
@@ -19,14 +18,14 @@ ext {
|
|||||||
collectionVersion : "1.1.0",
|
collectionVersion : "1.1.0",
|
||||||
roomVersion : "2.1.0",
|
roomVersion : "2.1.0",
|
||||||
daggerVersion : "2.22.1",
|
daggerVersion : "2.22.1",
|
||||||
okHttpVersion : "3.12.0",
|
okHttpVersion : "4.0.0",
|
||||||
retrofitVersion : "2.6.0",
|
retrofitVersion : "2.6.0",
|
||||||
picassoVersion : "2.71828",
|
picassoVersion : "2.71828",
|
||||||
moshiVersion : "1.8.0",
|
moshiVersion : "1.8.0",
|
||||||
coroutinesVersion : "1.3.0-M1",
|
coroutinesVersion : "1.3.0-M1",
|
||||||
leakCanaryVersion : "2.0-alpha-2",
|
leakCanaryVersion : "2.0-alpha-2",
|
||||||
timberVersion : "4.7.1",
|
timberVersion : "4.7.1",
|
||||||
jUnitVersion : "5.4.2",
|
jUnitVersion : "5.5.0",
|
||||||
espressoVersion : "3.2.0",
|
espressoVersion : "3.2.0",
|
||||||
mockkVersion : "1.9.3",
|
mockkVersion : "1.9.3",
|
||||||
kluentVersion : "1.49",
|
kluentVersion : "1.49",
|
||||||
@@ -57,7 +56,7 @@ ext {
|
|||||||
],
|
],
|
||||||
|
|
||||||
lifecycle : "androidx.lifecycle:lifecycle-extensions:${versions.lifecycleVersion}",
|
lifecycle : "androidx.lifecycle:lifecycle-extensions:${versions.lifecycleVersion}",
|
||||||
liveData : "androidx.lifecycle:lifecycle-livedata-ktx:${versions.lifecycleVersion}",
|
liveDataKTX : "androidx.lifecycle:lifecycle-livedata-ktx:${versions.lifecycleVersion}",
|
||||||
workManager : "androidx.work:work-runtime-ktx:${versions.workManagerVersion}",
|
workManager : "androidx.work:work-runtime-ktx:${versions.workManagerVersion}",
|
||||||
paging : "androidx.paging:paging-runtime-ktx:${versions.pagingVersion}",
|
paging : "androidx.paging:paging-runtime-ktx:${versions.pagingVersion}",
|
||||||
viewPager : "androidx.viewpager2:viewpager2:${versions.viewPagerVersion}",
|
viewPager : "androidx.viewpager2:viewpager2:${versions.viewPagerVersion}",
|
||||||
|
|||||||
Reference in New Issue
Block a user