File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
java/fuzion24/device/vulnerability/test/ui Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,11 @@ protected void onCreate(Bundle savedInstanceState) {
67
67
final TextView tvBuildRelease = (TextView ) findViewById (R .id .buildRelease );
68
68
final TextView tvBuildSDK = (TextView ) findViewById (R .id .buildSDK );
69
69
70
+ final TextView tvBuildCPUABI = (TextView ) findViewById (R .id .buildCPUABI );
71
+ final TextView tvBuildCPUABI2 = (TextView ) findViewById (R .id .buildCPUABI2 );
72
+ final TextView tvBuildABIList = (TextView ) findViewById (R .id .buildABIList );
73
+
74
+
70
75
devInfo = DeviceInfo .getDeviceInfo ();
71
76
tvBuildFingerPrint .setText (devInfo .getBuildFingerPrint ());
72
77
tvBuildID .setText (devInfo .getBuildID ());
@@ -76,6 +81,16 @@ protected void onCreate(Bundle savedInstanceState) {
76
81
tvBuildModel .setText (devInfo .getBuildModel ());
77
82
tvBuildRelease .setText (devInfo .getBuildRelease ());
78
83
tvBuildSDK .setText (devInfo .getBuildSDK ());
84
+ tvBuildCPUABI .setText (devInfo .getBuildCpuABI ());
85
+ tvBuildCPUABI2 .setText (devInfo .getBuildCpuABI2 ());
86
+
87
+ StringBuilder sb = new StringBuilder ();
88
+ for (String s : devInfo .getSupportedABIS ()){
89
+ sb .append (s );
90
+ sb .append (" " );
91
+ }
92
+
93
+ tvBuildABIList .setText (sb .toString ());
79
94
80
95
FloatingActionButton fabStart = (FloatingActionButton ) findViewById (R .id .fabStart );
81
96
Original file line number Diff line number Diff line change 164
164
android : layout_height =" wrap_content"
165
165
android : layout_marginLeft =" 2dip"
166
166
android : textColor =" @color/white" />
167
-
167
+ <TextView
168
+ android : id =" @+id/buildCPUABI"
169
+ android : layout_width =" wrap_content"
170
+ android : layout_height =" wrap_content"
171
+ android : layout_marginLeft =" 2dip"
172
+ android : textColor =" @color/white" />
173
+ <TextView
174
+ android : id =" @+id/buildCPUABI2"
175
+ android : layout_width =" wrap_content"
176
+ android : layout_height =" wrap_content"
177
+ android : layout_marginLeft =" 2dip"
178
+ android : textColor =" @color/white" />
179
+ <TextView
180
+ android : id =" @+id/buildABIList"
181
+ android : layout_width =" wrap_content"
182
+ android : layout_height =" wrap_content"
183
+ android : layout_marginLeft =" 2dip"
184
+ android : textColor =" @color/white" />
168
185
</LinearLayout >
169
186
170
187
<LinearLayout
You can’t perform that action at this time.
0 commit comments