Skip to content

Commit

Permalink
v3.6. Sdk update to target Android 15
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Coutant committed Oct 18, 2024
1 parent c695e76 commit be858e9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Blokish
Blokish
=======
![blokish](http://blokish.scoutant.org/blokish_nexus_6)

Expand Down Expand Up @@ -57,6 +57,11 @@ Stephane Coutant, http://scoutant.org

# Changelog

## v3.6, 2024/10 : Android 15
* targetting Android 15
* built with Android 15 sdk and Gradle 8.10
* update by RobbieNesmith as part of Hacktoberfest

## v3.5, 2022/11 : Android 12.1
* targetting Android 12.1
* built with Android 13 sdk and Gradle 7.5
Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdk 34 // 13.0
project.archivesBaseName = "blokish-3.5" // sync with Manifest
compileSdk 35
project.archivesBaseName = "blokish-3.6" // sync with Manifest

defaultConfig {
applicationId "org.scoutant.blokish"
minSdkVersion 28 // Android 9
targetSdkVersion 34 // Android 14
versionCode 23
versionName "3.5"
targetSdkVersion 35 // Android 15
versionCode 24
versionName "3.6"
project.ext.set("archivesBaseName", "blokish-" + defaultConfig.versionName)
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.1'
classpath 'com.android.tools.build:gradle:8.6.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-all.zip

0 comments on commit be858e9

Please sign in to comment.