NoPssDrm/libsuperuser/build.gradle

28 lines
594 B
Groovy
Raw Normal View History

2024-04-20 13:57:35 +00:00
plugins {
id 'com.android.library'
}
android {
namespace 'eu.chainfire.libsuperuser'
2024-05-20 02:37:18 +00:00
//noinspection GradleDependency needs to work properly on android 2.x
2024-04-20 13:57:35 +00:00
compileSdk 10
defaultConfig {
minSdk 10
}
buildTypes {
release {
2024-04-28 12:52:34 +00:00
minifyEnabled true
2024-04-20 13:57:35 +00:00
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
2024-05-20 02:37:18 +00:00
//noinspection GradleDependency new version has min sdk 14
2024-05-19 05:59:42 +00:00
implementation 'com.android.support:support-core-utils:25.0.0'
2024-04-20 13:57:35 +00:00
}