Skip to content

Commit

Permalink
Upgrde sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSchubert committed Apr 9, 2023
1 parent 31f49c5 commit addb6f6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId = "com.splintergod.app"
minSdk = 24
targetSdk = 33
versionCode = 12
versionName = "0.0.12"
versionCode = 13
versionName = "0.0.13"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down Expand Up @@ -52,21 +52,21 @@ dependencies {
implementation("com.google.code.gson:gson:2.10.1")


implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.core:core-ktx:1.10.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.8.0")
implementation("androidx.navigation:navigation-fragment-ktx:2.5.3")
implementation("androidx.navigation:navigation-ui-ktx:2.5.3")
implementation("androidx.activity:activity-compose:1.7.0")
implementation("androidx.compose.material:material:1.4.0")
implementation("androidx.compose.animation:animation:1.4.0")
implementation("androidx.compose.ui:ui-tooling:1.4.0")
implementation("androidx.compose.material:material:1.4.1")
implementation("androidx.compose.animation:animation:1.4.1")
implementation("androidx.compose.ui:ui-tooling:1.4.1")
implementation("androidx.navigation:navigation-compose:2.5.3")

implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1")
implementation("io.coil-kt:coil:2.2.2")
implementation("io.coil-kt:coil-compose:2.2.2")
implementation("io.coil-kt:coil-gif:2.2.2")
implementation("io.coil-kt:coil:2.3.0")
implementation("io.coil-kt:coil-compose:2.3.0")
implementation("io.coil-kt:coil-gif:2.3.0")


implementation("io.insert-koin:koin-core:3.4.0")
Expand All @@ -76,8 +76,8 @@ dependencies {

testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.4.0")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.4.1")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.4.0")
debugImplementation("androidx.compose.ui:ui-tooling:1.4.0")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.4.1")
debugImplementation("androidx.compose.ui:ui-tooling:1.4.1")
}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.4.0-beta02")
classpath("com.android.tools.build:gradle:7.4.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10")
classpath( "com.squareup.sqldelight:gradle-plugin:1.5.5")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed May 11 13:51:55 CEST 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
2 changes: 1 addition & 1 deletion pull_screenshots.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
adb root
adb pull /data/data/com.splintergod.app/files/ .
echo "Resize image"
for file in files/*.png; do convert $file -resize 240 $file; done
for file in files/*.png; do convert "$file" -resize 240 "$file"; done
echo "Move files from device to project"
mv files/*.png .
echo "Move files to art folder"
Expand Down

0 comments on commit addb6f6

Please sign in to comment.