Hello,
I'm requesting a new action to be added in B4A. This is just me being a bit lazy but it would be nice if B4A had #CustomADBAction.
For example when building a kiosk application in test mode, you need to install that app using ADB install -t youapp.apk, this line works in conjunction with one extra line added to the manifest file which allows you to install the application as a test app(package). It would be nice if we could just have the following in B4A, this way there would be no reason to go into a command window to use the adb command.
The following could add -t to adb install command (I presume this is how B4A installs apk files onto devices, but I'm probably incorrect)
But saying that, maybe if the following is used B4A would just use the #CustomADBAction in full bypassing its own commands if the action starts with adb, maybe.
All this is just a though to that keep everything in B4A itself without opening up a command windows.
Enjoy...
I'm requesting a new action to be added in B4A. This is just me being a bit lazy but it would be nice if B4A had #CustomADBAction.
For example when building a kiosk application in test mode, you need to install that app using ADB install -t youapp.apk, this line works in conjunction with one extra line added to the manifest file which allows you to install the application as a test app(package). It would be nice if we could just have the following in B4A, this way there would be no reason to go into a command window to use the adb command.
The following could add -t to adb install command (I presume this is how B4A installs apk files onto devices, but I'm probably incorrect)
B4X:
#CustomADBAction: -t
But saying that, maybe if the following is used B4A would just use the #CustomADBAction in full bypassing its own commands if the action starts with adb, maybe.
B4X:
#CustomADBAction: adb install -t youapp.apk
All this is just a though to that keep everything in B4A itself without opening up a command windows.
Enjoy...