diff options
author | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-06 01:04:55 -0600 |
---|---|---|
committer | Isidro Henoch <imhenoch@protonmail.com> | 2021-12-06 01:04:55 -0600 |
commit | 93c204bcd190b242f1dea49e52f28c795e4d0b92 (patch) | |
tree | 7fc0b2908afa4a63a1f144bc2d2718d91500333d /androidApp/build.gradle.kts | |
parent | e51f039b61b0a653b02f5d4d577bfe8f83286a16 (diff) | |
download | etbsa-trackermap-mobile-93c204bcd190b242f1dea49e52f28c795e4d0b92.tar.gz etbsa-trackermap-mobile-93c204bcd190b242f1dea49e52f28c795e4d0b92.tar.bz2 etbsa-trackermap-mobile-93c204bcd190b242f1dea49e52f28c795e4d0b92.zip |
WIP: Implements the Login functionality
- Adds multiple android dependencies, for DI and some utilities
- Updates colors and styles
- Adds an Application
- Adds the Login Fragment and ViewModel
Diffstat (limited to 'androidApp/build.gradle.kts')
-rw-r--r-- | androidApp/build.gradle.kts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/androidApp/build.gradle.kts b/androidApp/build.gradle.kts index ccbc6c8..669b5cb 100644 --- a/androidApp/build.gradle.kts +++ b/androidApp/build.gradle.kts @@ -17,6 +17,9 @@ android { isMinifyEnabled = false } } + buildFeatures { + viewBinding = true + } } dependencies { @@ -25,5 +28,10 @@ dependencies { implementation("androidx.appcompat:appcompat:1.4.0") implementation("androidx.constraintlayout:constraintlayout:2.1.2") implementation("com.squareup.okhttp3:okhttp:3.14.2") + implementation("com.github.Zhuinden:live-event:1.2.0") + implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0") + implementation("androidx.lifecycle:lifecycle-viewmodel-savedstate:2.4.0") + implementation("io.insert-koin:koin-android:3.1.4") + implementation("androidx.core:core-ktx:1.7.0") implementation(group = "", name = "WhirlyGlobeMaply", ext = "aar") }
\ No newline at end of file |