mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-26 13:31:04 +00:00
- Fixed issues in Store categories. - Fixed issue where custom memory was set too large. - Improved ROM error detection. - Updated the selection dialog. - Added export and import support for paused virtual machines. - Improved virtual machine resuming. - Fixed crash when folders could not be opened. - Improved virtual machine list data error detection. - Fixed issue when selecting the Custom option in the Setup Wizard. - Fixed crash when virtual machine pause fails.
37 lines
1 KiB
Groovy
37 lines
1 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext {
|
|
kotlin_version = '2.3.10'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath libs.gradle
|
|
classpath libs.kotlin.gradle.plugin
|
|
// Android Gradle plugin
|
|
// Add other classpaths like Google Services and Firebase Crashlytics if needed here.
|
|
classpath libs.google.services // assuming you need it for your project
|
|
classpath libs.firebase.crashlytics.gradle
|
|
// assuming you need it for project
|
|
}
|
|
}
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
ext {
|
|
toolsVersion = properties.get('TOOLS_VERSION', '35.0.0')
|
|
compileApi = properties.get('COMPILE_API', 35)
|
|
targetApi = properties.get('TARGET_API', 28)
|
|
minApi = properties.get('MIN_API', 23)
|
|
}
|