Skip to content

Commit

Permalink
fix features are not visible
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Dec 6, 2024
1 parent 5ea8b89 commit fd7b18e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ android {
packaging.resources.excludes += setOf(
"META-INF/**",
"okhttp3/**",
//"kotlin/**",
"kotlin/**",
"org/**",
"**.properties",
"**.bin",
Expand Down
3 changes: 0 additions & 3 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
-verbose
-optimizationpasses 5
-dontpreverify
-dontskipnonpubliclibraryclasses
-dontobfuscate

-dontwarn org.conscrypt.**
-dontwarn kotlinx.serialization.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ import ext.dergoogler.mmrl.activity.MMRLComponentActivity
import ext.dergoogler.mmrl.ext.ifNotEmpty
import ext.dergoogler.mmrl.ext.ifNotNullOrBlank
import ext.dergoogler.mmrl.ext.isNotNullOrBlank
import ext.dergoogler.mmrl.ext.isObjectEmpty
import ext.dergoogler.mmrl.ext.launchCustomTab
import ext.dergoogler.mmrl.ext.shareText
import ext.dergoogler.mmrl.ext.takeTrue
Expand Down Expand Up @@ -735,7 +734,7 @@ fun NewViewScreen(
}

module.features?.let {
if (!it.isObjectEmpty()) {
if (it.isNotEmpty()) {
ListCollapseItem(
contentPaddingValues = listItemContentPaddingValues,
iconToRight = true,
Expand Down Expand Up @@ -788,7 +787,7 @@ fun NewViewScreen(
feature = it.webroot,
key = R.string.view_module_features_webui,
value = R.string.view_module_features_webui_sub,
rootSolutions = listOf("KernelSU", "APatch")
rootSolutions = listOf("KernelSU", "APatch", "MMRL")
)
FeatureListItem(
itemTextStyle = subListItemStyle,
Expand Down

0 comments on commit fd7b18e

Please sign in to comment.