Skip to content
This repository was archived by the owner on Dec 28, 2022. It is now read-only.

Commit 45872c4

Browse files
committed
Fix crash on Edit Tags dialog
Observed on release variants with crash log msg: java.lang.NoSuchFieldException: Failed to set TextInputLayout hint (collapsed) color: null stacktrace: io.reactivex.exceptions.CompositeException: 1 exceptions occurred. at io.reactivex.internal.observers.LambdaObserver.a(SourceFile:15) at io.reactivex.internal.observers.LambdaObserver.a(SourceFile:10) at io.reactivex.internal.operators.observable.ObservableDistinctUntilChanged$DistinctUntilChangedObserver.a(SourceFile:10) at io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver.e(SourceFile:8) at io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver.run(SourceFile:3) at io.reactivex.android.schedulers.HandlerScheduler$ScheduledRunnable.run(SourceFile:1) at android.os.Handler.handleCallback(Handler.java:873) at android.os.Handler.dispatchMessage(Handler.java:99) at android.os.Looper.loop(Looper.java:193) at android.app.ActivityThread.main(ActivityThread.java:6672) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:495) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:860)
1 parent 46dbd95 commit 45872c4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/proguard-rules.pro

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,7 @@
113113

114114
# Custom Cast Media Button, only referenced via menu
115115
-keep class com.simplecity.amp_library.ui.views.CustomMediaRouteActionProvider.CustomMediaRouteButton { *; }
116-
-keep class com.simplecity.amp_library.ui.views.CustomMediaRouteActionProvider { *; }
116+
-keep class com.simplecity.amp_library.ui.views.CustomMediaRouteActionProvider { *; }
117+
118+
# Adopted from https://github.com/afollestad/aesthetic/issues/41
119+
-keep class com.google.android.material.textfield.** { *; }

0 commit comments

Comments
 (0)