Skip to content

Commit 16ae2ea

Browse files
committed
Target sdk 34
1 parent 392d1c3 commit 16ae2ea

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

app/build.gradle

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
plugins {
22
id 'com.android.application'
3-
id('com.github.triplet.play') version '3.7.0-agp4.2' apply false
3+
id('com.github.triplet.play') version '3.9.0' apply false
44
}
55

66
android {
7-
compileSdkVersion 33
7+
compileSdk 34
8+
namespace "com.bytehamster.flowitgame"
89

910
defaultConfig {
1011
applicationId "com.bytehamster.flowitgame"
11-
minSdkVersion 14
12-
targetSdkVersion 33
12+
minSdk 14
13+
targetSdk 34
1314
versionCode 308
1415
versionName "3.8"
1516
}
@@ -59,7 +60,12 @@ android {
5960
compress(projectDir.path + '/src/main/assets/levelsCommunity.xml')
6061
}
6162
}
63+
6264
preBuild.dependsOn compressLevelFile
65+
66+
buildFeatures {
67+
buildConfig true
68+
}
6369
}
6470

6571
if (project.hasProperty("TRIPLET_API_KEY")) {

app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.bytehamster.flowitgame">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<application
65
android:allowBackup="true"

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:4.2.2'
8+
classpath 'com.android.tools.build:gradle:8.1.1'
99
}
1010
}
1111

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)