Files
AndroidJava/Inure/stub/build.gradle
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

39 lines
742 B
Groovy

plugins {
id('com.android.library')
id('kotlin-kapt')
}
android {
compileSdkVersion 35
namespace = 'app.inure.stub'
defaultConfig {
minSdkVersion 23
targetSdkVersion 35
}
buildFeatures {
buildConfig = false
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
// Refine
annotationProcessor "dev.rikka.tools.refine:annotation-processor:4.4.0"
//noinspection GradleDependency
compileOnly "dev.rikka.tools.refine:annotation:4.4.0"
compileOnly "androidx.annotation:annotation:1.9.1"
}