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
3
app/proguard-rules.pro
vendored
3
app/proguard-rules.pro
vendored
|
@ -20,4 +20,5 @@
|
|||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
-dontobfuscate
|
||||
-dontobfuscate
|
||||
-keep class org.oxycblt.auxio.LoadingFragment
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
<androidx.fragment.app.FragmentContainerView
|
||||
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_height="0dp"
|
||||
app:layout_constraintBottom_toTopOf="@+id/tabs"
|
||||
|
|
Loading…
Reference in a new issue