Skip to content

Commit

Permalink
Updated to the latest version of gradle, with support for Android SDK 35
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 30, 2024
1 parent 16a3b75 commit 0f40949
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
5 changes: 3 additions & 2 deletions android-project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ plugins {
}

android {
compileSdk 33
namespace "org.libsdl.helloworld"
compileSdk 35

defaultConfig {
applicationId 'org.libsdl.SDL_Helloworld'
minSdk 21
targetSdk 33
targetSdk 35
versionCode 1
versionName '1.0'

Expand Down
3 changes: 1 addition & 2 deletions android-project/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.libsdl.helloworld">
xmlns:tools="http://schemas.android.com/tools">

<!-- OpenGL ES 2.0 -->
<uses-feature android:glEsVersion="0x00020000" />
Expand Down
4 changes: 2 additions & 2 deletions android-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'com.android.application' version '8.7.0' apply false
id 'com.android.library' version '8.7.0' apply false
}

task clean(type: Delete) {
Expand Down
2 changes: 1 addition & 1 deletion android-project/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit 0f40949

Please sign in to comment.