Last active
August 29, 2015 14:07
-
-
Save nicolasblanco/5987a6c18c4759a485fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ➜ projects rm -rf AnotherTest | |
| ➜ projects motion create --template=android AnotherTest | |
| Create AnotherTest | |
| Create AnotherTest/.gitignore | |
| Create AnotherTest/app/main_activity.rb | |
| Create AnotherTest/Rakefile | |
| ➜ projects cd AnotherTest | |
| ➜ AnotherTest vim Rakefile | |
| ➜ AnotherTest cat Rakefile | |
| # -*- coding: utf-8 -*- | |
| $:.unshift("/Library/RubyMotionPre/lib") | |
| require 'motion/project/template/android' | |
| Motion::Project::App.setup do |app| | |
| # Use `rake config' to see complete project settings. | |
| app.name = 'AnotherTest' | |
| app.api_version = "16" | |
| end | |
| ➜ AnotherTest rake device | |
| Create ./build/Development-16/AndroidManifest.xml | |
| Compile ./app/main_activity.rb | |
| Create ./build/Development-16/lib/armeabi/libpayload.so | |
| Create ./build/Development-16/lib/armeabi/gdbserver | |
| Create ./build/Development-16/lib/armeabi/gdb.setup | |
| Create ./build/Development-16/classes/com/yourcompany/anothertest/MainActivity.class | |
| Create ./build/Development-16/classes.dex | |
| Create ./build/Development-16/AnotherTest.apk | |
| Sign ./build/Development-16/AnotherTest.apk | |
| Align ./build/Development-16/AnotherTest.apk | |
| Install ./build/Development-16/AnotherTest.apk | |
| 6675 KB/s (635849 bytes in 0.093s) | |
| Start com.yourcompany.anothertest/.MainActivity | |
| --------- beginning of /dev/log/main | |
| --------- beginning of /dev/log/system | |
| E/AndroidRuntime(26046): FATAL EXCEPTION: main | |
| E/AndroidRuntime(26046): Process: com.yourcompany.anothertest, PID: 26046 | |
| E/AndroidRuntime(26046): android.view.InflateException: Binary XML file line #30: Error inflating class com.android.internal.widget.ActionBarContainer | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.createView(LayoutInflater.java:620) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.rInflate(LayoutInflater.java:755) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.inflate(LayoutInflater.java:492) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.inflate(LayoutInflater.java:397) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.inflate(LayoutInflater.java:353) | |
| E/AndroidRuntime(26046): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:3287) | |
| E/AndroidRuntime(26046): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:3350) | |
| E/AndroidRuntime(26046): at com.android.internal.policy.impl.PhoneWindow.getDecorView(PhoneWindow.java:1731) | |
| E/AndroidRuntime(26046): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2861) | |
| E/AndroidRuntime(26046): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2270) | |
| E/AndroidRuntime(26046): at android.app.ActivityThread.access$800(ActivityThread.java:145) | |
| E/AndroidRuntime(26046): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1206) | |
| E/AndroidRuntime(26046): at android.os.Handler.dispatchMessage(Handler.java:102) | |
| E/AndroidRuntime(26046): at android.os.Looper.loop(Looper.java:136) | |
| E/AndroidRuntime(26046): at android.app.ActivityThread.main(ActivityThread.java:5140) | |
| E/AndroidRuntime(26046): at java.lang.reflect.Method.invokeNative(Native Method) | |
| E/AndroidRuntime(26046): at java.lang.reflect.Method.invoke(Method.java:515) | |
| E/AndroidRuntime(26046): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795) | |
| E/AndroidRuntime(26046): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:611) | |
| E/AndroidRuntime(26046): at dalvik.system.NativeStart.main(Native Method) | |
| E/AndroidRuntime(26046): Caused by: java.lang.reflect.InvocationTargetException | |
| E/AndroidRuntime(26046): at java.lang.reflect.Constructor.constructNative(Native Method) | |
| E/AndroidRuntime(26046): at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
| E/AndroidRuntime(26046): at android.view.LayoutInflater.createView(LayoutInflater.java:594) | |
| E/AndroidRuntime(26046): ... 20 more | |
| E/AndroidRuntime(26046): Caused by: android.content.res.Resources$NotFoundException: File res/drawable-mdpi/ic_allapps.png from drawable resource ID #0x10800bd | |
| E/AndroidRuntime(26046): at android.content.res.Resources.loadDrawable(Resources.java:2214) | |
| E/AndroidRuntime(26046): at android.content.res.TypedArray.getDrawable(TypedArray.java:602) | |
| E/AndroidRuntime(26046): at android.view.View.<init>(View.java:3561) | |
| E/AndroidRuntime(26046): at android.view.ViewGroup.<init>(ViewGroup.java:470) | |
| E/AndroidRuntime(26046): at android.widget.FrameLayout.<init>(FrameLayout.java:101) | |
| E/AndroidRuntime(26046): at android.widget.FrameLayout.<init>(FrameLayout.java:97) | |
| E/AndroidRuntime(26046): at com.android.internal.widget.ActionBarContainer.<init>(ActionBarContainer.java:52) | |
| E/AndroidRuntime(26046): ... 23 more | |
| E/AndroidRuntime(26046): Caused by: java.io.FileNotFoundException: res/drawable-mdpi/ic_allapps.png | |
| E/AndroidRuntime(26046): at android.content.res.AssetManager.openNonAssetNative(Native Method) | |
| E/AndroidRuntime(26046): at android.content.res.AssetManager.openNonAsset(AssetManager.java:427) | |
| E/AndroidRuntime(26046): at android.content.res.Resources.loadDrawable(Resources.java:2205) | |
| E/AndroidRuntime(26046): ... 29 more | |
| >> ^D% ➜ AnotherTest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| D/AndroidRuntime(28369): | |
| D/AndroidRuntime(28369): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<< | |
| D/AndroidRuntime(28369): CheckJNI is OFF | |
| D/dalvikvm(28369): Trying to load lib libjavacore.so 0x0 | |
| D/dalvikvm(28369): Added shared lib libjavacore.so 0x0 | |
| D/dalvikvm(28369): Trying to load lib libnativehelper.so 0x0 | |
| D/dalvikvm(28369): Added shared lib libnativehelper.so 0x0 | |
| D/dalvikvm(28369): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init | |
| D/dalvikvm(28369): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods | |
| D/AndroidRuntime(28369): Calling main entry com.android.commands.pm.Pm | |
| V/Zygote (28380): Switching descriptor 34 to /dev/null | |
| V/Zygote (28380): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=28380 uid=10009 gids={50009, 1028, 1015, 1023, 2001, 1035} | |
| D/ActivityThread(28380): handleBindApplication:com.android.defcontainer | |
| D/ActivityThread(28380): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28380): setTargetHeapMinFree:2097152 | |
| D/Finsky (21962): [1] PackageVerificationReceiver.onReceive: Verification requested, id = 57 | |
| W/ActivityManager( 836): No content provider found for permission revoke: file:///data/local/tmp/AnotherTest.apk | |
| D/Finsky (21962): [1] WorkerTask.onPreExecute: Verification Requested for id = 57, data=file:///data/local/tmp/AnotherTest.apk flags=114 fromVerificationActivity=false | |
| I/qtaguid (21962): Failed write_ctrl(u 76) res=-1 errno=22 | |
| I/qtaguid (21962): Untagging socket 76 failed errno=-22 | |
| W/NetworkManagementSocketTagger(21962): untagSocket(76) failed with errno -22 | |
| I/ElegantRequestDirector(21962): I/O exception (org.apache.http.NoHttpResponseException) caught when processing request: The target server failed to respond | |
| I/ElegantRequestDirector(21962): Retrying request | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| D/Finsky (21962): [1] 2.onResponse: Verification id=57 response=0 | |
| D/Finsky (21962): [1] PackageVerificationReceiver.onReceive: Verification requested, id = 57 | |
| W/ActivityManager( 836): No content provider found for permission revoke: file:///data/local/tmp/AnotherTest.apk | |
| I/PackageManager( 836): Copying native libraries to /data/app-lib/vmdl-1123070332 | |
| I/ActivityManager( 836): Force stopping com.yourcompany.anothertest appid=10132 user=-1: uninstall pkg | |
| I/PackageManager( 836): Package com.yourcompany.anothertest codePath changed from /data/app/com.yourcompany.anothertest-1.apk to /data/app/com.yourcompany.anothertest-2.apk; Retaining data and using new | |
| I/PackageManager( 836): Running dexopt on: com.yourcompany.anothertest | |
| D/dalvikvm(28397): DexOpt: 'Landroid/annotation/SuppressLint;' has an earlier definition; blocking out | |
| D/dalvikvm(28397): DexOpt: 'Landroid/annotation/TargetApi;' has an earlier definition; blocking out | |
| D/dalvikvm(28397): DexOpt: not verifying/optimizing 'Landroid/annotation/SuppressLint;': multiple definitions | |
| D/dalvikvm(28397): DexOpt: not verifying/optimizing 'Landroid/annotation/TargetApi;': multiple definitions | |
| D/dalvikvm(28397): DexOpt: load 5ms, verify+opt 1ms, 134996 bytes | |
| I/ActivityManager( 836): Force stopping com.yourcompany.anothertest appid=10132 user=-1: update pkg | |
| W/PackageManager( 836): Code path for pkg : com.yourcompany.anothertest changing from /data/app/com.yourcompany.anothertest-1.apk to /data/app/com.yourcompany.anothertest-2.apk | |
| W/PackageManager( 836): Resource path for pkg : com.yourcompany.anothertest changing from /data/app/com.yourcompany.anothertest-1.apk to /data/app/com.yourcompany.anothertest-2.apk | |
| I/ActivityManager( 836): Killing 27751:org.cyanogenmod.voiceplus/u0a81 (adj 15): empty #17 | |
| I/ActivityManager( 836): Force stopping com.yourcompany.anothertest appid=10132 user=0: pkg removed | |
| I/InputReader( 836): Reconfiguring input devices. changes=0x00000010 | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/InputReader( 836): Reconfiguring input devices. changes=0x00000010 | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| I/InputReader( 836): Reconfiguring input devices. changes=0x00000010 | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| D/BackupManagerService( 836): Received broadcast Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.yourcompany.anothertest flg=0x4000010 (has extras) } | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| D/AndroidRuntime(28369): Shutting down VM | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "sms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "smsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mms" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| I/PackageManager( 836): Action: "android.intent.action.SENDTO" | |
| I/PackageManager( 836): Category: "android.intent.category.DEFAULT" | |
| I/PackageManager( 836): Scheme: "mmsto" | |
| I/PackageManager( 836): Adding preferred activity ComponentInfo{com.google.android.talk/com.google.android.apps.hangouts.phone.BabelHomeActivity} for user 0 : | |
| D/BackupManagerService( 836): Received broadcast Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.yourcompany.anothertest flg=0x4000010 (has extras) } | |
| V/BackupManagerService( 836): removePackageParticipantsLocked: uid=10132 #1 | |
| V/BackupManagerService( 836): addPackageParticipantsLocked: #1 | |
| W/InputMethodInfo( 836): Duplicated subtype definition found: , voice | |
| W/Launcher( 1245): setApplicationContext called twice! old=com.android.launcher3.LauncherApplication@41936388 new=com.android.launcher3.LauncherApplication@41936388 | |
| V/Zygote (28408): Switching descriptor 34 to /dev/null | |
| V/Zygote (28408): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.android.keychain for broadcast com.android.keychain/.KeyChainBroadcastReceiver: pid=28408 uid=1000 gids={41000, 1028, 1015, 3002, 3001, 3003, 1007, 1021, 3004, 3005, 1000, 3010, 1023, 1010} | |
| D/ActivityThread(28408): handleBindApplication:com.android.keychain | |
| D/ActivityThread(28408): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28408): setTargetHeapMinFree:2097152 | |
| W/ContextImpl(28408): Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1544 android.content.ContextWrapper.startService:494 android.content.ContextWrapper.startService:494 com.android.keychain.KeyChainBroadcastReceiver.onReceive:12 android.app.ActivityThread.handleReceiver:2439 | |
| I/ActivityManager( 836): Killing 27522:com.google.android.gms.unstable/u0a13 (adj 15): empty #17 | |
| V/Zygote (28423): Switching descriptor 34 to /dev/null | |
| V/Zygote (28423): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.google.android.apps.docs for broadcast com.google.android.apps.docs/.receivers.AppPackageAddRemoveReceiver: pid=28423 uid=10044 gids={50044, 1006, 3003, 1028, 1015} | |
| D/ActivityThread(28423): handleBindApplication:com.google.android.apps.docs | |
| D/ActivityThread(28423): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28423): setTargetHeapMinFree:2097152 | |
| D/AndroidRuntime(28406): | |
| D/AndroidRuntime(28406): >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<< | |
| D/AndroidRuntime(28406): CheckJNI is OFF | |
| D/dalvikvm(28406): Trying to load lib libjavacore.so 0x0 | |
| D/dalvikvm(28406): Added shared lib libjavacore.so 0x0 | |
| D/dalvikvm(28406): Trying to load lib libnativehelper.so 0x0 | |
| D/dalvikvm(28406): Added shared lib libnativehelper.so 0x0 | |
| D/dalvikvm(28406): No JNI_OnLoad found in libnativehelper.so 0x0, skipping init | |
| D/dalvikvm(28406): Note: class Landroid/app/ActivityManagerNative; has 180 unimplemented (abstract) methods | |
| D/AndroidRuntime(28406): Calling main entry com.android.commands.am.Am | |
| I/ActivityManager( 836): START u0 {act=android.intent.action.MAIN flg=0x10000000 cmp=com.yourcompany.anothertest/.MainActivity} from pid 28406 | |
| W/WindowManager( 836): Token{4282dc50 ActivityRecord{41982d60 u0 com.yourcompany.anothertest/.MainActivity t200}} failed creating starting window | |
| W/WindowManager( 836): android.view.InflateException: Binary XML file line #30: Error inflating class <unknown> | |
| W/WindowManager( 836): at android.view.LayoutInflater.createView(LayoutInflater.java:620) | |
| W/WindowManager( 836): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696) | |
| W/WindowManager( 836): at android.view.LayoutInflater.rInflate(LayoutInflater.java:755) | |
| W/WindowManager( 836): at android.view.LayoutInflater.inflate(LayoutInflater.java:492) | |
| W/WindowManager( 836): at android.view.LayoutInflater.inflate(LayoutInflater.java:397) | |
| W/WindowManager( 836): at android.view.LayoutInflater.inflate(LayoutInflater.java:353) | |
| W/WindowManager( 836): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:3287) | |
| W/WindowManager( 836): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:3350) | |
| W/WindowManager( 836): at com.android.internal.policy.impl.PhoneWindow.getDecorView(PhoneWindow.java:1731) | |
| W/WindowManager( 836): at com.android.internal.policy.impl.PhoneWindowManager.addStartingWindow(PhoneWindowManager.java:2185) | |
| W/WindowManager( 836): at com.android.server.wm.WindowManagerService$H.handleMessage(WindowManagerService.java:7339) | |
| W/WindowManager( 836): at android.os.Handler.dispatchMessage(Handler.java:102) | |
| W/WindowManager( 836): at android.os.Looper.loop(Looper.java:136) | |
| W/WindowManager( 836): at android.os.HandlerThread.run(HandlerThread.java:61) | |
| W/WindowManager( 836): Caused by: java.lang.reflect.InvocationTargetException | |
| W/WindowManager( 836): at java.lang.reflect.Constructor.constructNative(Native Method) | |
| W/WindowManager( 836): at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
| W/WindowManager( 836): at android.view.LayoutInflater.createView(LayoutInflater.java:594) | |
| W/WindowManager( 836): ... 13 more | |
| W/WindowManager( 836): Caused by: android.content.res.Resources$NotFoundException: File res/drawable-mdpi/ic_allapps.png from drawable resource ID #0x10800bd | |
| W/WindowManager( 836): at android.content.res.Resources.loadDrawable(Resources.java:2214) | |
| W/WindowManager( 836): at android.content.res.TypedArray.getDrawable(TypedArray.java:602) | |
| W/WindowManager( 836): at android.view.View.<init>(View.java:3561) | |
| W/WindowManager( 836): at android.view.ViewGroup.<init>(ViewGroup.java:470) | |
| W/WindowManager( 836): at android.widget.FrameLayout.<init>(FrameLayout.java:101) | |
| W/WindowManager( 836): at android.widget.FrameLayout.<init>(FrameLayout.java:97) | |
| W/WindowManager( 836): at com.android.internal.widget.ActionBarContainer.<init>(ActionBarContainer.java:52) | |
| W/WindowManager( 836): ... 16 more | |
| W/WindowManager( 836): Caused by: java.io.FileNotFoundException: res/drawable-mdpi/ic_allapps.png | |
| W/WindowManager( 836): at android.content.res.AssetManager.openNonAssetNative(Native Method) | |
| W/WindowManager( 836): at android.content.res.AssetManager.openNonAsset(AssetManager.java:427) | |
| W/WindowManager( 836): at android.content.res.Resources.loadDrawable(Resources.java:2205) | |
| W/WindowManager( 836): ... 22 more | |
| D/AndroidRuntime(28406): Shutting down VM | |
| V/Zygote (28451): Switching descriptor 34 to /dev/null | |
| V/Zygote (28451): Switching descriptor 9 to /dev/null | |
| D/dalvikvm(28451): Late-enabling CheckJNI | |
| I/ActivityManager( 836): Start proc com.yourcompany.anothertest for activity com.yourcompany.anothertest/.MainActivity: pid=28451 uid=10132 gids={50132, 3003} | |
| D/ActivityThread(28451): handleBindApplication:com.yourcompany.anothertest | |
| D/ActivityThread(28451): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28451): setTargetHeapMinFree:2097152 | |
| D/dalvikvm(28451): Trying to load lib /data/app-lib/com.yourcompany.anothertest-2/libpayload.so 0x419365d0 | |
| D/dalvikvm(28451): Added shared lib /data/app-lib/com.yourcompany.anothertest-2/libpayload.so 0x419365d0 | |
| D/com/yourcompany/anothertest(28451): Loading payload | |
| D/com/yourcompany/anothertest(28451): RubyVM 0x75433c78 created | |
| D/com/yourcompany/anothertest(28451): Initializing RubyMotion runtime | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `class' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `equal?' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `eql?' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `method_missing' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `dup' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `clone' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `ancestors' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `attr' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `attr_reader' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `attr_writer' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `attr_accessor' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `include' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `included' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `method_added' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `append_features' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `included_modules' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `instance_methods' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `public_instance_methods' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `protected_instance_methods' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `private_instance_methods' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inherited' on Class | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `superclass' on Class | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `===' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `instance_of?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `kind_of?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `is_a?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `proc' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `lambda' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `respond_to?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `nil?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `hash' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `send' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `tap' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `sprintf' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `format' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `methods' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `instance_variable_get' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `instance_variable_set' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `instance_variable_defined?' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `__dump_reference_tables__' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_i' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_f' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_a' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `&' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `|' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `^' on NilClass | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `call' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `===' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `yield' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_proc' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `arity' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `clone' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `dup' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `eql?' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `binding' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `lambda?' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `weak!' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `owner' on Proc | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Boolean | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `&' on Boolean | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `|' on Boolean | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `^' on Boolean | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `-@' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `+' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `-' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `*' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `/' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<=' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `>' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `>=' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_f' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `times' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `zero?' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `size' on Fixnum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `-@' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `+' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `-' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `*' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `/' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<=' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `>' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `>=' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_f' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `abs' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `zero?' on Float | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `+' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `-' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `*' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `/' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Bignum | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `dup' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `clone' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_sym' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `intern' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_str' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `+' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `*' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `%' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<=>' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `casecmp' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `size' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `match' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `=~' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `scan' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `clear' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `concat' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<<' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `empty?' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `replace' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `upcase!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `upcase' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `downcase!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `downcase' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `swapcase!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `swapcase' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `capitalize!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `capitalize' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `reverse!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `reverse' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `start_with?' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `end_with?' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `include?' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `index' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `rindex' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `strip' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `strip!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `lstrip' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `lstrip!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `rstrip' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `rstrip!' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `insert' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each_char' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `chars' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each_line' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `lines' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_i' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_f' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `hex' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `ord' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `oct' on String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on java.lang.String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on java.lang.String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on java.lang.String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on java.lang.String | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on Symbol | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Symbol | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_proc' on Symbol | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_a' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `entries' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each' on Enumerator | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each_index' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `reverse_each' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `+' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `<<' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `push' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `at' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]=' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `first' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `last' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_a' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `values_at' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `size' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `length' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `empty?' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `clear' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `map' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `map!' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `collect' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `collect!' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `select' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `select!' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `keep_if' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `replace' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `concat' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `insert' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `unshift' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `join' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `index' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `find_index' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `include?' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `delete_at' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `delete' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `compact' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `compact!' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `reject' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `reject!' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `delete_if' on Array | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `keys' on Hash | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `values' on Hash | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]' on Hash | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]=' on Hash | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `p' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `puts' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `print' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `eql?' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `begin' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `end' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `exclude_end?' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `each' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `include?' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `member?' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `===' on Range | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `start' on Thread | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `current' on Thread | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `sleep' on Module | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `log_exceptions' on Exception | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `log_exceptions=' on Exception | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Exception | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on Exception | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `rand' on Object | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `match' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `=~' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `==' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `!=' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `===' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `source' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `casefold?' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `options' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `names' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `named_captures' on Regexp | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `[]' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_a' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `captures' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `regexp' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `size' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `length' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `offset' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `begin' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `end' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `inspect' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `to_s' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `string' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `pre_match' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `post_match' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `names' on MatchData | |
| D/com/yourcompany/anothertest(28451): define pure-Ruby method `values_at' on MatchData | |
| D/com/yourcompany/anothertest(28451): java path lookup: android/app/Activity | |
| D/com/yourcompany/anothertest(28451): define class 0xfad0002d (com/yourcompany/anothertest/MainActivity) | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class android/app/Activity | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class android/view/ContextThemeWrapper | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class android/content/ContextWrapper | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class android/content/Context | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class java/lang/Object | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class Meta | |
| D/com/yourcompany/anothertest(28451): lookup sel inherited in class com/rubymotion/Class | |
| D/com/yourcompany/anothertest(28451): dispatch <com/rubymotion/Class 0x1e900031> sel inherited sig <ruby> argc 1 | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class com/yourcompany/anothertest/MainActivity | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class android/app/Activity | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class android/view/ContextThemeWrapper | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class android/content/ContextWrapper | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class android/content/Context | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class java/lang/Object | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class Meta | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class com/rubymotion/Class | |
| D/com/yourcompany/anothertest(28451): lookup sel method_added in class com/rubymotion/Module | |
| D/com/yourcompany/anothertest(28451): dispatch <com/rubymotion/Module 0x1d2004da> sel method_added sig <ruby> argc 1 | |
| D/com/yourcompany/anothertest(28451): prepare native method onCreate class MainActivity signature (Landroid/os/Bundle;)V imp 0x75491ffc | |
| D/com/yourcompany/anothertest(28451): register native method onCreate class 0xd9100019 (com/yourcompany/anothertest/MainActivity) imp 0x75491ffc signature (Landroid/os/Bundle;)V | |
| D/com/yourcompany/anothertest(28451): Loaded payload | |
| D/com/yourcompany/anothertest(28451): Starting REPL loop | |
| D/com/yourcompany/anothertest(28451): lookup sel onCreate in class android/app/Activity | |
| D/com/yourcompany/anothertest(28451): dispatch <android/app/Activity 0xdb500019> sel onCreate sig (Landroid/os/Bundle;)V argc 1 | |
| D/AndroidRuntime(28451): Shutting down VM | |
| W/dalvikvm(28451): threadid=1: thread exiting with uncaught exception (group=0x4166adb8) | |
| E/AndroidRuntime(28451): FATAL EXCEPTION: main | |
| E/AndroidRuntime(28451): Process: com.yourcompany.anothertest, PID: 28451 | |
| E/AndroidRuntime(28451): android.view.InflateException: Binary XML file line #30: Error inflating class com.android.internal.widget.ActionBarContainer | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.createView(LayoutInflater.java:620) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.rInflate(LayoutInflater.java:755) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.inflate(LayoutInflater.java:492) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.inflate(LayoutInflater.java:397) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.inflate(LayoutInflater.java:353) | |
| E/AndroidRuntime(28451): at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:3287) | |
| E/AndroidRuntime(28451): at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:3350) | |
| E/AndroidRuntime(28451): at com.android.internal.policy.impl.PhoneWindow.getDecorView(PhoneWindow.java:1731) | |
| E/AndroidRuntime(28451): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2861) | |
| E/AndroidRuntime(28451): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2270) | |
| E/AndroidRuntime(28451): at android.app.ActivityThread.access$800(ActivityThread.java:145) | |
| E/AndroidRuntime(28451): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1206) | |
| E/AndroidRuntime(28451): at android.os.Handler.dispatchMessage(Handler.java:102) | |
| E/AndroidRuntime(28451): at android.os.Looper.loop(Looper.java:136) | |
| E/AndroidRuntime(28451): at android.app.ActivityThread.main(ActivityThread.java:5140) | |
| E/AndroidRuntime(28451): at java.lang.reflect.Method.invokeNative(Native Method) | |
| E/AndroidRuntime(28451): at java.lang.reflect.Method.invoke(Method.java:515) | |
| E/AndroidRuntime(28451): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795) | |
| E/AndroidRuntime(28451): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:611) | |
| E/AndroidRuntime(28451): at dalvik.system.NativeStart.main(Native Method) | |
| E/AndroidRuntime(28451): Caused by: java.lang.reflect.InvocationTargetException | |
| E/AndroidRuntime(28451): at java.lang.reflect.Constructor.constructNative(Native Method) | |
| E/AndroidRuntime(28451): at java.lang.reflect.Constructor.newInstance(Constructor.java:423) | |
| E/AndroidRuntime(28451): at android.view.LayoutInflater.createView(LayoutInflater.java:594) | |
| E/AndroidRuntime(28451): ... 20 more | |
| E/AndroidRuntime(28451): Caused by: android.content.res.Resources$NotFoundException: File res/drawable-mdpi/ic_allapps.png from drawable resource ID #0x10800bd | |
| E/AndroidRuntime(28451): at android.content.res.Resources.loadDrawable(Resources.java:2214) | |
| E/AndroidRuntime(28451): at android.content.res.TypedArray.getDrawable(TypedArray.java:602) | |
| E/AndroidRuntime(28451): at android.view.View.<init>(View.java:3561) | |
| E/AndroidRuntime(28451): at android.view.ViewGroup.<init>(ViewGroup.java:470) | |
| E/AndroidRuntime(28451): at android.widget.FrameLayout.<init>(FrameLayout.java:101) | |
| E/AndroidRuntime(28451): at android.widget.FrameLayout.<init>(FrameLayout.java:97) | |
| E/AndroidRuntime(28451): at com.android.internal.widget.ActionBarContainer.<init>(ActionBarContainer.java:52) | |
| E/AndroidRuntime(28451): ... 23 more | |
| E/AndroidRuntime(28451): Caused by: java.io.FileNotFoundException: res/drawable-mdpi/ic_allapps.png | |
| E/AndroidRuntime(28451): at android.content.res.AssetManager.openNonAssetNative(Native Method) | |
| E/AndroidRuntime(28451): at android.content.res.AssetManager.openNonAsset(AssetManager.java:427) | |
| E/AndroidRuntime(28451): at android.content.res.Resources.loadDrawable(Resources.java:2205) | |
| E/AndroidRuntime(28451): ... 29 more | |
| W/ActivityManager( 836): Force finishing activity com.yourcompany.anothertest/.MainActivity | |
| W/GAV2 (28423): Thread[main,5,main]: Need to call initialize() and be in fallback mode to start dispatch. | |
| I/ConfigFetchService( 6633): PackageReceiver: Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.yourcompany.anothertest flg=0x4000010 cmp=com.google.android.gms/.config.ConfigFetchService$PackageReceiver (has extras) } | |
| I/ActivityManager( 836): Delay finish: com.google.android.gms/.config.ConfigFetchService$PackageReceiver | |
| I/ConfigService( 1755): onCreate | |
| I/ConfigService( 1755): onBind for Intent { act=com.google.android.gms.config.UPDATE pkg=com.google.android.gms } action com.google.android.gms.config.UPDATE | |
| I/ConfigService( 1755): onBind returning update interface | |
| I/ConfigFetchService( 6633): onStartCommand Intent { act=android.intent.action.PACKAGE_REMOVED dat=package:com.yourcompany.anothertest cmp=com.google.android.gms/.config.ConfigFetchService (has extras) } | |
| I/ConfigService( 1755): onBind for Intent { act=com.google.android.gms.config.START pkg=com.google.android.gms } action com.google.android.gms.config.START | |
| I/ConfigService( 1755): onBind returning config service | |
| I/ActivityManager( 836): Resuming delayed broadcast | |
| I/ConfigFetchService( 6633): service connected | |
| I/ConfigClient( 6633): service connected | |
| I/ConfigService( 1755): onDestroy | |
| D/PackageBroadcastService( 6633): Received broadcast action=android.intent.action.PACKAGE_REMOVED and uri=com.yourcompany.anothertest | |
| I/ActivityManager( 836): Delay finish: com.google.android.gms/.drive.api.DriveSystemBroadcastReceiver | |
| I/ActivityManager( 836): Resuming delayed broadcast | |
| V/Zygote (28486): Switching descriptor 34 to /dev/null | |
| V/Zygote (28486): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc org.fdroid.fdroid for broadcast org.fdroid.fdroid/.PackageRemovedReceiver: pid=28486 uid=10116 gids={50116, 3003, 3002, 1028, 1015} | |
| D/ActivityThread(28486): handleBindApplication:org.fdroid.fdroid | |
| D/ActivityThread(28486): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28486): setTargetHeapMinFree:2097152 | |
| D/FDroid (28486): Update scheduler alarm not set | |
| D/BluetoothManagerService( 836): Message: 20 | |
| D/BluetoothManagerService( 836): Added callback: android.bluetooth.IBluetoothManagerCallback$Stub$Proxy@41fd1258:true | |
| D/org.fdroid.fdroid.data.InstalledAppCacheUpdater(28486): Preparing to cache installed info for 162 new apps. | |
| D/org.fdroid.fdroid.data.InstalledAppCacheUpdater(28486): Finished executing 162 CRUD operations on installed app cache. | |
| D/org.fdroid.fdroid.data.InstalledAppCacheUpdater(28486): Took 140ms to compare the installed app cache with PackageManager. | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| W/ActivityManager( 836): Activity pause timeout for ActivityRecord{41982d60 u0 com.yourcompany.anothertest/.MainActivity t200 f} | |
| I/Timeline( 1245): Timeline: Activity_idle id: android.os.BinderProxy@41927b80 time:570387433 | |
| I/ActivityManager( 836): Killing 27837:com.android.deskclock/u0a42 (adj 15): empty #17 | |
| I/MemorizingTrustManager(28486): getAppKeyStore(/data/data/org.fdroid.fdroid/app_KeyStore/KeyStore.bks) - file does not exist | |
| D/FDroid (28486): PackageReceiver received [action = 'android.intent.action.PACKAGE_REMOVED', data = 'package:com.yourcompany.anothertest'] | |
| D/FDroid (28486): Discarding since this PACKAGE_REMOVED is just a PACKAGE_REPLACED | |
| I/org.fdroid.fdroid.data.InstalledAppCacheUpdater(28486): Installed app cache has changed, notifying content providers (so they can update the relevant views). | |
| I/ActivityManager( 836): Killing 27409:com.google.android.music:main/u0a65 (adj 15): empty #17 | |
| F/ActivityManager( 836): Service ServiceRecord{41b2ba50 u0 com.google.android.music/.net.NetworkMonitor} in process ProcessRecord{41d43118 27409:com.google.android.music:main/u0a65} not same as in map: null | |
| F/ActivityManager( 836): Service ServiceRecord{41972c18 u0 com.google.android.music/.preferences.MusicPreferenceService$MusicPreferenceServiceBinder} in process ProcessRecord{41d43118 27409:com.google.android.music:main/u0a65} not same as in map: null | |
| V/Zygote (28532): Switching descriptor 34 to /dev/null | |
| V/Zygote (28532): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.google.android.partnersetup for broadcast com.google.android.partnersetup/.RlzPingBroadcastReceiver: pid=28532 uid=10016 gids={50016, 3003} | |
| D/ActivityThread(28532): handleBindApplication:com.google.android.partnersetup | |
| D/ActivityThread(28532): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28532): setTargetHeapMinFree:2097152 | |
| V/Zygote (28548): Switching descriptor 34 to /dev/null | |
| V/Zygote (28548): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc org.cyanogenmod.themes.provider for broadcast org.cyanogenmod.themes.provider/.AppReceiver: pid=28548 uid=10025 gids={50025, 3003} | |
| I/ActivityManager( 836): Killing 27432:com.cyngn.fota/u0a3 (adj 15): empty #17 | |
| D/ActivityThread(28548): handleBindApplication:org.cyanogenmod.themes.provider | |
| D/ActivityThread(28548): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28548): setTargetHeapMinFree:2097152 | |
| V/Zygote (28561): Switching descriptor 34 to /dev/null | |
| V/Zygote (28561): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc org.cyanogenmod.voiceplus for broadcast org.cyanogenmod.voiceplus/.PackageChangeReceiver: pid=28561 uid=10081 gids={50081, 3003} | |
| I/ActivityManager( 836): Killing 27491:com.google.android.setupwizard/u0a22 (adj 15): empty #17 | |
| D/ThemesProvider(28548): Deleted 0 | |
| D/ActivityThread(28561): handleBindApplication:org.cyanogenmod.voiceplus | |
| D/ActivityThread(28561): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28561): setTargetHeapMinFree:2097152 | |
| I/ActivityManager( 836): Killing 27506:com.tinder/u0a118 (adj 15): empty #17 | |
| I/IcingCorporaProvider(17292): Updating corpora: APPS=com.yourcompany.anothertest, CONTACTS=MAYBE | |
| I/IcingCorporaProvider(17292): UpdateCorporaTask done [took 33 ms] updated apps [took 33 ms] | |
| I/ConfigFetchService( 6633): PackageReceiver: Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.yourcompany.anothertest flg=0x4000010 cmp=com.google.android.gms/.config.ConfigFetchService$PackageReceiver (has extras) } | |
| I/ConfigService( 1755): onCreate | |
| I/ConfigService( 1755): onBind for Intent { act=com.google.android.gms.config.UPDATE pkg=com.google.android.gms } action com.google.android.gms.config.UPDATE | |
| I/ConfigFetchService( 6633): onStartCommand Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.yourcompany.anothertest cmp=com.google.android.gms/.config.ConfigFetchService (has extras) } | |
| I/ConfigFetchService( 6633): launchTask | |
| I/ConfigService( 1755): onBind returning update interface | |
| I/ConfigService( 1755): onBind for Intent { act=com.google.android.gms.config.START pkg=com.google.android.gms } action com.google.android.gms.config.START | |
| I/ConfigService( 1755): onBind returning config service | |
| I/ConfigFetchService( 6633): service connected | |
| I/ConfigClient( 6633): service connected | |
| D/PackageBroadcastService( 6633): Received broadcast action=android.intent.action.PACKAGE_ADDED and uri=com.yourcompany.anothertest | |
| D/FDroid (28486): PackageReceiver received [action = 'android.intent.action.PACKAGE_ADDED', data = 'package:com.yourcompany.anothertest'] | |
| D/FDroid (28486): Discarding since this PACKAGE_ADDED is just a PACKAGE_REPLACED | |
| I/PeopleContactsSync( 6633): CP2 sync disabled | |
| I/GoogleHttpClient( 6633): Falling back to old SSLCertificateSocketFactory | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| I/ConfigFetchService( 6633): fetch service done; releasing wakelock | |
| I/ConfigFetchService( 6633): stopping self | |
| I/ConfigService( 1755): onDestroy | |
| W/Launcher( 1245): setApplicationContext called twice! old=com.android.launcher3.LauncherApplication@41936388 new=com.android.launcher3.LauncherApplication@41936388 | |
| D/FDroid (28486): PackageReceiver received [action = 'android.intent.action.PACKAGE_REPLACED', data = 'package:com.yourcompany.anothertest'] | |
| D/PackageBroadcastService( 6633): Received broadcast action=android.intent.action.PACKAGE_REPLACED and uri=com.yourcompany.anothertest | |
| I/PeopleContactsSync( 6633): CP2 sync disabled | |
| D/FDroid (28486): Updating installed app info for 'com.yourcompany.anothertest' to v1 (1.0) | |
| V/Zygote (28586): Switching descriptor 34 to /dev/null | |
| V/Zygote (28586): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.shazam.android for broadcast com.shazam.android/.receiver.AppUpgradeReceiver: pid=28586 uid=10121 gids={50121, 3003, 1028, 1015} | |
| D/ActivityThread(28586): handleBindApplication:com.shazam.android | |
| D/ActivityThread(28586): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28586): setTargetHeapMinFree:2097152 | |
| I/dalvikvm(28586): Could not find method javax.xml.stream.XMLInputFactory.newInstance, referenced from method org.simpleframework.xml.stream.StreamProvider.<init> | |
| W/dalvikvm(28586): VFY: unable to resolve static method 48235: Ljavax/xml/stream/XMLInputFactory;.newInstance ()Ljavax/xml/stream/XMLInputFactory; | |
| D/dalvikvm(28586): VFY: replacing opcode 0x71 at 0x0003 | |
| W/dalvikvm(28586): VFY: unable to find class referenced in signature (Ljavax/xml/stream/XMLEventReader;) | |
| W/dalvikvm(28586): VFY: unable to find class referenced in signature (Ljavax/xml/stream/XMLEventReader;) | |
| I/dalvikvm(28586): Could not find method javax.xml.stream.XMLInputFactory.createXMLEventReader, referenced from method org.simpleframework.xml.stream.StreamProvider.provide | |
| W/dalvikvm(28586): VFY: unable to resolve virtual method 48233: Ljavax/xml/stream/XMLInputFactory;.createXMLEventReader (Ljava/io/InputStream;)Ljavax/xml/stream/XMLEventReader; | |
| D/dalvikvm(28586): VFY: replacing opcode 0x6e at 0x0002 | |
| I/dalvikvm(28586): Could not find method javax.xml.stream.XMLInputFactory.createXMLEventReader, referenced from method org.simpleframework.xml.stream.StreamProvider.provide | |
| W/dalvikvm(28586): VFY: unable to resolve virtual method 48234: Ljavax/xml/stream/XMLInputFactory;.createXMLEventReader (Ljava/io/Reader;)Ljavax/xml/stream/XMLEventReader; | |
| D/dalvikvm(28586): VFY: replacing opcode 0x6e at 0x0002 | |
| D/dalvikvm(28586): Trying to load lib /data/app-lib/com.shazam.android-2/libShazamMRE_2f22ae7.so 0x41950f48 | |
| D/dalvikvm(28586): Added shared lib /data/app-lib/com.shazam.android-2/libShazamMRE_2f22ae7.so 0x41950f48 | |
| D/dalvikvm(28586): No JNI_OnLoad found in /data/app-lib/com.shazam.android-2/libShazamMRE_2f22ae7.so 0x41950f48, skipping init | |
| W/Settings(28586): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value. | |
| D/dalvikvm(28586): Trying to load lib /data/app-lib/com.shazam.android-2/libmp.so 0x41950f48 | |
| D/dalvikvm(28586): Added shared lib /data/app-lib/com.shazam.android-2/libmp.so 0x41950f48 | |
| D/dalvikvm(28586): No JNI_OnLoad found in /data/app-lib/com.shazam.android-2/libmp.so 0x41950f48, skipping init | |
| D/LogFetchServiceManager( 1790): Received entry added | |
| I/ActivityManager( 836): Killing 27560:fr.meteo/u0a112 (adj 15): empty #17 | |
| D/LogFetchServiceManager( 1790): Received entry added | |
| D/LogFetchServiceManager( 1790): Received entry added | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| W/GAV2 (28423): Thread[main,5,main]: dispatch call queued. Need to call GAServiceManager.getInstance().initialize(). | |
| I/ActivityManager( 836): Killing 27583:com.etoro.mobileclient/u0a126 (adj 15): empty #17 | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| I/GAV2 (28423): Thread[GAThread,5,main]: No campaign data found. | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| I/GAV3 (27447): Thread[GAThread,5,main]: No campaign data found. | |
| E/dalvikvm(27447): Could not find class 'android.support.v4.app.FragmentActivity', referenced from method com.google.android.gms.common.GooglePlayServicesUtil.showErrorDialogFragment | |
| W/dalvikvm(27447): VFY: unable to resolve instanceof 136 (Landroid/support/v4/app/FragmentActivity;) in Lcom/google/android/gms/common/GooglePlayServicesUtil; | |
| D/dalvikvm(27447): VFY: replacing opcode 0x20 at 0x0008 | |
| E/dalvikvm(27447): Could not find class 'android.support.v4.app.FragmentActivity', referenced from method com.google.android.gms.common.GooglePlayServicesUtil.showErrorDialogFragment | |
| W/dalvikvm(27447): VFY: unable to resolve check-cast 136 (Landroid/support/v4/app/FragmentActivity;) in Lcom/google/android/gms/common/GooglePlayServicesUtil; | |
| D/dalvikvm(27447): VFY: replacing opcode 0x1f at 0x000c | |
| W/GA-SERVICE( 6633): Thread[Thread-8511,5,main]: Using destination https://ssl.google-analytics.com | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| W/ActivityManager( 836): Activity destroy timeout for ActivityRecord{41982d60 u0 com.yourcompany.anothertest/.MainActivity t200 f} | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| V/Zygote (28630): Switching descriptor 34 to /dev/null | |
| V/Zygote (28630): Switching descriptor 9 to /dev/null | |
| I/ActivityManager( 836): Start proc com.google.android.talk for broadcast com.google.android.talk/com.google.android.apps.hangouts.realtimechat.RealTimeChatService$AlarmReceiver: pid=28630 uid=10053 gids={50053, 3003, 1028, 1015, 1006, 3002} | |
| D/ActivityThread(28630): handleBindApplication:com.google.android.talk | |
| D/ActivityThread(28630): setTargetHeapUtilization:0.75 | |
| D/ActivityThread(28630): setTargetHeapMinFree:2097152 | |
| D/dalvikvm(28630): Trying to load lib /data/app-lib/com.google.android.talk-2/libcrashreporter.so 0x4195a7c0 | |
| D/dalvikvm(28630): Added shared lib /data/app-lib/com.google.android.talk-2/libcrashreporter.so 0x4195a7c0 | |
| E/dalvikvm(28630): Could not find class 'android.app.Notification$Action$Builder', referenced from method f.a | |
| W/dalvikvm(28630): VFY: unable to resolve new-instance 401 (Landroid/app/Notification$Action$Builder;) in Lf; | |
| D/dalvikvm(28630): VFY: replacing opcode 0x22 at 0x0000 | |
| D/Finsky (21962): [1] 5.onFinished: Installation state replication succeeded. | |
| W/dalvikvm(28630): VFY: unable to find class referenced in signature ([Landroid/app/RemoteInput;) | |
| E/dalvikvm(28630): Could not find class 'android.app.RemoteInput[]', referenced from method f.a | |
| W/dalvikvm(28630): VFY: unable to resolve new-array 5475 ([Landroid/app/RemoteInput;) in Lf; | |
| D/dalvikvm(28630): VFY: replacing opcode 0x23 at 0x0005 | |
| D/dalvikvm(28630): DexOpt: unable to opt direct call 0x085a at 0x0e in Lf;.a | |
| D/dalvikvm(28630): DexOpt: unable to opt direct call 0x08a6 at 0x13 in Lf;.a | |
| I/Babel (28630): MmsConfig: mnc/mcc: 208/10 | |
| I/Babel (28630): MmsConfig.loadMmsSettings | |
| I/Babel (28630): MmsConfig.loadDeviceMmsSettings from API: mUserAgent=CyanogenMod, mUaProfUrl=http://www.google.com/oha/rdf/ua-profile-kila.xml | |
| I/Babel (28630): MmsConfig.loadFromDatabase | |
| E/SQLiteLog(28630): (1) no such table: mmsconfig | |
| I/Babel (28630): MmsConfig: no mmsconfig table android.database.sqlite.SQLiteException: no such table: mmsconfig (code 1): , while compiling: SELECT key, value, type FROM mmsconfig WHERE numeric=? | |
| I/Babel (28630): MmsConfig.loadFromResources | |
| E/Babel (28630): canonicalizeMccMnc: invalid mccmnc nullnull | |
| W/Babel (28630): MmsConfig: invalid key=userAgent or type=string | |
| W/Babel (28630): MmsConfig: invalid key=uaProfUrl or type=string | |
| I/Babel (28630): MmsConfig.loadMmsSettings: mUserAgent=CyanogenMod, mUaProfUrl=http://www.google.com/oha/rdf/ua-profile-kila.xml | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| I/Babel (28630): ApnsOta: OTA version -1 | |
| W/Settings(28630): Setting airplane_mode_on has moved from android.provider.Settings.System to android.provider.Settings.Global, returning read-only value. | |
| I/ActivityManager( 836): Killing 28238:com.google.android.apps.uploader/u0a64 (adj 15): empty #17 | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| W/GA-SERVICE( 6633): Thread[Thread-8511,5,main]: Exception sending hit: HttpHostConnectException | |
| W/GA-SERVICE( 6633): Thread[Thread-8511,5,main]: Connection to https://ssl.google-analytics.com refused | |
| W/GA-SERVICE( 6633): Thread[Thread-8511,5,main]: Empty hitIds passed to deleteHits. | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! | |
| E/JavaBinder( 836): !!! FAILED BINDER TRANSACTION !!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment