Last active
November 6, 2022 15:23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
// ... | |
buildFeatures { | |
viewBinding true | |
} | |
} | |
dependencies { | |
// Use latest version of all dependencies | |
implementation 'androidx.core:core-ktx:1.9.0' | |
implementation 'androidx.appcompat:appcompat:1.5.1' | |
implementation 'com.google.android.material:material:1.7.0' | |
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | |
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1' | |
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' | |
implementation 'io.github.reactivecircus.flowbinding:flowbinding-android:1.2.0' | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment