Files
dolphin/Source/Android/build.gradle.kts
Simon 9d9b6d8705 Android: Bump SDK to 36 and Gradle to 8.13
Starting August 31, 2025, targeting at least Android 15 (API level 35) will be required: https://support.google.com/googleplay/android-developer/answer/11926878
This commit sets the target SDK to API level 36 (Android 16), the latest available version.
2025-07-24 15:43:52 -04:00

15 lines
480 B
Plaintext

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.11.0" apply false
id("com.android.library") version "8.11.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
id("com.android.test") version "8.11.0" apply false
id("androidx.baselineprofile") version "1.3.3" apply false
}
buildscript {
repositories {
google()
}
}