actually print app version
This commit is contained in:
parent
6c52bd85f6
commit
f4ff81df26
|
@ -64,7 +64,7 @@ public class rusEFI extends Activity {
|
||||||
//
|
//
|
||||||
// protected static final int DFU_DETACH_TIMEOUT = 1000;
|
// protected static final int DFU_DETACH_TIMEOUT = 1000;
|
||||||
|
|
||||||
private static final String VERSION = "rusEFI app v0.0000006\n";
|
private static final String VERSION = "rusEFI app v0.0000007\n";
|
||||||
|
|
||||||
/* UI elements */
|
/* UI elements */
|
||||||
private TextView mStatusView;
|
private TextView mStatusView;
|
||||||
|
@ -127,7 +127,7 @@ public class rusEFI extends Activity {
|
||||||
IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
|
IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION);
|
||||||
registerReceiver(mUsbReceiver, filter);
|
registerReceiver(mUsbReceiver, filter);
|
||||||
|
|
||||||
mStatusView.setText("Hello");
|
mResultView.append(VERSION);
|
||||||
|
|
||||||
dfuUpload = new DfuUpload(this);
|
dfuUpload = new DfuUpload(this);
|
||||||
|
|
||||||
|
@ -178,8 +178,6 @@ public class rusEFI extends Activity {
|
||||||
};
|
};
|
||||||
|
|
||||||
private void switchOrProgramDfu() {
|
private void switchOrProgramDfu() {
|
||||||
mResultView.append(VERSION);
|
|
||||||
|
|
||||||
UsbDevice dfuDevice = DfuDeviceLocator.findDevice(usbManager);
|
UsbDevice dfuDevice = DfuDeviceLocator.findDevice(usbManager);
|
||||||
|
|
||||||
if (dfuDevice != null) {
|
if (dfuDevice != null) {
|
||||||
|
|
Loading…
Reference in New Issue