Compare commits

...

3 Commits

Author SHA1 Message Date
Marcelo Castellano
4923f37833
Merge 9baf58e333 into 0ac949dc1b 2026-02-14 02:00:58 -05:00
Marcelo Castellano
9baf58e333 chore: update proguard to fix minify step of release builds
This change comes from TeamNewPipe/NewPipe@6c5d58bed3.
2026-01-17 02:46:53 -03:00
Marcelo Castellano
67ed4028fc fix: change desugaring to NIO flavor and downgrade to 2.0.4 2026-01-16 05:59:15 -03:00
2 changed files with 8 additions and 3 deletions

View File

@ -122,7 +122,7 @@ flutter {
def glanceVersion = "1.1.1" def glanceVersion = "1.1.1"
dependencies { dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.4' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.4'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
// other deps so just ignore // other deps so just ignore
@ -137,4 +137,4 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3" implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3"
implementation 'com.google.code.gson:gson:2.11.0' implementation 'com.google.code.gson:gson:2.11.0'
} }

View File

@ -57,4 +57,9 @@
-dontwarn jdk.dynalink.linker.TypeBasedGuardingDynamicLinker -dontwarn jdk.dynalink.linker.TypeBasedGuardingDynamicLinker
-dontwarn jdk.dynalink.linker.support.CompositeTypeBasedGuardingDynamicLinker -dontwarn jdk.dynalink.linker.support.CompositeTypeBasedGuardingDynamicLinker
-dontwarn jdk.dynalink.linker.support.Guards -dontwarn jdk.dynalink.linker.support.Guards
-dontwarn jdk.dynalink.support.ChainedCallSite -dontwarn jdk.dynalink.support.ChainedCallSite
# Rules for jsoup
# Ignore intended-to-be-optional re2j classes - only needed if using re2j for jsoup regex
# jsoup safely falls back to JDK regex if re2j not on classpath, but has concrete re2j refs
# See https://github.com/jhy/jsoup/issues/2459 - may be resolved in future, then this may be removed
-dontwarn com.google.re2j.**