0
0
Fork 0
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:
X1nto 2020-05-16 19:25:53 +04:00
parent 0f00fadd7a
commit 387abf6dce
2 changed files with 4 additions and 2 deletions

View file

@ -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()
}
}

View file

@ -12,7 +12,7 @@
<Preference
android:key="device_arch"
android:title="Kernel Architecture"
android:title="Supported ABIs"
android:summary="Arch" />
</PreferenceCategory>