Skip to content

Instantly share code, notes, and snippets.

Created May 26, 2015 17:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/f976407fcedf6cf6647b to your computer and use it in GitHub Desktop.
Save anonymous/f976407fcedf6cf6647b to your computer and use it in GitHub Desktop.
adb logcat
-a - directs adb to listen on all interfaces for a connection
-d - directs command to the only connected USB device
returns an error if more than one USB device is present.
-e - directs command to the only running emulator.
returns an error if more than one emulator is running.
-s <specific device> - directs command to the device or emulator with the given
serial number or qualifier. Overrides ANDROID_SERIAL
environment variable.
-p <product name or path> - simple product name like 'sooner', or
a relative/absolute path to a product
out directory like 'out/target/product/sooner'.
If -p is not specified, the ANDROID_PRODUCT_OUT
environment variable is used, which must
be an absolute path.
-H - Name of adb server host (default: localhost)
-P - Port of adb server (default: 5037)
devices [-l] - list all connected devices
('-l' will also list device qualifiers)
connect <host>[:<port>] - connect to a device via TCP/IP
Port 5555 is used by default if no port number is specified.
disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
Port 5555 is used by default if no port number is specified.
Using this command with no additional arguments
will disconnect from all connected TCP/IP devices.
device commands:
adb push [-p] <local> <remote>
- copy file/dir to device
('-p' to display the transfer progress)
adb pull [-p] [-a] <remote> [<local>]
- copy file/dir from device
('-p' to display the transfer progress)
('-a' means copy timestamp and mode)
adb sync [ <directory> ] - copy host->device only if changed
(-l means list but don't copy)
(see 'adb help all')
adb shell - run remote shell interactively
adb shell <command> - run remote shell command
adb emu <command> - run emulator console command
adb logcat [ <filter-spec> ] - View device log
adb forward --list - list all forward socket connections.
the format is a list of lines with the following format:
<serial> " " <local> " " <remote> "\n"
adb forward <local> <remote> - forward socket connections
forward specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
dev:<character device name>
jdwp:<process pid> (remote only)
adb forward --no-rebind <local> <remote>
- same as 'adb forward <local> <remote>' but fails
if <local> is already forwarded
adb forward --remove <local> - remove a specific forward socket connection
adb forward --remove-all - remove all forward socket connections
adb reverse --list - list all reverse socket connections from device
adb reverse <remote> <local> - reverse socket connections
reverse specs are one of:
tcp:<port>
localabstract:<unix domain socket name>
localreserved:<unix domain socket name>
localfilesystem:<unix domain socket name>
adb reverse --norebind <remote> <local>
- same as 'adb reverse <remote> <local>' but fails
if <remote> is already reversed.
adb reverse --remove <remote>
- remove a specific reversed socket connection
adb reverse --remove-all - remove all reversed socket connections from device
adb jdwp - list PIDs of processes hosting a JDWP transport
adb install [-lrtsd] <file>
adb install-multiple [-lrtsdp] <file...>
- push this package file to the device and install it
(-l: forward lock application)
(-r: replace existing application)
(-t: allow test packages)
(-s: install application on sdcard)
(-d: allow version code downgrade)
(-p: partial application install)
adb uninstall [-k] <package> - remove this app package from the device
('-k' means keep the data and cache directories)
adb bugreport - return all information from the device
that should be included in a bug report.
adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
- write an archive of the device's data to <file>.
If no -f option is supplied then the data is written
to "backup.ab" in the current directory.
(-apk|-noapk enable/disable backup of the .apks themselves
in the archive; the default is noapk.)
(-obb|-noobb enable/disable backup of any installed apk expansion
(aka .obb) files associated with each application; the default
is noobb.)
(-shared|-noshared enable/disable backup of the device's
shared storage / SD card contents; the default is noshared.)
(-all means to back up all installed applications)
(-system|-nosystem toggles whether -all automatically includes
system applications; the default is to include system apps)
(<packages...> is the list of applications to be backed up. If
the -all or -shared flags are passed, then the package
list is optional. Applications explicitly given on the
command line will be included even if -nosystem would
ordinarily cause them to be omitted.)
adb restore <file> - restore device contents from the <file> backup archive
adb help - show this help message
adb version - show version num
scripting:
adb wait-for-device - block until device is online
adb start-server - ensure that there is a server running
adb kill-server - kill the server if it is running
adb get-state - prints: offline | bootloader | device
adb get-serialno - prints: <serial-number>
adb get-devpath - prints: <device-path>
adb status-window - continuously print device status for a specified device
adb remount - remounts the /system and /vendor (if present) partitions on the device read-write
adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
adb reboot-bootloader - reboots the device into the bootloader
adb root - restarts the adbd daemon with root permissions
adb usb - restarts the adbd daemon listening on USB
adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
networking:
adb ppp <tty> [parameters] - Run PPP over USB.
Note: you should not automatically start a PPP connection.
<tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
[parameters] - Eg. defaultroute debug dump local notty usepeerdns
adb sync notes: adb sync [ <directory> ]
<localdir> can be interpreted in several ways:
- If <directory> is not specified, /system, /vendor (if present), and /data partitions will be updated.
- If it is "system", "vendor" or "data", only the corresponding partition
is updated.
environmental variables:
ADB_TRACE - Print debug information. A comma separated list of the following values
1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.
Admin-Macs-Mac-mini:android-sdk-macosx Admin_Mac$ cd platform-tools/
Admin-Macs-Mac-mini:platform-tools Admin_Mac$ adb logcat -c
-bash: adb: command not found
Admin-Macs-Mac-mini:platform-tools Admin_Mac$ adb logcat -c
-bash: adb: command not found
Admin-Macs-Mac-mini:platform-tools Admin_Mac$ ./adb logcat -c
Admin-Macs-Mac-mini:platform-tools Admin_Mac$ ./adb logcat
--------- beginning of /dev/log/main
D/AndroidRuntime( 2785):
D/AndroidRuntime( 2785): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime( 2785): CheckJNI is ON
D/dalvikvm( 2785): Trying to load lib libjavacore.so 0x0
D/dalvikvm( 2785): Added shared lib libjavacore.so 0x0
D/dalvikvm( 2785): Trying to load lib libnativehelper.so 0x0
D/dalvikvm( 2785): Added shared lib libnativehelper.so 0x0
D/dalvikvm( 2785): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
D/dalvikvm( 2785): Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
E/memtrack( 2785): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 2785): failed to load memtrack module: -2
D/AndroidRuntime( 2785): Calling main entry com.android.commands.am.Am
D/AndroidRuntime( 2785): Shutting down VM
D/dalvikvm( 2785): GC_CONCURRENT freed 100K, 15% free 589K/692K, paused 5ms+2ms, total 17ms
D/AndroidRuntime( 2799):
D/AndroidRuntime( 2799): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime( 2799): CheckJNI is ON
D/dalvikvm( 2799): Trying to load lib libjavacore.so 0x0
D/dalvikvm( 2799): Added shared lib libjavacore.so 0x0
D/dalvikvm( 2799): Trying to load lib libnativehelper.so 0x0
D/dalvikvm( 2799): Added shared lib libnativehelper.so 0x0
D/dalvikvm( 2799): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
D/dalvikvm( 2799): Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
E/memtrack( 2799): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 2799): failed to load memtrack module: -2
D/AndroidRuntime( 2799): Calling main entry com.android.commands.pm.Pm
D/AndroidRuntime( 2799): Shutting down VM
D/dalvikvm( 2799): GC_CONCURRENT freed 95K, 15% free 565K/664K, paused 5ms+1ms, total 15ms
D/AndroidRuntime( 2815):
D/AndroidRuntime( 2815): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime( 2815): CheckJNI is ON
D/dalvikvm( 2815): Trying to load lib libjavacore.so 0x0
D/dalvikvm( 2815): Added shared lib libjavacore.so 0x0
D/dalvikvm( 2815): Trying to load lib libnativehelper.so 0x0
D/dalvikvm( 2815): Added shared lib libnativehelper.so 0x0
D/dalvikvm( 2815): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
D/dalvikvm( 2815): Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
E/memtrack( 2815): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 2815): failed to load memtrack module: -2
D/AndroidRuntime( 2815): Calling main entry com.android.commands.am.Am
D/AndroidRuntime( 2815): Shutting down VM
D/dalvikvm( 2815): GC_CONCURRENT freed 98K, 15% free 588K/688K, paused 5ms+1ms, total 15ms
D/AndroidRuntime( 2838):
D/AndroidRuntime( 2838): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
D/AndroidRuntime( 2838): CheckJNI is ON
D/dalvikvm( 2838): Trying to load lib libjavacore.so 0x0
D/dalvikvm( 2838): Added shared lib libjavacore.so 0x0
D/dalvikvm( 2838): Trying to load lib libnativehelper.so 0x0
D/dalvikvm( 2838): Added shared lib libnativehelper.so 0x0
D/dalvikvm( 2838): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
D/dalvikvm( 2838): Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
E/memtrack( 2838): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 2838): failed to load memtrack module: -2
D/AndroidRuntime( 2838): Calling main entry com.android.commands.am.Am
--------- beginning of /dev/log/system
I/ActivityManager( 384): START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.companyname.taptest2/md5a56dc7252be7a4af88d8a25958ac68f1.MainActivity} from pid 2838
E/gralloc_goldfish( 57): gralloc_alloc: Mismatched usage flags: 246 x 410, usage 333
W/GraphicBufferAllocator( 57): alloc(246, 410, 1, 00000333, ...) failed -22 (Invalid argument)
E/ ( 57): GraphicBufferAlloc::createGraphicBuffer(w=246, h=410) failed (Invalid argument), handle=0x0
E/BufferQueue( 384): [ScreenshotClient] dequeueBuffer: SurfaceComposer::createGraphicBuffer failed
W/WindowManager( 384): Screenshot failure taking screenshot for (246x410) to layer 21005
I/ActivityManager( 384): Start proc com.companyname.taptest2 for activity com.companyname.taptest2/md5a56dc7252be7a4af88d8a25958ac68f1.MainActivity: pid=2848 uid=10054 gids={50054, 3003, 1028}
D/AndroidRuntime( 2838): Shutting down VM
D/dalvikvm( 2838): GC_CONCURRENT freed 96K, 15% free 586K/684K, paused 2ms+1ms, total 23ms
D/dalvikvm( 2848): Not late-enabling CheckJNI (already on)
D/dalvikvm( 2848): Trying to load lib /data/app-lib/com.companyname.taptest2-1/libmonodroid.so 0xb1d35330
D/dalvikvm( 2848): Added shared lib /data/app-lib/com.companyname.taptest2-1/libmonodroid.so 0xb1d35330
W/monodroid( 2848): Using override path: /data/data/com.companyname.taptest2/files/.__override__
W/monodroid( 2848): Using override path: /storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__
W/monodroid( 2848): Trying to load sgen from: /data/data/com.companyname.taptest2/files/.__override__/libmonosgen-2.0.so
W/monodroid( 2848): Trying to load sgen from: /storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/libmonosgen-2.0.so
W/monodroid( 2848): Trying to load sgen from: /data/app-lib/com.companyname.taptest2-1/libmonosgen-2.0.so
W/monodroid( 2848): Trying to load sgen from: /data/data/com.companyname.taptest2/files/.__override__/links/libmonosgen-2.0.so
W/monodroid-debug( 2848): Trying to initialize the debugger with options: --debugger-agent=transport=dt_socket,loglevel=0,address=10.0.2.2:59082,embedding=1
D/Mono ( 2848): Image addref mscorlib[0xb8681920] -> mscorlib.dll[0xb868d460]: 1
D/Mono ( 2848): AOT module 'mscorlib.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-mscorlib.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/mscorlib.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-mscorlib.dll.so" not found
D/Mono ( 2848): Assembly mscorlib[0xb8681920] added to domain RootDomain, ref_count=1
D/Mono ( 2848): Assembly Loader probing location: '/storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/Taptest2.dll'.
D/Mono ( 2848): Image addref Taptest2[0xb86c7220] -> /storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/Taptest2.dll[0xb86c65d0]: 2
D/Mono ( 2848): Assembly Taptest2[0xb86c7220] added to domain RootDomain, ref_count=1
D/Mono ( 2848): AOT module '/storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/Taptest2.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-Taptest2.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/Taptest2.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-Taptest2.dll.so" not found
D/Mono ( 2848): Assembly Loader loaded assembly from location: '/storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/Taptest2.dll'.
D/Mono ( 2848): Config attempting to parse: '/storage/sdcard/Android/data/com.companyname.taptest2/files/.__override__/Taptest2.dll.config'.
D/Mono ( 2848): Config attempting to parse: '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/etc/mono/assemblies/Taptest2/Taptest2.config'.
W/monodroid-gc( 2848): GREF GC Threshold: 1800
D/Mono ( 2848): Image addref Mono.Android[0xb86c7f88] -> Mono.Android.dll[0xb86c73e8]: 1
D/Mono ( 2848): Assembly Mono.Android[0xb86c7f88] added to domain RootDomain, ref_count=1
D/Mono ( 2848): AOT module 'Mono.Android.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-Mono.Android.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/Mono.Android.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-Mono.Android.dll.so" not found
D/Mono ( 2848): Assembly Ref addref Mono.Android[0xb86c7f88] -> mscorlib[0xb8681920]: 2
D/Mono ( 2848): DllImport attempting to load: '__Internal'.
D/Mono ( 2848): DllImport loaded library '(null)'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_lref_log_new'.
D/Mono ( 2848): Probing '_monodroid_lref_log_new'.
D/Mono ( 2848): Found as '_monodroid_lref_log_new'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_lref_log_delete'.
D/Mono ( 2848): Probing '_monodroid_lref_log_delete'.
D/Mono ( 2848): Found as '_monodroid_lref_log_delete'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_gref_log_new'.
D/Mono ( 2848): Probing '_monodroid_gref_log_new'.
D/Mono ( 2848): Found as '_monodroid_gref_log_new'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_get_identity_hash_code'.
D/Mono ( 2848): Probing '_monodroid_get_identity_hash_code'.
D/Mono ( 2848): Found as '_monodroid_get_identity_hash_code'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_gref_log'.
D/Mono ( 2848): Probing '_monodroid_gref_log'.
D/Mono ( 2848): Found as '_monodroid_gref_log'.
D/Mono ( 2848): Image addref System.Core[0xb87a58b8] -> System.Core.dll[0xb87a4bc0]: 1
D/Mono ( 2848): Assembly System.Core[0xb87a58b8] added to domain RootDomain, ref_count=1
D/Mono ( 2848): AOT module 'System.Core.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.Core.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/System.Core.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.Core.dll.so" not found
D/Mono ( 2848): Assembly Ref addref Mono.Android[0xb86c7f88] -> System.Core[0xb87a58b8]: 2
D/Mono ( 2848): Assembly Ref addref System.Core[0xb87a58b8] -> mscorlib[0xb8681920]: 3
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_gref_log_delete'.
D/Mono ( 2848): Probing '_monodroid_gref_log_delete'.
D/Mono ( 2848): Found as '_monodroid_gref_log_delete'.
D/Mono ( 2848): DllImport searching in: '__Internal' ('(null)').
D/Mono ( 2848): Searching for '_monodroid_gc_wait_for_bridge_processing'.
D/Mono ( 2848): Probing '_monodroid_gc_wait_for_bridge_processing'.
D/Mono ( 2848): Found as '_monodroid_gc_wait_for_bridge_processing'.
D/Mono ( 2848): Assembly Ref addref Taptest2[0xb86c7220] -> Mono.Android[0xb86c7f88]: 2
D/Mono ( 2848): Assembly Ref addref Taptest2[0xb86c7220] -> mscorlib[0xb8681920]: 4
D/ ( 2848): HostConnection::get() New Host Connection established 0xb894f7b0, tid 2848
W/EGL_emulation( 2848): eglSurfaceAttrib not implemented
D/OpenGLRenderer( 2848): Enabling debug mode 0
I/ActivityManager( 384): Displayed com.companyname.taptest2/md5a56dc7252be7a4af88d8a25958ac68f1.MainActivity: +6s408ms
E/SoundPool( 384): error loading /system/media/audio/ui/Effect_Tick.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/Effect_Tick.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/Effect_Tick.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/Effect_Tick.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/Effect_Tick.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/KeypressStandard.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/KeypressStandard.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/KeypressSpacebar.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/KeypressSpacebar.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/KeypressDelete.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/KeypressDelete.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/KeypressReturn.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/KeypressReturn.ogg
E/SoundPool( 384): error loading /system/media/audio/ui/KeypressInvalid.ogg
W/AudioService( 384): Soundpool could not load file: /system/media/audio/ui/KeypressInvalid.ogg
W/AudioService( 384): onLoadSoundEffects(), Error -1 while loading samples
D/Mono ( 2848): Image addref System.Net.Http[0xb8944fc8] -> System.Net.Http.dll[0xb89449d8]: 1
D/Mono ( 2848): Assembly System.Net.Http[0xb8944fc8] added to domain RootDomain, ref_count=1
D/Mono ( 2848): AOT module 'System.Net.Http.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.Net.Http.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/System.Net.Http.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.Net.Http.dll.so" not found
D/Mono ( 2848): Assembly Ref addref Taptest2[0xb86c7220] -> System.Net.Http[0xb8944fc8]: 2
D/Mono ( 2848): Assembly Ref addref System.Net.Http[0xb8944fc8] -> mscorlib[0xb8681920]: 5
D/Mono ( 2848): Image addref System[0xb89a4168] -> System.dll[0xb89a35b0]: 1
D/Mono ( 2848): Assembly System[0xb89a4168] added to domain RootDomain, ref_count=1
D/Mono ( 2848): AOT module 'System.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.dll.so" not found
D/Mono ( 2848): AOT module '/Users/builder/data/lanes/1502/4ab8d98a/source/monodroid/builds/install/mono-armv7/lib/mono/aot-cache/arm/System.dll.so' not found: dlopen failed: library "/data/app-lib/com.companyname.taptest2-1/libaot-System.dll.so" not found
D/Mono ( 2848): Assembly Ref addref System.Net.Http[0xb8944fc8] -> System[0xb89a4168]: 2
D/Mono ( 2848): Assembly Ref addref System[0xb89a4168] -> mscorlib[0xb8681920]: 6
D/LightsService( 384): Excessive delay setting light: 105ms
D/dalvikvm( 2848): GC_CONCURRENT freed 124K, 8% free 3122K/3376K, paused 14ms+12ms, total 84ms
D/dalvikvm( 2848): GC_FOR_ALLOC freed 9K, 8% free 3113K/3376K, paused 32ms, total 33ms
I/dalvikvm-heap( 2848): Grow heap (frag case) to 3.769MB for 635812-byte allocation
D/dalvikvm( 2848): GC_CONCURRENT freed <1K, 7% free 3733K/4000K, paused 13ms+2ms, total 54ms
D/Mono ( 2848): Assembly Ref addref Mono.Android[0xb86c7f88] -> System[0xb89a4168]: 3
I/Choreographer( 2848): Skipped 169 frames! The application may be doing too much work on its main thread.
W/EGL_emulation( 2848): eglSurfaceAttrib not implemented
D/Mono ( 2848): DllImport attempting to load: '/system/lib/libc.so'.
D/Mono ( 2848): DllImport loaded library '/system/lib/libc.so'.
D/Mono ( 2848): DllImport searching in: '/system/lib/libc.so' ('/system/lib/libc.so').
D/Mono ( 2848): Searching for 'gettid'.
D/Mono ( 2848): Probing 'gettid'.
D/Mono ( 2848): Found as 'gettid'.
D/dalvikvm( 2848): WAIT_FOR_CONCURRENT_GC blocked 1ms
D/dalvikvm( 2848): GC_EXPLICIT freed 18K, 6% free 3793K/3996K, paused 5ms+3ms, total 48ms
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 6 num_hash_entries 7 sccs size 7 init 0.00ms df1 0.73ms sort 0.15ms dfs2 1.13ms setup-cb 0.25ms free-data 0.35ms links 2/2/2/1 dfs passes 15/9
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 23.40ms, total 24.33ms, bridge 61.97ms promoted 560K major 880K los 2030K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 6 num_hash_entries 7 sccs size 7 init 0.00ms df1 0.73ms sort 0.15ms dfs2 1.13ms setup-cb 0.25ms free-data 0.35ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 6.57ms, total 7.36ms, bridge 0.71ms promoted 0K major 880K los 4060K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 6 num_hash_entries 7 sccs size 7 init 0.00ms df1 0.73ms sort 0.15ms dfs2 1.13ms setup-cb 0.25ms free-data 0.35ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 6.68ms, total 7.23ms, bridge 0.61ms promoted 16K major 896K los 8120K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 6 num_hash_entries 7 sccs size 7 init 0.00ms df1 0.73ms sort 0.15ms dfs2 1.13ms setup-cb 0.25ms free-data 0.35ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 12.19ms, total 12.99ms, bridge 3.18ms promoted 0K major 896K los 8120K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/dalvikvm( 384): GC_CONCURRENT freed 711K, 54% free 5914K/12800K, paused 17ms+43ms, total 478ms
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 6 num_hash_entries 7 sccs size 7 init 0.00ms df1 0.73ms sort 0.15ms dfs2 1.13ms setup-cb 0.25ms free-data 0.35ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.74ms, total 6.24ms, bridge 0.55ms promoted 0K major 896K los 8120K
D/dalvikvm( 2848): GC_EXPLICIT freed 2K, 6% free 3792K/3996K, paused 4ms+4ms, total 41ms
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 2/2/2/1 dfs passes 13/8
D/Mono ( 2848): GC_MAJOR: (Minor allowance) pause 15.78ms, total 16.66ms, bridge 50.34ms major 896K/896K los 8128K/16240K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.43ms, total 6.06ms, bridge 0.67ms promoted 0K major 896K los 8128K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.45ms, total 4.92ms, bridge 11.18ms promoted 0K major 896K los 8128K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 15.80ms, total 16.34ms, bridge 0.54ms promoted 0K major 896K los 8128K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.05ms, total 5.74ms, bridge 0.58ms promoted 0K major 896K los 8128K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.16ms, total 5.70ms, bridge 0.56ms promoted 0K major 896K los 8128K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 6.10ms, total 6.66ms, bridge 0.67ms promoted 0K major 896K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.32ms, total 5.80ms, bridge 1.11ms promoted 0K major 896K los 24368K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 7.56ms, total 8.13ms, bridge 1.23ms promoted 16K major 912K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.85ms, total 5.31ms, bridge 0.96ms promoted 0K major 912K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.92ms, total 5.89ms, bridge 0.67ms promoted 0K major 912K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.74ms, total 6.38ms, bridge 0.66ms promoted 0K major 912K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 16.22ms, total 16.70ms, bridge 0.62ms promoted 0K major 912K los 24368K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.73ms, total 6.57ms, bridge 0.71ms promoted 16K major 928K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.13ms, total 5.59ms, bridge 0.65ms promoted 0K major 928K los 24368K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.55ms sort 0.15ms dfs2 0.70ms setup-cb 0.20ms free-data 0.26ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 7.42ms, total 8.01ms, bridge 0.72ms promoted 0K major 928K los 24368K
D/dalvikvm( 2848): WAIT_FOR_CONCURRENT_GC blocked 1ms
D/dalvikvm( 2848): GC_EXPLICIT freed <1K, 6% free 3792K/3996K, paused 4ms+4ms, total 41ms
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 2/2/2/1 dfs passes 13/8
D/Mono ( 2848): GC_MAJOR: (Minor allowance) pause 18.56ms, total 19.14ms, bridge 48.84ms major 928K/928K los 32488K/56848K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 55.95ms, total 56.81ms, bridge 3.76ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 6.63ms, total 7.39ms, bridge 0.82ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.21ms, total 5.69ms, bridge 0.62ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.80ms, total 5.49ms, bridge 0.64ms promoted 0K major 928K los 32488K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.45ms, total 6.01ms, bridge 0.58ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 7.97ms, total 8.62ms, bridge 0.71ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.26ms, total 5.84ms, bridge 0.92ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.48ms, total 5.97ms, bridge 0.71ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.12ms, total 4.56ms, bridge 0.73ms promoted 0K major 928K los 32488K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.52ms, total 6.42ms, bridge 0.67ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.18ms, total 6.25ms, bridge 0.67ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.29ms, total 5.82ms, bridge 0.64ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 4.67ms, total 5.15ms, bridge 0.79ms promoted 0K major 928K los 32488K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.54ms, total 6.35ms, bridge 0.94ms promoted 0K major 928K los 32488K
D/dalvikvm( 384): GC_CONCURRENT freed 848K, 55% free 5769K/12800K, paused 8ms+18ms, total 275ms
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 6.19ms, total 6.75ms, bridge 0.67ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.99ms, total 7.15ms, bridge 0.70ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.86ms, total 6.46ms, bridge 0.62ms promoted 0K major 928K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 5.59ms, total 6.13ms, bridge 0.64ms promoted 16K major 944K los 32488K
D/MobileDataStateTracker( 384): default: setPolicyDataEnable(enabled=true)
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 15.14ms, total 15.82ms, bridge 3.83ms promoted 0K major 944K los 32488K
D/Mono ( 2848): GC_OLD_BRIDGE num-objects 5 num_hash_entries 6 sccs size 6 init 0.00ms df1 0.28ms sort 0.03ms dfs2 0.41ms setup-cb 0.04ms free-data 0.14ms links 0/0/0/0 dfs passes 0/0
D/Mono ( 2848): GC_MINOR: (Nursery full) pause 13.87ms, total 14.38ms, bridge 0.64ms promoted 0K major 944K los 32488K
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment