Skip to content

Commit 093bbfb

Browse files
author
Ivan
committed
Update AGP to 7.4; Gradle to 7.5
1 parent b731208 commit 093bbfb

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

android/build.gradle

+8-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:4.1.0'
12+
classpath 'com.android.tools.build:gradle:7.4.1'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}
1515
}
@@ -33,7 +33,7 @@ apply plugin: 'com.android.library'
3333
apply plugin: 'kotlin-android'
3434

3535
android {
36-
compileSdkVersion 29
36+
compileSdk 33
3737

3838
sourceSets {
3939
main.java.srcDirs += 'src/main/kotlin'
@@ -46,8 +46,12 @@ android {
4646
}
4747

4848
compileOptions {
49-
sourceCompatibility 1.8
50-
targetCompatibility 1.8
49+
sourceCompatibility JavaVersion.VERSION_17
50+
targetCompatibility JavaVersion.VERSION_17
51+
}
52+
53+
if (project.android.hasProperty('namespace')) {
54+
namespace 'com.xraph.plugin.flutter_unity_widget'
5155
}
5256
}
5357

android/gradle/wrapper/gradle-wrapper.properties

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Mon Jul 15 17:33:14 EDT 2024
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
35
zipStoreBase=GRADLE_USER_HOME
46
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

0 commit comments

Comments
 (0)