Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ dependencies {

compile project(':autodispose')
compile deps.support.arch.lifecycle.runtime
compile deps.support.arch.lifecycle.common
compile deps.support.arch.lifecycle.extensions

provided deps.misc.errorProneAnnotations
Expand Down
1 change: 0 additions & 1 deletion android/autodispose-android-archcomponents/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ dependencies {
annotationProcessor deps.support.arch.lifecycle.compiler

compile project(':android:autodispose-android')
compile deps.support.arch.lifecycle.common
compile deps.support.arch.lifecycle.runtime

provided deps.misc.errorProneAnnotations
Expand Down
6 changes: 3 additions & 3 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

def versions = [
androidTest: '0.5',
archComponents: '1.0.0-rc1',
archComponents: '1.0.0',
archRuntime: '1.0.3',
dokka: '0.9.15',
errorProne: '2.1.1',
kotlin: '1.1.51',
Expand Down Expand Up @@ -68,10 +69,9 @@ def support = [
annotations: "com.android.support:support-annotations:${versions.support}",
arch: [
lifecycle: [
common: "android.arch.lifecycle:common:1.0.3",
compiler: "android.arch.lifecycle:compiler:${versions.archComponents}",
extensions: "android.arch.lifecycle:extensions:${versions.archComponents}",
runtime: "android.arch.lifecycle:runtime:1.0.0"
runtime: "android.arch.lifecycle:runtime:${versions.archRuntime}"
]
]
]
Expand Down