Skip to content

Commit

Permalink
Merge pull request solid-software#455 from CodeAtlas/feature/gradle_8…
Browse files Browse the repository at this point in the history
…_upgrade

Update Gradle to 8.2 and AGP to 8.2.0
  • Loading branch information
illia-romanenko authored Dec 13, 2023
2 parents eb8ff33 + e24b989 commit 19dcd75
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions flutter_vlc_player/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
namespace 'software.solid.fluttervlcplayer'

compileSdk 33

defaultConfig {
Expand Down
3 changes: 1 addition & 2 deletions flutter_vlc_player/android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="software.solid.fluttervlcplayer">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
</manifest>
2 changes: 2 additions & 0 deletions flutter_vlc_player/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
namespace 'software.solid.fluttervlcplayerexample'

compileSdkVersion 33

lintOptions {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="software.solid.fluttervlcplayerexample">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<!-- The INTERNET permission is required for development. Specifically,
flutter needs it to communicate with the running application
Expand Down
2 changes: 1 addition & 1 deletion flutter_vlc_player/example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.android.tools.build:gradle:8.2.0'
}
}

Expand Down
1 change: 1 addition & 0 deletions flutter_vlc_player/example/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
android.enableR8=true
android.enableR8.fullMode=false
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-7.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip

0 comments on commit 19dcd75

Please sign in to comment.