mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-11-24 10:23:21 +00:00
Note: This also updates Kotlin to 2.2.21 which requires small adjustments in our Kotlin code.
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.13.1" apply false
|
|
id("com.android.library") version "8.13.1" apply false
|
|
id("org.jetbrains.kotlin.android") version "2.2.21" apply false
|
|
id("com.android.test") version "8.13.1" apply false
|
|
id("androidx.baselineprofile") version "1.3.3" apply false
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
}
|
|
}
|