mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-28 06:19:49 +00:00
35 lines
670 B
Groovy
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'
|
|
}
|