mirror of
https://github.com/yuliskov/SmartTube.git
synced 2025-05-17 03:15:56 +08:00
gradle: warning fix
This commit is contained in:
Submodule MediaServiceCore updated: c450dd337e...aad6f9d4d8
@ -15,6 +15,12 @@ apply from: '../../constants.gradle'
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
// MOD: FIX warning: source value 7 is obsolete and will be removed in a future release
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
|
||||
compileSdkVersion project.ext.compileSdkVersion
|
||||
|
||||
defaultConfig {
|
||||
|
@ -1,7 +1,7 @@
|
||||
android.enableJetifier = true
|
||||
android.useAndroidX = true
|
||||
# Jetifier with Robolectric transform fix:
|
||||
# Add android.jetifier.blacklist=bcprov or android.enableJetifier=false to gradle.properties. or upgrade to 7.1.x of AGP.
|
||||
# Add android.jetifier.blacklist=bcprov or android.enableJetifier=false to gradle.properties. or upgrade to 7.1.x of AGP (Android Gradle Plugin).
|
||||
android.jetifier.blacklist=bcprov
|
||||
# Get ready for minification (NoSuchMethodError on kivi???)
|
||||
#android.enableR8.fullMode=true
|
||||
|
Reference in New Issue
Block a user