Fix LoadingFragment bug
Fix a bug where LoadingFragment would be minified out of existence.
This commit is contained in:
parent
fe7557addb
commit
49248f98d9
2 changed files with 3 additions and 2 deletions
1
app/proguard-rules.pro
vendored
1
app/proguard-rules.pro
vendored
|
@ -21,3 +21,4 @@
|
||||||
#-renamesourcefileattribute SourceFile
|
#-renamesourcefileattribute SourceFile
|
||||||
|
|
||||||
-dontobfuscate
|
-dontobfuscate
|
||||||
|
-keep class org.oxycblt.auxio.LoadingFragment
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
<androidx.fragment.app.FragmentContainerView
|
<androidx.fragment.app.FragmentContainerView
|
||||||
android:id="@+id/loading_fragment"
|
android:id="@+id/loading_fragment"
|
||||||
android:name="org.oxycblt.auxio.library.LoadingFragment"
|
android:name="org.oxycblt.auxio.LoadingFragment"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
app:layout_constraintBottom_toTopOf="@+id/tabs"
|
app:layout_constraintBottom_toTopOf="@+id/tabs"
|
||||||
|
|
Loading…
Reference in a new issue