mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-28 06:19:49 +00:00
- Added auto return to Home after importing rom and creating virtual machine in Rom store. - Improved image viewer. - Fixed Unknow display error in architecture in rom info if it is PowerPC architecture. - New setup wizard interface that automatically changes according to screen size. - New ID generator for virtual machine. - Added dialog when deleting virtual machine.
37 lines
1.1 KiB
Groovy
37 lines
1.1 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext {
|
|
kotlin_version = '2.2.0'
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.13.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
// Android Gradle plugin
|
|
// Add other classpaths like Google Services and Firebase Crashlytics if needed here.
|
|
// classpath 'com.google.gms:google-services:4.4.3' // assuming you need it for your project
|
|
// classpath 'com.google.firebase:firebase-crashlytics-gradle:3.0.6'
|
|
// assuming you need it for project
|
|
}
|
|
}
|
|
task clean(type: 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)
|
|
}
|