mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-27 11:51:33 +01:00
Version updates
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.71'
|
ext.kotlin_version = '1.3.72'
|
||||||
ext.nav_version = '2.3.0-alpha04'
|
ext.nav_version = '2.3.0'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
@@ -10,7 +10,7 @@ buildscript {
|
|||||||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:4.1.0-alpha04'
|
classpath 'com.android.tools.build:gradle:4.2.0-alpha03'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.6.0.1-SNAPSHOT"
|
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.6.0.1-SNAPSHOT"
|
||||||
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
||||||
@@ -20,7 +20,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'io.gitlab.arturbosch.detekt' version '1.7.2'
|
id 'io.gitlab.arturbosch.detekt' version '1.10.0'
|
||||||
id 'org.jetbrains.dokka' version '0.10.1'
|
id 'org.jetbrains.dokka' version '0.10.1'
|
||||||
id 'jacoco'
|
id 'jacoco'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,14 +17,16 @@ class DetailViewModel @Inject constructor(
|
|||||||
|
|
||||||
//region Properties
|
//region Properties
|
||||||
|
|
||||||
val rocketName = map(successData) {
|
val rocketName by lazy {
|
||||||
it.rocketName
|
val nameData = map(successData) {
|
||||||
}
|
it.rocketName
|
||||||
get() {
|
|
||||||
loadData()
|
|
||||||
return field
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
loadData()
|
||||||
|
|
||||||
|
nameData
|
||||||
|
}
|
||||||
|
|
||||||
val description = map(successData) {
|
val description = map(successData) {
|
||||||
it.missionDescription
|
it.missionDescription
|
||||||
}
|
}
|
||||||
|
|||||||
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
#Tue Mar 31 10:39:09 CEST 2020
|
#Mon Jul 06 12:03:00 CEST 2020
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-rc-1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-rc-1-all.zip
|
||||||
|
|||||||
@@ -7,28 +7,28 @@ ext {
|
|||||||
buildToolsVersion : "29.0.3",
|
buildToolsVersion : "29.0.3",
|
||||||
appCompatVersion : "1.1.0",
|
appCompatVersion : "1.1.0",
|
||||||
lifecycleVersion : "2.2.0",
|
lifecycleVersion : "2.2.0",
|
||||||
fragmentVersion : "1.3.0-alpha02",
|
fragmentVersion : "1.3.0-alpha06",
|
||||||
workManagerVersion : "2.4.0-alpha01",
|
workManagerVersion : "2.4.0-alpha01",
|
||||||
constraintLayoutVesion : "2.0.0-beta4",
|
constraintLayoutVesion : "2.0.0-beta7",
|
||||||
cardViewVersion : "1.0.0",
|
cardViewVersion : "1.0.0",
|
||||||
recyclerViewVersion : "1.2.0-alpha01",
|
recyclerViewVersion : "1.2.0-alpha01",
|
||||||
pagingVersion : "2.1.0",
|
pagingVersion : "2.1.2",
|
||||||
viewPagerVersion : "1.0.0",
|
viewPagerVersion : "1.0.0",
|
||||||
materialVersion : "1.2.0-alpha05",
|
materialVersion : "1.3.0-alpha01",
|
||||||
swipeRefreshLayoutVersion: "1.1.0-beta01",
|
swipeRefreshLayoutVersion: "1.1.0",
|
||||||
collectionVersion : "1.1.0",
|
collectionVersion : "1.1.0",
|
||||||
roomVersion : "2.2.5",
|
roomVersion : "2.2.5",
|
||||||
daggerVersion : "2.27",
|
daggerVersion : "2.27",
|
||||||
okHttpVersion : "4.4.0",
|
okHttpVersion : "4.7.2",
|
||||||
retrofitVersion : "2.8.1",
|
retrofitVersion : "2.9.0",
|
||||||
picassoVersion : "2.71828",
|
picassoVersion : "2.71828",
|
||||||
moshiVersion : "1.9.2",
|
moshiVersion : "1.9.3",
|
||||||
coroutinesVersion : "1.3.5",
|
coroutinesVersion : "1.3.5",
|
||||||
leakCanaryVersion : "2.2",
|
leakCanaryVersion : "2.2",
|
||||||
timberVersion : "4.7.1",
|
timberVersion : "4.7.1",
|
||||||
jUnitVersion : "5.6.0",
|
jUnitVersion : "5.6.2",
|
||||||
espressoVersion : "3.2.0",
|
espressoVersion : "3.2.0",
|
||||||
mockkVersion : "1.9.3",
|
mockkVersion : "1.10.0",
|
||||||
kluentVersion : "1.60",
|
kluentVersion : "1.60",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user