Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion gradle-scripts/commons.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ def (major,minor,patch) = libraryVersion.split("\\.")

android {
compileSdk libs.versions.android.compileSdk.get().toInteger()
buildFeatures {
buildConfig = true
}

defaultConfig {
minSdkVersion libs.versions.android.minSdk.get().toInteger()
Expand Down Expand Up @@ -59,7 +62,7 @@ android {
}
}

lintOptions {
lint {
abortOnError false
}

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
android.useAndroidX=true
Expand Down
5 changes: 2 additions & 3 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[versions]
# Project
android_compileSdk = "35"
android_gradle_plugin = "8.6.0"
android_compileSdk = "36"
android_gradle_plugin = "8.9.3"
android_minSdk = "21"
kotlin_plugin = "2.0.10"
sonarqube_plugin = "3.3"
android_buildTools = "34.0.0"
detekt_gradle_plugin = "1.23.3"
firebase_gradle_crashlytics = "3.0.2"
vanniktech_maven_pulish_plugin = "0.32.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Sep 05 16:02:47 IST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Anush-Shand is this required? If yes, can you check its impact on hybrids (Especially Unity)?

zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 2 additions & 1 deletion instantapp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ android {
}
buildFeatures {
compose = true
buildConfig = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.2"
}
packagingOptions {
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
Expand Down
1 change: 1 addition & 0 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ android {
}
buildFeatures {
compose true
buildConfig true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
Loading