mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-26 21:13:01 +00:00
updated deivece info in dev settings
This commit is contained in:
parent
0f00fadd7a
commit
387abf6dce
2 changed files with 4 additions and 2 deletions
|
@ -39,7 +39,9 @@ class DevSettingsFragment: PreferenceFragmentCompat() {
|
|||
|
||||
}
|
||||
val archPref: Preference? = findPreference("device_arch")
|
||||
archPref?.summary = Build.SUPPORTED_ABIS.toString()
|
||||
val supportedAbis: Array<String> = Build.SUPPORTED_ABIS
|
||||
|
||||
archPref?.summary = supportedAbis.toString()
|
||||
|
||||
}
|
||||
}
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<Preference
|
||||
android:key="device_arch"
|
||||
android:title="Kernel Architecture"
|
||||
android:title="Supported ABIs"
|
||||
android:summary="Arch" />
|
||||
|
||||
</PreferenceCategory>
|
||||
|
|
Loading…
Reference in a new issue