Files
TEESimulator-RS/stub/build.gradle.kts
T
Dakkshesh 088e9ff1b0 java: Stop using dev.rikka.hidden.stub
- We dont need the whole dev.rikka.hidden.stub library so just remove it and simplify dependencies.
- We already have our own stub package so we can just include the missing stubs that we want directly in it.

Signed-off-by: Dakkshesh <beakthoven@gmail.com>
2025-08-17 23:15:44 +05:30

37 lines
665 B
Kotlin

/*
* Copyright 2025 Dakkshesh <beakthoven@gmail.com>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
plugins {
alias(libs.plugins.android.library)
}
android {
namespace = "io.github.beakthoven.stub"
compileSdk = 36
buildToolsVersion = "36.0.0"
defaultConfig {
minSdk = 29
}
buildTypes {
release {
isMinifyEnabled = false
}
}
lint {
checkReleaseBuilds = false
abortOnError = true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
}
dependencies {
compileOnly(libs.annotation)
}