grape

[android][kotlin] viewmodel binding implementation 본문

dev/aos

[android][kotlin] viewmodel binding implementation

grapelab 2023. 12. 8. 16:25

viewmodel binding 할 때 필요한 implementation

implementation 'androidx.activity:activity-ktx:1.2.0'
import androidx.activity.viewModels
private val viewmodel : MainViewModel by viewModels()

 

 

ps activity-ktx 와 의존성이 있는 다른 *-ktx로 대체가 가능하다.

implementation 'androidx.activity:*-ktx:1.2.0'