Changed ViewModelLazy module from extensions to lifecycle
This commit is contained in:
parent
d6373ed69c
commit
24eca02b5d
|
|
@ -10,12 +10,7 @@ android {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':lifecycle')
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
|
||||
implementation "androidx.recyclerview:recyclerview:$versions.androidx"
|
||||
|
||||
implementation "androidx.fragment:fragment:$versions.fragment"
|
||||
implementation "androidx.fragment:fragment-ktx:$versions.fragment"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,5 +23,8 @@ dependencies {
|
|||
|
||||
implementation "androidx.appcompat:appcompat:$versions.appcompat"
|
||||
|
||||
implementation "androidx.fragment:fragment:$versions.fragment"
|
||||
implementation "androidx.fragment:fragment-ktx:$versions.fragment"
|
||||
|
||||
implementation "androidx.lifecycle:lifecycle-extensions:$versions.lifecycle"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
package ru.touchin.extensions
|
||||
package ru.touchin.lifecycle.extensions
|
||||
|
||||
import androidx.activity.ComponentActivity
|
||||
import androidx.activity.viewModels
|
||||
Loading…
Reference in New Issue