自動バックアップ
SharedPreferencesが再インストール時にリセットされない
bmgr
https://stuff.mit.edu/afs/sipb/project/android/docs/tools/help/bmgr.html
Auto Backup for Android codelab
https://codelabs.developers.google.com/codelabs/android-backup-codelab/#0
Data backup overview
https://developer.android.com/guide/topics/data/backup
<manifest
<application
android:allowBackup="true"
adb shell bmgr enabled
adb shell bmgr enable <true|false>
adb shell bmgr list transports
adb shell bmgr backupnow <PACKAGE>
adb shell bmgr backup <PACKAGE>
adb shell bmgr run
adb shell bmgr restore <TOKEN> <PACKAGE>
2019年7月7日日曜日
2019年7月5日金曜日
adb shell dumpsys jobscheduler
adb shell dumpsys jobscheduler
Active jobs:
Slot #0: inactive since -9m38s404ms, stopped because: app called jobFinished
Slot #1: inactive since -11m39s487ms, stopped because: cancel() called by app, callingUid=10049 uid=10049 jobId=43
Slot #2: inactive since -11m39s594ms, stopped because: cancel() called by app, callingUid=10049 uid=10049 jobId=183
Slot #3: inactive since -3h35m29s108ms, stopped because: last work dequeued
Slot #4: inactive since -3h45m4s586ms, stopped because: last work dequeued
Slot #5: inactive since -3h45m4s848ms, stopped because: app called jobFinished
Slot #6: inactive
Slot #7: inactive
Slot #8: inactive
Slot #9: inactive
Slot #10: inactive
Slot #11: inactive
Slot #12: inactive
Slot #13: inactive
Slot #14: inactive
Slot #15: inactive
mReadyToRock=true
mReportedActive=false
mMaxActiveJobs=6
PersistStats: FirstLoad: 78/11/9 LastSave: 67/6/4
Active jobs:
Slot #0: inactive since -9m38s404ms, stopped because: app called jobFinished
Slot #1: inactive since -11m39s487ms, stopped because: cancel() called by app, callingUid=10049 uid=10049 jobId=43
Slot #2: inactive since -11m39s594ms, stopped because: cancel() called by app, callingUid=10049 uid=10049 jobId=183
Slot #3: inactive since -3h35m29s108ms, stopped because: last work dequeued
Slot #4: inactive since -3h45m4s586ms, stopped because: last work dequeued
Slot #5: inactive since -3h45m4s848ms, stopped because: app called jobFinished
Slot #6: inactive
Slot #7: inactive
Slot #8: inactive
Slot #9: inactive
Slot #10: inactive
Slot #11: inactive
Slot #12: inactive
Slot #13: inactive
Slot #14: inactive
Slot #15: inactive
mReadyToRock=true
mReportedActive=false
mMaxActiveJobs=6
PersistStats: FirstLoad: 78/11/9 LastSave: 67/6/4
2019年6月6日木曜日
ADBコマンド導入の方法
ADBコマンド導入の方法
https://developer.android.com/studio/releases/platform-tools.html
platform-tools_r29.0.0-windows.zip
adb.exe
fastboot.exe
https://dl.google.com/android/repository/usb_driver_r11-windows.zip
http://adakoda.github.io/android-screen-monitor/
Android Screen Monitor
https://developer.android.com/studio/releases/platform-tools.html
platform-tools_r29.0.0-windows.zip
adb.exe
fastboot.exe
https://dl.google.com/android/repository/usb_driver_r11-windows.zip
http://adakoda.github.io/android-screen-monitor/
Android Screen Monitor
2019年3月24日日曜日
adb devices 查询设备
查询设备
$ adb devices
将文件复制到设备/从设备复制文件
$ adb pull remote local
$ adb push local remote
进行屏幕截图
$ adb shell screencap /sdcard/screen.png
录制视频
$ adb shell screenrecord /sdcard/demo.mp4
$ adb devices
将文件复制到设备/从设备复制文件
$ adb pull remote local
$ adb push local remote
进行屏幕截图
$ adb shell screencap /sdcard/screen.png
录制视频
$ adb shell screenrecord /sdcard/demo.mp4
2017年11月23日木曜日
android adb 複数TCPIP链接
android adb 複数TCPIP链接
C:\> adb -s cc1394de tcpip 5555
restarting in TCP mode port: 5555
C:\> adb connect 192.168.11.111:5555
connected to 192.168.11.111:5555
C:\> adb devices
List of devices attached
192.168.11.111:5555 device
192.168.11.109:5556 device
C:\> adb -s cc1394de tcpip 5555
restarting in TCP mode port: 5555
C:\> adb connect 192.168.11.111:5555
connected to 192.168.11.111:5555
C:\> adb devices
List of devices attached
192.168.11.111:5555 device
192.168.11.109:5556 device
登録:
投稿 (Atom)