Vectras-VM-Android/shell-loader/stub/build.gradle
xoureldeen 12fe61b2e0 2.9.2
2024-10-29 03:24:38 +03:00

30 lines
615 B
Groovy

plugins {
id('com.android.library')
}
android {
namespace 'com.termux.x11.stub'
buildToolsVersion "34.0.0"
compileSdkVersion 34
defaultConfig {
minSdkVersion 24
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 28
}
buildFeatures {
buildConfig false
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.annotation:annotation:1.8.0'
}