Vectras-VM-Android/shell-loader/stub/build.gradle
dependabot[bot] 1657f316f9
Bump androidx.annotation:annotation from 1.1.0 to 1.9.1
Bumps androidx.annotation:annotation from 1.1.0 to 1.9.1.

---
updated-dependencies:
- dependency-name: androidx.annotation:annotation
  dependency-version: 1.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-30 18:15:56 +00:00

30 lines
615 B
Groovy

plugins {
id('com.android.library')
}
android {
namespace 'com.termux.x11.stub'
buildToolsVersion "35.0.0"
compileSdkVersion 35
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.9.1'
}