mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-28 06:19:49 +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.
35 lines
656 B
Groovy
35 lines
656 B
Groovy
plugins {
|
|
id('com.android.library')
|
|
}
|
|
|
|
android {
|
|
namespace 'com.termux.x11.stub'
|
|
buildToolsVersion "36.1.0"
|
|
compileSdkVersion 36
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
//noinspection ExpiredTargetSdkVersion
|
|
}
|
|
buildFeatures {
|
|
buildConfig false
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
lint {
|
|
targetSdk 28
|
|
}
|
|
testOptions {
|
|
targetSdk 28
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.androidx.annotation
|
|
}
|