I mostly use apps installed from F-Droid, so I’m not sure how I’ll use the phone, except that it’s sometimes required as a contact method.
I mostly use apps installed from F-Droid, so I’m not sure how I’ll use the phone, except that it’s sometimes required as a contact method.
install them with adb. its a crucial feature for developers, so they won’t easily get rid of it.
Is this manageable for the non-dev by chance? I can get by on a tutorial or too but if enough things break I’m feeling a dumbphone alt may be the only viable path
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 -> Aboutand look forBuild Numberit can sometimes be buried inSoftware InformationTap
Build Numberrepeatedly until a message appearsYou are now a developerYou should now have a new
Developer optionsmenu item somewhere in your settings. Sometimes it’s top level, sometimes it’s buried underAdditional SettingsorAdvanced Settingsor the likeMake sure
USB Debuggingis turned onConnect the device over USB
Back on WIndows type:
adb devicesadb devicesagain. You should see your device listedadb install C:/path/to/app.apk<- ifadb devicesonly 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
-rflagadb install -r C:/path/to/app.apkMore useful adb commands
So no
deleted by creator