Skip to content

Commit

Permalink
Update Gradle to 8.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
SiegeLordEx authored and SiegeLord committed Jan 16, 2025
1 parent 6eb1125 commit 5c38df3
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions android/gradle_project/allegro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ android {
minifyEnabled false
}
}
namespace("org.liballeg")
}

3 changes: 1 addition & 2 deletions android/gradle_project/allegro/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.liballeg">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity android:name="org.liballeg.android.AllegroActivity"/>
</application>
Expand Down
5 changes: 3 additions & 2 deletions android/gradle_project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ android {
minifyEnabled false
}
}
namespace("org.liballeg.app")
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "org.liballeg.android:allegro:1.0@aar"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.liballeg.android:allegro:1.0@aar"
}

3 changes: 1 addition & 2 deletions android/gradle_project/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.liballeg.app"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand All @@ -17,4 +16,4 @@
</intent-filter>
</activity>
</application>
</manifest>
</manifest>
2 changes: 1 addition & 1 deletion android/gradle_project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.2.0"
classpath "com.android.tools.build:gradle:8.8.0"
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 5c38df3

Please sign in to comment.