Skip to content

Commit

Permalink
updated: code cleanup and updated dependencies.gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
nisrulz committed Jun 28, 2018
1 parent bea4637 commit 1abd285
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
4 changes: 2 additions & 2 deletions LifeCycleCompForLib/awesomelib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ dependencies {
androidTestImplementation "com.android.support.test:runner:$androidTestRunnerVer"
androidTestImplementation "com.android.support.test.espresso:espresso-core:$espressoCoreVer"

implementation "android.arch.lifecycle:runtime:1.0.0"
annotationProcessor "android.arch.lifecycle:common-java8:$archComponentVer"
implementation "android.arch.lifecycle:runtime:$lifecycleVer"
annotationProcessor "android.arch.lifecycle:compiler:$lifecycleVer"
}
6 changes: 3 additions & 3 deletions UsingAndroidArchComponents/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVer"

// Arch Components
implementation "android.arch.lifecycle:runtime:$archComponentVer"
implementation "android.arch.lifecycle:extensions:$archComponentVer"
annotationProcessor "android.arch.lifecycle:compiler:$archComponentVer"
implementation "android.arch.lifecycle:runtime:$lifecycleVer"
implementation "android.arch.lifecycle:extensions:$lifecycleVer"
annotationProcessor "android.arch.lifecycle:compiler:$lifecycleVer"
}
4 changes: 2 additions & 2 deletions UsingRoomORM/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ dependencies {
implementation "com.android.support:appcompat-v7:$supportLibVer"
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVer"

implementation "android.arch.persistence.room:runtime:$archComponentVer"
annotationProcessor "android.arch.persistence.room:compiler:$archComponentVer"
implementation "android.arch.persistence.room:runtime:$roomVer"
annotationProcessor "android.arch.persistence.room:compiler:$roomVer"
}
15 changes: 6 additions & 9 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ ext {
targetSdkVer = 28

supportLibVer = "27.1.1"
googlePlayServicesVer = "15.0.0"
googlePlayServicesVer = "15.0.1"

junitVer = "4.12"
espressoCoreVer = "3.0.1"
androidTestRunnerVer = "1.0.1"
espressoCoreVer = "3.0.2"
androidTestRunnerVer = "1.0.2"

stethoVer = "1.7.0"
picassoVer = "2.5.2"
Expand All @@ -32,7 +32,7 @@ ext {
mpAndroidChartVer = "v3.0.2"
easygcmVer = "1.6.2@aar"
altbeaconAndroidLibVer = "2+"
timberVer = "4.7.0"
timberVer = "4.7.1"
sugarOrmVer = "1.5"
constraintLayoutVer = "1.1.2"
firebaseJobdispatcherVer="0.8.5"
Expand All @@ -47,10 +47,7 @@ ext {

lithoVer = "0.7.1"

archComponentVer = "1.0.0"
lifecycleVer = "1.1.1"
roomVer = "1.0.0"
lifecycleVer = "1.1.0"
roomVer = "1.1.1"
pagingVer = "1.0.0"
viewModelVer = "1.0.0"
liveDataVer = "1.0.0"
}

0 comments on commit 1abd285

Please sign in to comment.