Skip to content

Commit 7f41c54

Browse files
committed
chore: Adjust enum positioning
1 parent 64fe569 commit 7f41c54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/dev/yokai/domain/base/BasePreferences.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ class BasePreferences(private val preferenceStore: PreferenceStore) {
1010
fun extensionInstaller() = preferenceStore.getEnum("extension_installer", ExtensionInstaller.PACKAGEINSTALLER)
1111

1212
enum class ExtensionInstaller(@StringRes val titleResId: Int, val requiresSystemPermission: Boolean) {
13-
LEGACY(R.string.ext_installer_legacy, true), // Technically useless, but just in case it being missing crashes the app
1413
PACKAGEINSTALLER(R.string.ext_installer_packageinstaller, true),
1514
SHIZUKU(R.string.ext_installer_shizuku, false),
1615
PRIVATE(R.string.ext_installer_private, false),
16+
LEGACY(R.string.ext_installer_legacy, true), // Technically useless, but just in case it being missing crashes the app
1717
}
1818
}

0 commit comments

Comments
 (0)