Skip to content
Merged
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
14 changes: 8 additions & 6 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ subprojects {
}

// 👇 MOVED UP: This forces the plugins to use Android SDK 36.
// It must be BEFORE "evaluationDependsOn" to work correctly.
subprojects {
project.afterEvaluate {
project.extensions.findByType(com.android.build.gradle.BaseExtension::class.java)?.apply {
compileSdkVersion(36)
if(namespace == null){
namespace = project.group.toString()
afterEvaluate {
extensions.findByName("android")?.let { ext ->
(ext as? com.android.build.gradle.BaseExtension)?.apply {
compileSdkVersion(36)

if (namespace == null) {
namespace = project.group.toString()
}
}
}
}
Expand Down
Loading