Difference between revisions of "Android"

From Hackepedia
Jump to navigationJump to search
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
If you have an Android phone, here is some software that might be of interest:  
 
If you have an Android phone, here is some software that might be of interest:  
 +
 +
== Security/Privacy ==
  
 
*[http://keepass.info/ KeePassDroid] - Password manager that uses encryption
 
*[http://keepass.info/ KeePassDroid] - Password manager that uses encryption
 
*[http://www.whispersys.com/ TextSecure] - Encrypt SMS
 
*[http://www.whispersys.com/ TextSecure] - Encrypt SMS
 +
*[http://code.google.com/p/droidwall/ DroidWall] - Firewall
 +
*[http://bigtincan.com/downloads/android.html AdFree Android] - Requires root, but removes all ads
 +
 +
== Performance ==
 +
 +
* Only have wifi or GPS on while using it, turn it off asap after use.
 +
 +
== Samsung ==
 +
 +
* Kies Air from Samsung Apps (allows you to exchange content on the LAN through a web server)
 +
 +
== Backup ==
 +
 +
There are a few popular apps you should ensure you've manually backed up the shared secrets for, such as:
 +
* Signal
 +
* Silence
 +
* [https://android.stackexchange.com/questions/187342/is-google-authenticator-data-saved-in-the-google-backup-cloud/190311#190311 Google Authenticator]
 +
* Whatsapp
 +
 +
 +
You'll need adb for this. On [[Debian]] or [[Ubuntu]]:
 +
sudo apt-get install android-tools-adb
 +
 +
then you'll want to make a directory to back your files up to:
 +
mkdir android-backup
 +
 +
cd into that directory, and start by backing up all your installed applications:
 +
 +
adb backup -all # Consider adding -apk -obb -shared as well
 +
 +
and now you can also backup your internal sdcard:
 +
 +
adb pull /sdcard/ .
 +
 +
The above assumes you're in android-backup, otherwise replace the . with the directory you want to backup to.
 +
 +
== Flash ==
 +
 +
Wipe System, Dalvik, and Cache and flash rom, gapps and magisk again.
 +
 +
Do NOT wipe Data and Internal Storage or you will lose all your data!

Latest revision as of 22:17, 8 August 2020

If you have an Android phone, here is some software that might be of interest:

Security/Privacy

Performance

  • Only have wifi or GPS on while using it, turn it off asap after use.

Samsung

  • Kies Air from Samsung Apps (allows you to exchange content on the LAN through a web server)

Backup

There are a few popular apps you should ensure you've manually backed up the shared secrets for, such as:


You'll need adb for this. On Debian or Ubuntu:

sudo apt-get install android-tools-adb

then you'll want to make a directory to back your files up to:

mkdir android-backup

cd into that directory, and start by backing up all your installed applications:

adb backup -all # Consider adding -apk -obb -shared as well

and now you can also backup your internal sdcard:

adb pull /sdcard/ .

The above assumes you're in android-backup, otherwise replace the . with the directory you want to backup to.

Flash

Wipe System, Dalvik, and Cache and flash rom, gapps and magisk again.

Do NOT wipe Data and Internal Storage or you will lose all your data!