Skip to content

Commit

Permalink
Update deps, gradle and target SDK 34 (#1120)
Browse files Browse the repository at this point in the history
* Update deps, gradle and target SDK 34

* Smoll change

* Trigger woodpecker

* Remove change from diff branch
  • Loading branch information
MV-GH authored Aug 2, 2023
1 parent 0511b00 commit 6126429
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
21 changes: 12 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ plugins {
apply(from = "update_instances.gradle.kts")

android {
compileSdk = 33
compileSdk = 34

defaultConfig {
applicationId = "com.jerboa"
namespace = "com.jerboa"
minSdk = 26
targetSdk = 33
targetSdk = 34
versionCode = 41
versionName = "0.0.41"

Expand Down Expand Up @@ -99,8 +99,6 @@ android {
}

dependencies {
val composeVersion = "1.5.0-beta03"

implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.github.alorma:compose-settings-ui-m3:0.27.0")

Expand Down Expand Up @@ -154,29 +152,34 @@ dependencies {
// Unfortunately, ui tooling, and the markdown thing, still brings in the other material2 dependencies
implementation("androidx.compose.material3:material3:1.1.1")
implementation("androidx.compose.material3:material3-window-size-class:1.1.1")
implementation("androidx.compose.material:material-icons-extended:$composeVersion")

implementation("org.ocpsoft.prettytime:prettytime:5.0.6.Final")
implementation("io.coil-kt:coil-compose:2.4.0")
implementation("androidx.navigation:navigation-compose:2.7.0-beta01")
implementation("androidx.navigation:navigation-compose:2.7.0-rc01")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.1")
testImplementation("androidx.arch.core:core-testing:2.2.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")

val composeVersion = "1.5.0-rc01"
implementation("androidx.compose.ui:ui:$composeVersion")
implementation("androidx.compose.ui:ui-tooling-preview:$composeVersion")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$composeVersion")
debugImplementation("androidx.compose.ui:ui-tooling:$composeVersion")
debugImplementation("androidx.compose.ui:ui-test-manifest:$composeVersion")
implementation("androidx.compose.material:material-icons-extended:$composeVersion")

implementation("androidx.activity:activity-compose:1.7.2")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:$composeVersion")
debugImplementation("androidx.compose.ui:ui-tooling:$composeVersion")
debugImplementation("androidx.compose.ui:ui-test-manifest:$composeVersion")

implementation("net.engawapg.lib:zoomable:1.4.3")
implementation("androidx.browser:browser:1.5.0")

implementation("androidx.profileinstaller:profileinstaller:1.3.1")
baselineProfile(project(":benchmarks"))

implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5")

}
2 changes: 1 addition & 1 deletion benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ android {
}

defaultConfig {
testInstrumentationRunnerArguments += mapOf("suppressErrors" to "EMULATOR")
minSdk = 26
targetSdk = 34

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
// Only use the emulator to test benchmarks
testInstrumentationRunnerArguments += mapOf("suppressErrors" to "EMULATOR")
}

targetProjectPath = ":app"
Expand Down

0 comments on commit 6126429

Please sign in to comment.