Amazon S3



Android SetupPre-requisite: JDK 6 or higher (JRE alone is not sufficient)Download and install JDK 6 or above : Install ADB and FastBootAndroid studio : and install the android studioOpen the tool and run itGo to following folder files:C:\Users\t_ramiv2\AppData\Local\Android\sdk\platform-toolsC:\Users\t_ramiv2\AppData\Local\Android\sdk\toolsAdd these to PATH variable :Start >>Computer>>System Properties tabAdvanced Settings>>Advanced Tab>>Environment VariablesUnder System Variables>> click on ‘New’. In ‘New System Variable’ pop-up add the following:Variable Name: ANDROID_SDKVariable Value: C:\Users\t_ramiv2\AppData\Local\Android\sdkUnder ‘System variables’ select ‘PATH’, click on édit’ and add the following path at the end, each separated by a semicolonC:\Users\t_ramiv2\AppData\Local\Android\sdk\platform-toolsC:\Users\t_ramiv2\AppData\Local\Android\sdk\toolsClick ‘OK’ in all windows.Install ADB driver Note, you need to connect a Carbon device with a USB cable to your laptop before taking next steps.Unzip and run the .exe fileChoose Automated installation (Universal)ADB Driver Installer ((9.22 MB). The file ADBDriverInstaller.exe shall be downloaded..Click on it, the following screen is presentedClick on installSet Path for ADB: ADB have to set the path to the location of adb.exe. Right Click on 'Computer' Go to Control Panel -> Advanced system settings -> Advanced - > Environment Variables.-< System Variables > Path>Add "to path the following string without the quotes ";C:\Users\Money2020Hackathon\AppData\Local\Android\sdk\platform-tools"?========================================================================Open cmd prompt, and run adb command/s to verify that computer is able to communicate to the device:C:\Users\t_ramiv2>adb devicesList of devices attached* daemon not running. starting it now on port 5037 ** daemon started successfully *260129760137 device type: adb.This should give some response back without throwing error or command not found error==========================================================================Android application installation: Download .apk to local drive. Run cmd prompt from that dir.Run this cmd to install the .apk file:$ adb install <apk name> (NOTE: if you have to overwrite a previous build, use –r option in the parameter list)$adb install –r <apkname>====================================================================================If you get an error [INSTALL_FAILED_UPDATE_INCOMPATIBLE], then un-install the existing app and install the new build:Use the same cmd prompt window:First get hold of the package name from your android device.$ adb root$ adb shellroot@swordfish:/# pm list packages >> this cmd will list out all the app packages on the devicenow, come out of root and uninstall the desired package:$ adb uninstall com.verifone.swordfish.manualtransactionNOTE: Another way to un-install apps on the device:Hold down the app, move it to recycle bin and say OK at the prompt ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download