Skip to content

Commit

Permalink
Merge pull request #49 from hannesa2/DebugInfo
Browse files Browse the repository at this point in the history
Debug info
  • Loading branch information
hannesa2 committed Mar 9, 2021
2 parents e0f6e66 + 20bf8f4 commit b78e92a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/info/mediapipe/app/SystemInfoFragment.kt
Expand Up @@ -10,7 +10,7 @@ class SystemInfoFragment : PreferenceFragmentCompat() {
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
// Load the preferences from an XML resource
addPreferencesFromResource(R.xml.prefs)
findPreference<Preference>(PREFERENCE_ + "APPVERSION")?.summary = BuildConfig.VERSION_NAME
findPreference<Preference>(PREFERENCE_ + "APPVERSION")?.summary = "${BuildConfig.VERSION_NAME} debug=${BuildConfig.DEBUG}"
findPreference<Preference>(PREFERENCE_ + "BOARD")?.summary = Build.BOARD
findPreference<Preference>(PREFERENCE_ + "BRAND")?.summary = Build.BRAND
findPreference<Preference>(PREFERENCE_ + "CPU_ABI")?.summary = Build.SUPPORTED_ABIS[0]
Expand Down

0 comments on commit b78e92a

Please sign in to comment.