mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 20:18:44 -06:00

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.
15 lines
480 B
Plaintext
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()
|
|
}
|
|
}
|