

201·
21 days agoWhat? No chance we beat the Americans, or the Australians for that matter. The current government are car brained morons, and I can’t really speak for the other major cities but I lived in Wellington for over 10 years without a car and it was fine. I know more people without cars than with them
Depends on your comfort with CLI tools. Here’s the process (assumes Windows):
set PATH=%PATH%;C:\your\path\here\
<- Temporary, just for the current sessionsetx /M path "%path%;C:\your\path\here\"
<- PermanentOn your device, go to
Settings -> About
and look forBuild Number
it can sometimes be buried inSoftware Information
Tap
Build Number
repeatedly until a message appearsYou are now a developer
You should now have a new
Developer options
menu item somewhere in your settings. Sometimes it’s top level, sometimes it’s buried underAdditional Settings
orAdvanced Settings
or the likeMake sure
USB Debugging
is turned onConnect the device over USB
Back on WIndows type:
adb devices
adb devices
again. You should see your device listedadb install C:/path/to/app.apk
<- ifadb devices
only returns one deviceadb -s <device_id> install C:/path/to/app.apk
<- specific deviceYou can install updates the same way, just download the updated APK and add the
-r
flagadb install -r C:/path/to/app.apk
More useful adb commands