Vectras-VM-Android/shell-loader/stub/build.gradle
An Bui 9038a15e5e 3.7.1
- Bugs fixed.
2026-01-17 12:29:21 +07:00

35 lines
670 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 'androidx.annotation:annotation:1.9.1'
}