-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use build src to externalize dependencies
- Loading branch information
Souleymane Sidibe
committed
Aug 20, 2021
1 parent
e254f47
commit 97dbc90
Showing
11 changed files
with
140 additions
and
94 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
plugins { | ||
kotlin("jvm") version "1.5.0" | ||
} | ||
|
||
repositories { | ||
google() | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
pluginManagement { | ||
repositories { | ||
google() | ||
gradlePluginPortal() | ||
mavenCentral() | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
object Deps { | ||
const val kotlin = "org.jetbrains.kotlin:kotlin-stdlib:${Versions.kotlin}" | ||
const val coroutines_android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1" | ||
const val koin_core = "io.insert-koin:koin-core:${Versions.koin}" | ||
const val koin_android = "io.insert-koin:koin-android:${Versions.koin}" | ||
const val material = "com.google.android.material:material:1.4.0" | ||
const val accompanist_system_ui_controller = | ||
"com.google.accompanist:accompanist-systemuicontroller:0.16.1" | ||
|
||
const val androidx_core_ktx = "androidx.core:core-ktx:1.6.0" | ||
const val androidx_app_compat = "androidx.appcompat:appcompat:1.3.1" | ||
const val androidx_room_runtime = "androidx.room:room-runtime:${Versions.room}" | ||
const val androidx_room_ktx = "androidx.room:room-ktx:${Versions.room}" | ||
const val androidx_room_compiler = "androidx.room:room-compiler:${Versions.room}" | ||
const val androidx_lifecycle_runtime = "androidx.lifecycle:lifecycle-runtime-ktx:2.4.0-alpha03" | ||
|
||
const val androidx_compose_constraint_layout = | ||
"androidx.constraintlayout:constraintlayout-compose:1.0.0-beta02" | ||
const val androidx_compose_navigation = "androidx.navigation:navigation-compose:2.4.0-alpha06" | ||
const val androidx_compose_material = "androidx.compose.material:material:${Versions.compose}" | ||
const val androidx_compose_ui = "androidx.compose.ui:ui:${Versions.compose}" | ||
const val androidx_compose_tooling = "androidx.compose.ui:ui-tooling:${Versions.compose}" | ||
const val androidx_compose_compiler = "androidx.compose.compiler:compiler:${Versions.compose}" | ||
const val androidx_compose_material_icons_core = | ||
"androidx.compose.material:material-icons-core:${Versions.compose}" | ||
const val androidx_compose_material_icons_extended = | ||
"androidx.compose.material:material-icons-extended:${Versions.compose}" | ||
const val androidx_compose_activity = "androidx.activity:activity-compose:1.3.1" | ||
|
||
const val junit = "junit:junit:4.13.2" | ||
const val androidx__compose_junit = "androidx.compose.ui:ui-test-junit4:${Versions.compose}" | ||
const val androidx_junit = "androidx.test.ext:junit:1.1.3" | ||
const val androidx_espresso = "androidx.test.espresso:espresso-core:3.4.0" | ||
const val coroutines_test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.1" | ||
const val hamcrest = "org.hamcrest:hamcrest-all:1.3" | ||
const val mockito = "org.mockito:mockito-core:3.9.0" | ||
const val mockk = "io.mockk:mockk:1.12.0" | ||
const val koin_test = "io.insert-koin:koin-test:${Versions.koin}" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
object Versions { | ||
const val minSdk = 21 | ||
const val compileSdk = 30 | ||
const val compose = "1.0.0" | ||
const val room = "2.3.0" | ||
const val koin = "3.1.2" | ||
const val kotlin = "1.5.10" | ||
} |
This file contains 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
This file contains 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
This file contains 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