Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 1.8 KB

android-sdk-install-win10.md

File metadata and controls

55 lines (44 loc) · 1.8 KB

android-sdk-install-win10.md

Prereq

==========
# see site which is good for pre-requisits: # http://www.howtogeek.com/125375/how-to-create-a-full-android-phone-or-tablet-backup-without-rooting-or-unlocking-your-device/ # # java
https://www.java.com/en/download/win10.jsp
#
https://developer.android.com/studio/command-line/adb.html #

# other
https://developer.android.com/studio/command-line/adb.html
http://forum.xda-developers.com/devdb/project/?id=1314#downloads
http://www.nexus7tablethelp.com/2012/08/adb-full-backuprestore-nexus7-without.html?m=1
http://www.htcdev.com/devcenter/downloads



# * How to perform a full system backup.

# FYI: 
#  1 * run cmd terminal as ADMIN!!! observed result is both execute with ADMIN-term returning:
#    * daemon started successfully *
#         HT69T0200871    device
#  vs: 
#    * daemon started successfully *
#         List of devices attached
#          HT69T0200871    offline
#
#  2 * both handset and pc must be on same wifi, not wifi-handset/lan-pc
#
# Command parameters format: adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|nosystem] [<packages...>]

# * Start doing N7 backup by using the command:
adb backup -apk -shared -all -f C:\Users\geoff\pixel-full-backup.ab
# 
# eg: 
#   C:\WINDOWS\system32>adb backup -apk -shared -all -f C:\Users\geoff\pixel-full-backup.ab
#
# * It should ask if you want to. Touch "Back up my data". 
#   Now unlock your device and confirm the backup operation...
#
###############
#
# * to restore everything, 
adb restore C:\n7-full-backup.ab
# Then tap "Restore my data" on your N7 to start.