Differences between revisions 14 and 15
Revision 14 as of 2016-08-31 23:32:03
Size: 838
Editor: scot
Comment:
Revision 15 as of 2018-06-25 16:13:17
Size: 1272
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:
Getting files to and from your physical device:

 * First use the adb to backup your package
 * Copy the backup (usually backup.ab) to a linux box.
 * Decompress the file using python: {{{dd if=backup.ab bs=1 skip=24 | python -c "import zlib,sys;sys.stdout.write(zlib.decompress(sys.stdin.read()))" > backup.tar}}}
 * OR Decompress the file using opnessl: {{{dd if=mybackup.ab bs=24 skip=1|openssl zlib -d > mybackup.tar}}}

Managing And Programming Mobile Applications

A.k.a Android Programming (Fall 2014)

Chapter 10:

SQLite and Loaders:

Getting files to and from your physical device:

  • First use the adb to backup your package
  • Copy the backup (usually backup.ab) to a linux box.
  • Decompress the file using python: dd if=backup.ab bs=1 skip=24 | python -c "import zlib,sys;sys.stdout.write(zlib.decompress(sys.stdin.read()))" > backup.tar

  • OR Decompress the file using opnessl: dd if=mybackup.ab bs=24 skip=1|openssl zlib -d > mybackup.tar

Final Project

Managing and Programming Mobile Applications 2016

A.k.a. Xamarin Programming

See /Xamarin notes.

ManagingAndProgrammingMobileApplications (last edited 2018-06-25 16:13:42 by scot)