Difference between revisions of "Android"

From Hackepedia
Jump to navigationJump to search
Line 11: Line 11:
  
 
* Only have wifi or GPS on while using it, turn it off asap after use.
 
* Only have wifi or GPS on while using it, turn it off asap after use.
 
* [http://www.androidtapp.com/advanced-task-killer/ Advanced Task killer]
 
* [http://latedroid.com/juicedefender Juice Defender]
 
* [http://www.appbrain.com/app/juiceplotter/com.latedroid.juiceplotter Juice plotter]
 
* [http://www.appbrain.com/app/green-power-free-battery-saver/org.gpo.greenpower Green power]
 
  
 
== Samsung ==
 
== Samsung ==

Revision as of 14:53, 29 September 2019

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

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

and now you can also backup your internal sdcard:

adb pull /storage/sdcard0/ .

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