supress warnings in gradle

This commit is contained in:
Li 2024-05-20 14:37:18 +12:00
parent 3305933dc9
commit 6fcf0643c7
3 changed files with 8 additions and 3 deletions

View File

@ -4,13 +4,13 @@ plugins {
android {
namespace 'com.psmreborn.nopsmdrm'
//noinspection GradleDependency we're targeting the xperia play
//noinspection GradleDependency needs to work properly on android 2.x
compileSdk 10
defaultConfig {
applicationId "com.psmreborn.nopsmdrm"
minSdk 10
//noinspection ExpiredTargetSdkVersion dont care about google play
//noinspection ExpiredTargetSdkVersion app is not distributed on google play -- this app breaks all its rules anyway
targetSdk 23
versionCode 193
versionName "1.9.3"
@ -28,7 +28,7 @@ android {
applicationVariants.configureEach { variant ->
variant.outputs.configureEach {
def versionName = variant.versionName
outputFileName = "${applicationName}-Android.apk"
outputFileName = "${applicationName}.apk"
}
}
}
@ -37,5 +37,6 @@ dependencies {
implementation project(':libsuperuser')
implementation project(':libABX')
implementation 'yuv.pink:npticket:1.6'
//noinspection GradleDependency new version has min sdk 14
implementation 'com.android.support:support-core-utils:25.0.0'
}

View File

@ -4,6 +4,7 @@ plugins {
android {
namespace 'com.rosstonovsky.abxutils'
//noinspection GradleDependency needs to work properly on android 2.x
compileSdk 10
defaultConfig {
@ -22,5 +23,6 @@ android {
}
dependencies {
//noinspection GradleDependency new version has min sdk 14
implementation 'com.android.support:support-core-utils:25.0.0'
}

View File

@ -4,6 +4,7 @@ plugins {
android {
namespace 'eu.chainfire.libsuperuser'
//noinspection GradleDependency needs to work properly on android 2.x
compileSdk 10
defaultConfig {
@ -22,5 +23,6 @@ android {
}
dependencies {
//noinspection GradleDependency new version has min sdk 14
implementation 'com.android.support:support-core-utils:25.0.0'
}