Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Bump dependencies and app version, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneTheDev committed May 30, 2022
1 parent 1a86267 commit 9426de9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ This is the **unofficial** android app for the agile project management system [
* Issues
* Sprints
* Profiles
* Wiki
* Working on / Watching (aka Dashboard)
* Create, edit and delete:
* Epics
* User stories
* Tasks
* Issues
* Sprints
* Wiki pages
* Leave and delete comments
* Kanban (for sprint and for user stories)
* Filters for user stories, epics, issues
Expand Down
18 changes: 9 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId = namespace!!
minSdk = 21
targetSdk = 31
versionCode = 28
versionName = "1.8.5"
versionCode = 29
versionName = "1.9"
project.base.archivesName.set("TaigaMobile-$versionName")

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -106,7 +106,7 @@ dependencies {

implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.appcompat:appcompat:1.4.1")
implementation("com.google.android.material:material:1.5.0")
implementation("com.google.android.material:material:1.6.0")

// ============================================================================================
// CAREFUL WHEN UPDATING COMPOSE RELATED DEPENDENCIES - THEY CAN USE DIFFERENT COMPOSE VERSION!
Expand All @@ -124,7 +124,7 @@ dependencies {
// view model support
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.4.1")
// compose constraint layout
implementation("androidx.constraintlayout:constraintlayout-compose:1.0.0")
implementation("androidx.constraintlayout:constraintlayout-compose:1.0.1")

// Accompanist
val accompanistVersion = "0.23.1"
Expand All @@ -138,13 +138,13 @@ dependencies {
implementation("io.coil-kt:coil-compose:1.3.2")

// Navigation Component (with Compose)
implementation("androidx.navigation:navigation-compose:2.5.0-beta01")
implementation("androidx.navigation:navigation-compose:2.5.0-rc01")

// Paging (with Compose)
implementation("androidx.paging:paging-compose:1.0.0-alpha14")

// Coroutines
val coroutinesVersion = "1.6.1"
val coroutinesVersion = "1.6.2"
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")
Expand All @@ -165,7 +165,7 @@ dependencies {
implementation("com.squareup.okhttp3:logging-interceptor:$okHttpVersion")

// Dagger 2
val daggerVersion = "2.41"
val daggerVersion = "2.42"
implementation("com.google.dagger:dagger-android:$daggerVersion")
kapt("com.google.dagger:dagger-android-processor:$daggerVersion")
kapt("com.google.dagger:dagger-compiler:$daggerVersion")
Expand Down Expand Up @@ -194,15 +194,15 @@ dependencies {
allTestsImplementation("androidx.test.ext:junit-ktx:1.1.3")

// since we need to connect to test db instance
val postgresDriverVersion = "42.3.4"
val postgresDriverVersion = "42.3.6"
testRuntimeOnly("org.postgresql:postgresql:$postgresDriverVersion")
androidTestRuntimeOnly("org.postgresql:postgresql:$postgresDriverVersion")

// manual json parsing when filling test instance
implementation("com.google.code.gson:gson:2.9.0")

// MockK
testImplementation("io.mockk:mockk:1.12.3")
testImplementation("io.mockk:mockk:1.12.4")
}

fun DependencyHandler.allTestsImplementation(dependencyNotation: Any) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.0")
classpath("com.android.tools.build:gradle:7.2.1")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")

// NOTE: Do not place your application dependencies here; they belong
Expand Down

0 comments on commit 9426de9

Please sign in to comment.