Skip to content

Develop #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ dependencies {
androidTestImplementation testDependencies.rules
testImplementation testDependencies.mockk
androidTestImplementation testDependencies.espresso
testImplementation 'org.koin:koin-test:2.2.2'
androidTestImplementation testDependencies.testCore
testImplementation 'org.koin:koin-test:2.0.1'
testImplementation 'org.powermock:powermock-core:1.7.4'
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@

buildscript {
apply from: 'dependencies.gradle'

ext.kotlin_version = '1.5.31'
ext.jacoco_version = '0.8.2'
ext.ktlintPluginVersion = "10.2.0"
Expand Down
10 changes: 5 additions & 5 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ ext {
targetSDK = 30
compileSDK = 30

kotlin_version = "1.3.50"
kotlin_version = "1.6.0"
androidx_compat_version = "1.4.0"
androidx_core_version = "1.1.0"
androidx_constraintlayout_version = "1.1.3"
androidx_material_version = "1.1.0-beta01"
androidx_core_version = "1.7.0"
androidx_constraintlayout_version = "2.1.2"
androidx_material_version = "1.5.0-beta01"
junit_version = "4.12"
koin = "2.0.1"
androidx_junit_version = "1.1.1"
androidx_espresso_core_version = "3.2.0"
androidx_runner_test_version = "1.2.0"
androidx_rules_version = "1.2.0"
androidx_orchestrator_version = "1.2.0"
mockk = "1.9.1"
mockk = "1.12.1"
mockitokotlin = "2.2.0"
test_core = "1.2.0"
kotlin_reflect = "1.1.0"
Expand Down