[Android] Add ABI in about fragment informations
Geoffrey Métais
git at videolan.org
Mon Dec 21 11:54:51 CET 2015
vlc-android | branch: 1.7.x | Geoffrey Métais <geoffrey.metais at gmail.com> | Mon Dec 21 11:50:21 2015 +0100| [5160396023d9e6aea8053aeadcfeafad7cb7c27a] | committer: Geoffrey Métais
Add ABI in about fragment informations
(cherry picked from commit 84c5d2eb9a1a16b0c4f7cb01ea9953e4e3c7156c)
Signed-off-by: Geoffrey Métais <geoffrey.metais at gmail.com>
> https://code.videolan.org/videolan/vlc-android/commit/5160396023d9e6aea8053aeadcfeafad7cb7c27a
---
vlc-android/src/org/videolan/vlc/gui/AboutFragment.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vlc-android/src/org/videolan/vlc/gui/AboutFragment.java b/vlc-android/src/org/videolan/vlc/gui/AboutFragment.java
index 7c5d35d..400f8f0 100644
--- a/vlc-android/src/org/videolan/vlc/gui/AboutFragment.java
+++ b/vlc-android/src/org/videolan/vlc/gui/AboutFragment.java
@@ -75,7 +75,7 @@ public class AboutFragment extends Fragment {
TextView compiled = (TextView) v.findViewById(R.id.main_compiled);
compiled.setText(builder + " (" + builddate + ")");
TextView textview_rev = (TextView) v.findViewById(R.id.main_revision);
- textview_rev.setText(getResources().getString(R.string.revision) + " " + revision + " (" + builddate + ")");
+ textview_rev.setText(getResources().getString(R.string.revision) + " " + revision + " (" + builddate + ") "+ BuildConfig.FLAVOR_abi);
final ImageView logo = (ImageView) v.findViewById(R.id.logo);
logo.setOnClickListener(new OnClickListener() {
More information about the Android
mailing list