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.
63 lines
1.4 KiB
Groovy
63 lines
1.4 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'maven-publish'
|
|
|
|
android {
|
|
namespace "com.termux.view"
|
|
compileSdkVersion 36
|
|
|
|
dependencies {
|
|
implementation libs.androidx.annotation
|
|
api project(":terminal-emulator")
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
//noinspection ExpiredTargetSdkVersion
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
lint {
|
|
targetSdk 28
|
|
}
|
|
testOptions {
|
|
targetSdk 28
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation libs.junit
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
bar(MavenPublication) {
|
|
groupId 'com.termux'
|
|
artifactId 'terminal-view'
|
|
version '0.106.1'
|
|
artifact("$buildDir/outputs/aar/terminal-view-release.aar")
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
maven {
|
|
name = "GitHubPackages"
|
|
url = uri("https://maven.pkg.github.com/termux/termux-app")
|
|
|
|
credentials {
|
|
username = System.getenv("GH_USERNAME")
|
|
password = System.getenv("GH_TOKEN")
|
|
}
|
|
}
|
|
}
|
|
}
|