Titanium JIRA Archive
Appcelerator Community (AC)

[AC-4476] Hyperloop: Error creating proxy on Android

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionFixed
Resolution Date2016-10-01T17:09:37.000+0000
Affected Version/sn/a
Fix Version/sn/a
Componentsn/a
Labelsandroid
ReporterKai De Sutter
AssigneeShak Hossain
Created2016-09-19T12:40:35.000+0000
Updated2016-10-01T17:09:37.000+0000

Description

When requiring any kind of Android library, native or 3th party, in any of my apps (even vanilla), I receive an "Error creating proxy" error:
[ERROR] KrollProxy: (main) [14293,19746] Error creating proxy
[ERROR] KrollProxy: java.lang.NoSuchMethodException: <init> [class org.appcelerator.titanium.TiContext]
[ERROR] KrollProxy:     at java.lang.Class.getConstructor(Class.java:528)
[ERROR] KrollProxy:     at java.lang.Class.getConstructor(Class.java:492)
[ERROR] KrollProxy:     at org.appcelerator.kroll.KrollProxy.createDeprecatedProxy(KrollProxy.java:161)
[ERROR] KrollProxy:     at org.appcelerator.kroll.runtime.v8.V8Object.nativeFireEvent(Native Method)
[ERROR] KrollProxy:     at org.appcelerator.kroll.runtime.v8.V8Object.fireEvent(V8Object.java:62)
[ERROR] KrollProxy:     at org.appcelerator.kroll.KrollProxy.doFireEvent(KrollProxy.java:918)
[ERROR] KrollProxy:     at org.appcelerator.kroll.KrollProxy.handleMessage(KrollProxy.java:1141)
[ERROR] KrollProxy:     at org.appcelerator.titanium.proxy.TiViewProxy.handleMessage(TiViewProxy.java:357)
[ERROR] KrollProxy:     at ti.modules.titanium.ui.widget.listview.ListViewProxy.handleMessage(ListViewProxy.java:312)
[ERROR] KrollProxy:     at android.os.Handler.dispatchMessage(Handler.java:98)
[ERROR] KrollProxy:     at android.os.Looper.loop(Looper.java:234)
[ERROR] KrollProxy:     at android.app.ActivityThread.main(ActivityThread.java:5526)
[ERROR] KrollProxy:     at java.lang.reflect.Method.invoke(Native Method)
[ERROR] KrollProxy:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
[ERROR] KrollProxy:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
For example:
var SipManager = require("android.net.sip.SipManager");

Attachments

FileDateSize
log.log2016-09-20T00:04:10.000+000098084
screenshot-1.png2016-09-19T23:54:31.000+0000101053

Comments

  1. Sharif AbuDarda 2016-09-19

    Hello, Can you send a sample code or a sample project for us to test? We will test it in our environment and get back to you once we have tested it. Thanks.
  2. Kai De Sutter 2016-09-19

    Hi Sharif, It occurs even when compiling https://github.com/appcelerator/hyperloop-examples which makes me believe that there may be another issue. Also important perhaps is that I am testing with Android 6 in the emulator and on device. (updated environment in this ticket) When creating a new alloy project with only hyperloop enabled where I just add the following code:
       var View = require('android.view.View');
       
    So my index.js file looks like this:
       var View = require('android.view.View');
       
       function doClick(e) {
           alert($.label.text);
       }
       
       $.index.open();
       
    I get:
       kdesutter@KangaCoders-MacBook-Pro ~/projects/hyperloop_test  $ appc ti build -p android
       Appcelerator Command-Line Interface, version 5.5.0
       Copyright (c) 2014-2016, Appcelerator, Inc.  All Rights Reserved.
       
       9/20/2016, 1:51:07 AM
       
       Operating System
         Name                        = Mac OS X
         Version                     = 10.11.6
         Architecture                = 64bit
         # CPUs                      = 8
         Memory                      = 8589934592
       
       Node.js
         Node.js Version             = 0.12.7
         npm Version                 = 2.11.3
       
       Titanium CLI
         CLI Version                 = 5.0.9
       
       Titanium SDK
         SDK Version                 = 5.5.0.GA
         SDK Path                    = /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA
         Target Platform             = android
       
       Command
         /usr/local/bin/node /Users/kdesutter/.appcelerator/install/5.5.0/package/node_modules/titanium/lib/titanium.js build -p android --config-file /var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/build-1474329060306.json --log-level info --no-banner --project-dir /Users/kdesutter/Documents/Projects/hyperloop_test
       
       [INFO]  Auto selecting emulator that closest matches 6.0
       [INFO]  Auto selected emulator Custom Tablet - 6.0.0 - API 23 - 2560x1600 6.0 (Google APIs supported)
       [INFO]  Found Titanium module id=hyperloop version=1.2.6 platform=android deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6
       [INFO]  Found Titanium module id=ti.cloud version=3.2.8 platform=commonjs deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.8
       [INFO]  Found better matching module id=ti.cloud version=latest platform=commonjs deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.11
       [INFO]  Found Titanium plugin id=ti.alloy version=1.0 
       [INFO]  Found Titanium plugin id=hyperloop version=latest 
       [INFO]  Deploy type: development
       [INFO]  Building for target: emulator
       [INFO]  Building for emulator: Custom Tablet - 6.0.0 - API 23 - 2560x1600
       [INFO]  Targeting Android SDK API: 23
       [INFO]  Building for the following architectures: armeabi, armeabi-v7a, x86
       [INFO]  Signing with keystore: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/dev_keystore (tidev)
       [INFO]  Debugging disabled
       [INFO]  Profiler disabled
       [INFO]  Forcing rebuild: JavaScript encryption flag changed
       [INFO]    Was: true
       [INFO]    Now: false
       [INFO]  Found Alloy app in /Users/kdesutter/Documents/Projects/hyperloop_test/app
       [INFO]  Executing Alloy compile: /usr/local/bin/node /Users/kdesutter/.appcelerator/install/5.5.0/package/node_modules/alloy/bin/alloy compile /Users/kdesutter/Documents/Projects/hyperloop_test/app --config platform=android,version=0,simtype=none,devicefamily=none,deploytype=development,target=emulator
       [WARN]  Generated "/i18n" directory is not ignored by Git, please add it to your .gitignore
       [WARN]  Generated "/platform" directory is not ignored by Git, please add it to your .gitignore
       [INFO]   [config.json] config.json unchanged, using cached config.json...
       [INFO]  ----- MVC GENERATION -----
       [INFO]  [global style] loading from cache...
       [INFO]  [index.xml] view processing...
       [INFO]    style:      "index.tss"
       [INFO]    view:       "index.xml"
       [INFO]    controller: "index.js"
       [INFO]    created:    "Resources/android/alloy/controllers/index.js"
       [INFO]    created:     "Resources/android/alloy/styles/index.js"
       [INFO]   
       [INFO]  [app.js] using cached app.js...
       [INFO]   
       [INFO]  ----- OPTIMIZING -----
       [INFO]  - android/alloy.js
       [INFO]  - android/alloy/sync/localStorage.js
       [INFO]  - android/alloy/sync/properties.js
       [INFO]  - android/alloy/sync/sql.js
       [INFO]   
       [INFO]  Alloy compiled in 0.67778s
       [INFO]  Alloy compiler completed successfully
       [INFO]  Starting Hyperloop assembly
       [INFO]  [Hyperloop] Using system metabase cache file at /var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/hyperloop_android-23_metabase.322c9e79c8aab7a0dfa5ae0bfbce3f424c46f5f4.json.gz
       [INFO]  Finished Hyperloop assembly
       [INFO]  Launching emulator: Custom Tablet - 6.0.0 - API 23 - 2560x1600
       [INFO]  Emulator already running
       [WARN]  Overwriting file /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/assets/Resources/appicon.png
       [INFO]  Emulator is booted
       [INFO]  SD card not required, skipping mount check
       [INFO]  Emulator ready!
       [WARN]  Overwriting file /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/alloy_generated
       [INFO]  Processing JavaScript files
       [INFO]  Encrypting JavaScript files: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium_prep.macos "com.kangacoders.hyperlooptest" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/assets" "alloy/CFG.js" "app.js" "alloy/backbone.js" "alloy/constants.js" "alloy/controllers/BaseController.js" "alloy/controllers/index.js" "alloy/styles/index.js" "alloy/sync/localStorage.js" "alloy/sync/properties.js" "alloy/sync/sql.js" "alloy/underscore.js" "alloy/widget.js" "alloy.js" "hyperloop/android.accounts.Account.js" "hyperloop/android.accounts.js" "hyperloop/android.animation.Animator$AnimatorListener.js" "hyperloop/android.animation.Animator$AnimatorPauseListener.js" "hyperloop/android.animation.Animator.js" "hyperloop/android.animation.LayoutTransition$TransitionListener.js" "hyperloop/android.animation.LayoutTransition.js" "hyperloop/android.animation.StateListAnimator.js" "hyperloop/android.animation.TimeInterpolator.js" "hyperloop/android.animation.TypeEvaluator.js" "hyperloop/android.animation.ValueAnimator$AnimatorUpdateListener.js" "hyperloop/android.animation.ValueAnimator.js" "hyperloop/android.animation.js" "hyperloop/android.content.BroadcastReceiver$PendingResult.js" "hyperloop/android.content.BroadcastReceiver.js" "hyperloop/android.content.ClipData$Item.js" "hyperloop/android.content.ClipData.js" "hyperloop/android.content.ClipDescription.js" "hyperloop/android.content.ComponentCallbacks.js" "hyperloop/android.content.ComponentName.js" "hyperloop/android.content.ContentProvider$PipeDataWriter.js" "hyperloop/android.content.ContentProvider.js" "hyperloop/android.content.ContentProviderClient.js" "hyperloop/android.content.ContentResolver.js" "hyperloop/android.content.ContentValues.js" "hyperloop/android.content.Context.js" "hyperloop/android.content.Intent$FilterComparison.js" "hyperloop/android.content.Intent$ShortcutIconResource.js" "hyperloop/android.content.Intent.js" "hyperloop/android.content.IntentFilter$AuthorityEntry.js" "hyperloop/android.content.IntentFilter$MalformedMimeTypeException.js" "hyperloop/android.content.IntentFilter.js" "hyperloop/android.content.IntentSender$OnFinished.js" "hyperloop/android.content.IntentSender$SendIntentException.js" "hyperloop/android.content.IntentSender.js" "hyperloop/android.content.ServiceConnection.js" "hyperloop/android.content.SharedPreferences$Editor.js" "hyperloop/android.content.SharedPreferences$OnSharedPreferenceChangeListener.js" "hyperloop/android.content.SharedPreferences.js" "hyperloop/android.content.SyncInfo.js" "hyperloop/android.content.SyncRequest$Builder.js" "hyperloop/android.content.SyncRequest.js" "hyperloop/android.content.SyncStatusObserver.js" "hyperloop/android.content.js" "hyperloop/android.content.pm.ActivityInfo.js" "hyperloop/android.content.pm.ApplicationInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.ApplicationInfo.js" "hyperloop/android.content.pm.ComponentInfo.js" "hyperloop/android.content.pm.InstrumentationInfo.js" "hyperloop/android.content.pm.PackageInfo.js" "hyperloop/android.content.pm.PackageInstaller$Session.js" "hyperloop/android.content.pm.PackageInstaller$SessionCallback.js" "hyperloop/android.content.pm.PackageInstaller$SessionInfo.js" "hyperloop/android.content.pm.PackageInstaller$SessionParams.js" "hyperloop/android.content.pm.PackageInstaller.js" "hyperloop/android.content.pm.PackageItemInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.PackageItemInfo.js" "hyperloop/android.content.pm.PackageManager$NameNotFoundException.js" "hyperloop/android.content.pm.PackageManager.js" "hyperloop/android.content.pm.PermissionGroupInfo.js" "hyperloop/android.content.pm.PermissionInfo.js" "hyperloop/android.content.pm.ProviderInfo.js" "hyperloop/android.content.pm.ResolveInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.ResolveInfo.js" "hyperloop/android.content.pm.ServiceInfo.js" "hyperloop/android.content.pm.js" "hyperloop/android.content.res.AssetFileDescriptor$AutoCloseInputStream.js" "hyperloop/android.content.res.AssetFileDescriptor$AutoCloseOutputStream.js" "hyperloop/android.content.res.AssetFileDescriptor.js" "hyperloop/android.content.res.AssetManager$AssetInputStream.js" "hyperloop/android.content.res.AssetManager.js" "hyperloop/android.content.res.ColorStateList.js" "hyperloop/android.content.res.Configuration.js" "hyperloop/android.content.res.Resources$NotFoundException.js" "hyperloop/android.content.res.Resources$Theme.js" "hyperloop/android.content.res.Resources.js" "hyperloop/android.content.res.TypedArray.js" "hyperloop/android.content.res.XmlResourceParser.js" "hyperloop/android.content.res.js" "hyperloop/android.database.CharArrayBuffer.js" "hyperloop/android.database.ContentObserver.js" "hyperloop/android.database.Cursor.js" "hyperloop/android.database.DataSetObserver.js" "hyperloop/android.database.DatabaseErrorHandler.js" "hyperloop/android.database.js" "hyperloop/android.database.sqlite.SQLiteClosable.js" "hyperloop/android.database.sqlite.SQLiteCursorDriver.js" "hyperloop/android.database.sqlite.SQLiteDatabase$CursorFactory.js" "hyperloop/android.database.sqlite.SQLiteDatabase.js" "hyperloop/android.database.sqlite.SQLiteProgram.js" "hyperloop/android.database.sqlite.SQLiteQuery.js" "hyperloop/android.database.sqlite.SQLiteStatement.js" "hyperloop/android.database.sqlite.SQLiteTransactionListener.js" "hyperloop/android.database.sqlite.js" "hyperloop/android.graphics.Bitmap$CompressFormat.js" "hyperloop/android.graphics.Bitmap$Config.js" "hyperloop/android.graphics.Bitmap.js" "hyperloop/android.graphics.BitmapFactory$Options.js" "hyperloop/android.graphics.BitmapFactory.js" "hyperloop/android.graphics.Canvas$EdgeType.js" "hyperloop/android.graphics.Canvas$VertexMode.js" "hyperloop/android.graphics.Canvas.js" "hyperloop/android.graphics.ColorFilter.js" "hyperloop/android.graphics.DrawFilter.js" "hyperloop/android.graphics.MaskFilter.js" "hyperloop/android.graphics.Matrix$ScaleToFit.js" "hyperloop/android.graphics.Matrix.js" "hyperloop/android.graphics.Movie.js" "hyperloop/android.graphics.Outline.js" "hyperloop/android.graphics.Paint$Align.js" "hyperloop/android.graphics.Paint$Cap.js" "hyperloop/android.graphics.Paint$FontMetrics.js" "hyperloop/android.graphics.Paint$FontMetricsInt.js" "hyperloop/android.graphics.Paint$Join.js" "hyperloop/android.graphics.Paint$Style.js" "hyperloop/android.graphics.Paint.js" "hyperloop/android.graphics.Path$Direction.js" "hyperloop/android.graphics.Path$FillType.js" "hyperloop/android.graphics.Path$Op.js" "hyperloop/android.graphics.Path.js" "hyperloop/android.graphics.PathEffect.js" "hyperloop/android.graphics.Picture.js" "hyperloop/android.graphics.Point.js" "hyperloop/android.graphics.PorterDuff$Mode.js" "hyperloop/android.graphics.PorterDuff.js" "hyperloop/android.graphics.Rasterizer.js" "hyperloop/android.graphics.Rect.js" "hyperloop/android.graphics.RectF.js" "hyperloop/android.graphics.Region$Op.js" "hyperloop/android.graphics.Region.js" "hyperloop/android.graphics.Shader$TileMode.js" "hyperloop/android.graphics.Shader.js" "hyperloop/android.graphics.Typeface.js" "hyperloop/android.graphics.Xfermode.js" "hyperloop/android.graphics.drawable.Drawable$Callback.js" "hyperloop/android.graphics.drawable.Drawable$ConstantState.js" "hyperloop/android.graphics.drawable.Drawable.js" "hyperloop/android.graphics.drawable.js" "hyperloop/android.graphics.js" "hyperloop/android.js" "hyperloop/android.media.AudioAttributes$Builder.js" "hyperloop/android.media.AudioAttributes.js" "hyperloop/android.media.js" "hyperloop/android.net.Uri$Builder.js" "hyperloop/android.net.Uri.js" "hyperloop/android.net.js" "hyperloop/android.os.BaseBundle.js" "hyperloop/android.os.Bundle.js" "hyperloop/android.os.CancellationSignal$OnCancelListener.js" "hyperloop/android.os.CancellationSignal.js" "hyperloop/android.os.Handler$Callback.js" "hyperloop/android.os.Handler.js" "hyperloop/android.os.IBinder$DeathRecipient.js" "hyperloop/android.os.IBinder.js" "hyperloop/android.os.IInterface.js" "hyperloop/android.os.Looper.js" "hyperloop/android.os.Message.js" "hyperloop/android.os.MessageQueue$IdleHandler.js" "hyperloop/android.os.MessageQueue$OnFileDescriptorEventListener.js" "hyperloop/android.os.MessageQueue.js" "hyperloop/android.os.Messenger.js" "hyperloop/android.os.Parcel.js" "hyperloop/android.os.ParcelFileDescriptor$AutoCloseInputStream.js" "hyperloop/android.os.ParcelFileDescriptor$AutoCloseOutputStream.js" "hyperloop/android.os.ParcelFileDescriptor$FileDescriptorDetachedException.js" "hyperloop/android.os.ParcelFileDescriptor$OnCloseListener.js" "hyperloop/android.os.ParcelFileDescriptor.js" "hyperloop/android.os.Parcelable$ClassLoaderCreator.js" "hyperloop/android.os.Parcelable$Creator.js" "hyperloop/android.os.Parcelable.js" "hyperloop/android.os.PatternMatcher.js" "hyperloop/android.os.PersistableBundle.js" "hyperloop/android.os.UserHandle.js" "hyperloop/android.os.Vibrator.js" "hyperloop/android.os.js" "hyperloop/android.util.AttributeSet.js" "hyperloop/android.util.DisplayMetrics.js" "hyperloop/android.util.Printer.js" "hyperloop/android.util.Property.js" "hyperloop/android.util.Size.js" "hyperloop/android.util.SizeF.js" "hyperloop/android.util.SparseArray.js" "hyperloop/android.util.SparseBooleanArray.js" "hyperloop/android.util.TypedValue.js" "hyperloop/android.util.js" "hyperloop/android.view.ActionMode$Callback.js" "hyperloop/android.view.ActionMode$Callback2.js" "hyperloop/android.view.ActionMode.js" "hyperloop/android.view.ActionProvider$VisibilityListener.js" "hyperloop/android.view.ActionProvider.js" "hyperloop/android.view.ContextMenu$ContextMenuInfo.js" "hyperloop/android.view.ContextMenu.js" "hyperloop/android.view.Display$Mode.js" "hyperloop/android.view.Display.js" "hyperloop/android.view.DragEvent.js" "hyperloop/android.view.InputDevice$MotionRange.js" "hyperloop/android.view.InputDevice.js" "hyperloop/android.view.InputEvent.js" "hyperloop/android.view.KeyCharacterMap$KeyData.js" "hyperloop/android.view.KeyCharacterMap$UnavailableException.js" "hyperloop/android.view.KeyCharacterMap.js" "hyperloop/android.view.KeyEvent$Callback.js" "hyperloop/android.view.KeyEvent$DispatcherState.js" "hyperloop/android.view.KeyEvent.js" "hyperloop/android.view.Menu.js" "hyperloop/android.view.MenuInflater.js" "hyperloop/android.view.MenuItem$OnActionExpandListener.js" "hyperloop/android.view.MenuItem$OnMenuItemClickListener.js" "hyperloop/android.view.MenuItem.js" "hyperloop/android.view.MotionEvent$PointerCoords.js" "hyperloop/android.view.MotionEvent$PointerProperties.js" "hyperloop/android.view.MotionEvent.js" "hyperloop/android.view.SubMenu.js" "hyperloop/android.view.TouchDelegate.js" "hyperloop/android.view.View$AccessibilityDelegate.js" "hyperloop/android.view.View$BaseSavedState.js" "hyperloop/android.view.View$DragShadowBuilder.js" "hyperloop/android.view.View$MeasureSpec.js" "hyperloop/android.view.View$OnApplyWindowInsetsListener.js" "hyperloop/android.view.View$OnAttachStateChangeListener.js" "hyperloop/android.view.View$OnClickListener.js" "hyperloop/android.view.View$OnContextClickListener.js" "hyperloop/android.view.View$OnCreateContextMenuListener.js" "hyperloop/android.view.View$OnDragListener.js" "hyperloop/android.view.View$OnFocusChangeListener.js" "hyperloop/android.view.View$OnGenericMotionListener.js" "hyperloop/android.view.View$OnHoverListener.js" "hyperloop/android.view.View$OnKeyListener.js" "hyperloop/android.view.View$OnLayoutChangeListener.js" "hyperloop/android.view.View$OnLongClickListener.js" "hyperloop/android.view.View$OnScrollChangeListener.js" "hyperloop/android.view.View$OnSystemUiVisibilityChangeListener.js" "hyperloop/android.view.View$OnTouchListener.js" "hyperloop/android.view.View.js" "hyperloop/android.view.ViewGroup$LayoutParams.js" "hyperloop/android.view.ViewGroup$MarginLayoutParams.js" "hyperloop/android.view.ViewGroup$OnHierarchyChangeListener.js" "hyperloop/android.view.ViewGroup.js" "hyperloop/android.view.ViewGroupOverlay.js" "hyperloop/android.view.ViewOutlineProvider.js" "hyperloop/android.view.ViewOverlay.js" "hyperloop/android.view.ViewParent.js" "hyperloop/android.view.ViewPropertyAnimator.js" "hyperloop/android.view.ViewStructure.js" "hyperloop/android.view.ViewTreeObserver$OnDrawListener.js" "hyperloop/android.view.ViewTreeObserver$OnGlobalFocusChangeListener.js" "hyperloop/android.view.ViewTreeObserver$OnGlobalLayoutListener.js" "hyperloop/android.view.ViewTreeObserver$OnPreDrawListener.js" "hyperloop/android.view.ViewTreeObserver$OnScrollChangedListener.js" "hyperloop/android.view.ViewTreeObserver$OnTouchModeChangeListener.js" "hyperloop/android.view.ViewTreeObserver$OnWindowAttachListener.js" "hyperloop/android.view.ViewTreeObserver$OnWindowFocusChangeListener.js" "hyperloop/android.view.ViewTreeObserver.js" "hyperloop/android.view.WindowId$FocusObserver.js" "hyperloop/android.view.WindowId.js" "hyperloop/android.view.WindowInsets.js" "hyperloop/android.view.accessibility.AccessibilityEvent.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$AccessibilityAction.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$CollectionInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$CollectionItemInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$RangeInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeProvider.js" "hyperloop/android.view.accessibility.AccessibilityRecord.js" "hyperloop/android.view.accessibility.AccessibilityWindowInfo.js" "hyperloop/android.view.accessibility.js" "hyperloop/android.view.animation.Animation$AnimationListener.js" "hyperloop/android.view.animation.Animation$Description.js" "hyperloop/android.view.animation.Animation.js" "hyperloop/android.view.animation.Interpolator.js" "hyperloop/android.view.animation.LayoutAnimationController$AnimationParameters.js" "hyperloop/android.view.animation.LayoutAnimationController.js" "hyperloop/android.view.animation.Transformation.js" "hyperloop/android.view.animation.js" "hyperloop/android.view.inputmethod.CompletionInfo.js" "hyperloop/android.view.inputmethod.CorrectionInfo.js" "hyperloop/android.view.inputmethod.EditorInfo.js" "hyperloop/android.view.inputmethod.ExtractedText.js" "hyperloop/android.view.inputmethod.ExtractedTextRequest.js" "hyperloop/android.view.inputmethod.InputConnection.js" "hyperloop/android.view.inputmethod.js" "hyperloop/android.view.js" "hyperloop/java.io.File.js" "hyperloop/java.io.FileDescriptor.js" "hyperloop/java.io.FileFilter.js" "hyperloop/java.io.FileInputStream.js" "hyperloop/java.io.FileOutputStream.js" "hyperloop/java.io.FilenameFilter.js" "hyperloop/java.io.FilterOutputStream.js" "hyperloop/java.io.IOException.js" "hyperloop/java.io.InputStream.js" "hyperloop/java.io.OutputStream.js" "hyperloop/java.io.PrintStream.js" "hyperloop/java.io.PrintWriter.js" "hyperloop/java.io.Reader.js" "hyperloop/java.io.Serializable.js" "hyperloop/java.io.Writer.js" "hyperloop/java.io.js" "hyperloop/java.js" "hyperloop/java.lang.Appendable.js" "hyperloop/java.lang.Boolean.js" "hyperloop/java.lang.Byte.js" "hyperloop/java.lang.CharSequence.js" "hyperloop/java.lang.Class.js" "hyperloop/java.lang.ClassLoader.js" "hyperloop/java.lang.Double.js" "hyperloop/java.lang.Enum.js" "hyperloop/java.lang.Exception.js" "hyperloop/java.lang.Float.js" "hyperloop/java.lang.Integer.js" "hyperloop/java.lang.Iterable.js" "hyperloop/java.lang.Long.js" "hyperloop/java.lang.Number.js" "hyperloop/java.lang.Object.js" "hyperloop/java.lang.Package.js" "hyperloop/java.lang.Runnable.js" "hyperloop/java.lang.Short.js" "hyperloop/java.lang.String.js" "hyperloop/java.lang.StringBuffer.js" "hyperloop/java.lang.StringBuilder.js" "hyperloop/java.lang.Thread$State.js" "hyperloop/java.lang.Thread$UncaughtExceptionHandler.js" "hyperloop/java.lang.Thread.js" "hyperloop/java.lang.ThreadGroup.js" "hyperloop/java.lang.Throwable.js" "hyperloop/java.lang.annotation.Annotation.js" "hyperloop/java.lang.annotation.js" "hyperloop/java.lang.js" "hyperloop/java.lang.reflect.AccessibleObject.js" "hyperloop/java.lang.reflect.Constructor.js" "hyperloop/java.lang.reflect.Field.js" "hyperloop/java.lang.reflect.Method.js" "hyperloop/java.lang.reflect.Type.js" "hyperloop/java.lang.reflect.js" "hyperloop/java.net.ContentHandler.js" "hyperloop/java.net.ContentHandlerFactory.js" "hyperloop/java.net.DatagramPacket.js" "hyperloop/java.net.DatagramSocket.js" "hyperloop/java.net.DatagramSocketImpl.js" "hyperloop/java.net.DatagramSocketImplFactory.js" "hyperloop/java.net.FileNameMap.js" "hyperloop/java.net.InetAddress.js" "hyperloop/java.net.NetworkInterface.js" "hyperloop/java.net.ProtocolFamily.js" "hyperloop/java.net.Proxy$Type.js" "hyperloop/java.net.Proxy.js" "hyperloop/java.net.ServerSocket.js" "hyperloop/java.net.Socket.js" "hyperloop/java.net.SocketAddress.js" "hyperloop/java.net.SocketImpl.js" "hyperloop/java.net.SocketImplFactory.js" "hyperloop/java.net.SocketOption.js" "hyperloop/java.net.URI.js" "hyperloop/java.net.URL.js" "hyperloop/java.net.URLConnection.js" "hyperloop/java.net.URLStreamHandler.js" "hyperloop/java.net.URLStreamHandlerFactory.js" "hyperloop/java.net.js" "hyperloop/java.nio.Buffer.js" "hyperloop/java.nio.ByteBuffer.js" "hyperloop/java.nio.ByteOrder.js" "hyperloop/java.nio.CharBuffer.js" "hyperloop/java.nio.DoubleBuffer.js" "hyperloop/java.nio.FloatBuffer.js" "hyperloop/java.nio.IntBuffer.js" "hyperloop/java.nio.LongBuffer.js" "hyperloop/java.nio.MappedByteBuffer.js" "hyperloop/java.nio.ShortBuffer.js" "hyperloop/java.nio.channels.AsynchronousFileChannel.js" "hyperloop/java.nio.channels.Channel.js" "hyperloop/java.nio.channels.CompletionHandler.js" "hyperloop/java.nio.channels.DatagramChannel.js" "hyperloop/java.nio.channels.FileChannel$MapMode.js" "hyperloop/java.nio.channels.FileChannel.js" "hyperloop/java.nio.channels.FileLock.js" "hyperloop/java.nio.channels.NetworkChannel.js" "hyperloop/java.nio.channels.Pipe$SinkChannel.js" "hyperloop/java.nio.channels.Pipe$SourceChannel.js" "hyperloop/java.nio.channels.Pipe.js" "hyperloop/java.nio.channels.ReadableByteChannel.js" "hyperloop/java.nio.channels.SeekableByteChannel.js" "hyperloop/java.nio.channels.SelectableChannel.js" "hyperloop/java.nio.channels.SelectionKey.js" "hyperloop/java.nio.channels.Selector.js" "hyperloop/java.nio.channels.ServerSocketChannel.js" "hyperloop/java.nio.channels.SocketChannel.js" "hyperloop/java.nio.channels.WritableByteChannel.js" "hyperloop/java.nio.channels.js" "hyperloop/java.nio.channels.spi.AbstractInterruptibleChannel.js" "hyperloop/java.nio.channels.spi.AbstractSelectableChannel.js" "hyperloop/java.nio.channels.spi.AbstractSelectionKey.js" "hyperloop/java.nio.channels.spi.AbstractSelector.js" "hyperloop/java.nio.channels.spi.SelectorProvider.js" "hyperloop/java.nio.channels.spi.js" "hyperloop/java.nio.charset.Charset.js" "hyperloop/java.nio.charset.CharsetDecoder.js" "hyperloop/java.nio.charset.CharsetEncoder.js" "hyperloop/java.nio.charset.CoderResult.js" "hyperloop/java.nio.charset.CodingErrorAction.js" "hyperloop/java.nio.charset.js" "hyperloop/java.nio.file.DirectoryStream$Filter.js" "hyperloop/java.nio.file.DirectoryStream.js" "hyperloop/java.nio.file.FileStore.js" "hyperloop/java.nio.file.FileSystem.js" "hyperloop/java.nio.file.Path.js" "hyperloop/java.nio.file.PathMatcher.js" "hyperloop/java.nio.file.WatchKey.js" "hyperloop/java.nio.file.WatchService.js" "hyperloop/java.nio.file.Watchable.js" "hyperloop/java.nio.file.attribute.BasicFileAttributes.js" "hyperloop/java.nio.file.attribute.FileAttributeView.js" "hyperloop/java.nio.file.attribute.FileStoreAttributeView.js" "hyperloop/java.nio.file.attribute.FileTime.js" "hyperloop/java.nio.file.attribute.GroupPrincipal.js" "hyperloop/java.nio.file.attribute.UserPrincipal.js" "hyperloop/java.nio.file.attribute.UserPrincipalLookupService.js" "hyperloop/java.nio.file.attribute.js" "hyperloop/java.nio.file.js" "hyperloop/java.nio.file.spi.FileSystemProvider.js" "hyperloop/java.nio.file.spi.js" "hyperloop/java.nio.js" "hyperloop/java.security.CodeSource.js" "hyperloop/java.security.Permission.js" "hyperloop/java.security.PermissionCollection.js" "hyperloop/java.security.ProtectionDomain.js" "hyperloop/java.security.js" "hyperloop/java.util.AbstractCollection.js" "hyperloop/java.util.AbstractList.js" "hyperloop/java.util.AbstractMap$SimpleEntry.js" "hyperloop/java.util.AbstractMap$SimpleImmutableEntry.js" "hyperloop/java.util.AbstractMap.js" "hyperloop/java.util.ArrayList.js" "hyperloop/java.util.Collection.js" "hyperloop/java.util.Comparator.js" "hyperloop/java.util.Enumeration.js" "hyperloop/java.util.HashMap.js" "hyperloop/java.util.Iterator.js" "hyperloop/java.util.List.js" "hyperloop/java.util.ListIterator.js" "hyperloop/java.util.Locale$Builder.js" "hyperloop/java.util.Locale$Category.js" "hyperloop/java.util.Locale.js" "hyperloop/java.util.Map$Entry.js" "hyperloop/java.util.Map.js" "hyperloop/java.util.Random.js" "hyperloop/java.util.Set.js" "hyperloop/java.util.SortedMap.js" "hyperloop/java.util.concurrent.Callable.js" "hyperloop/java.util.concurrent.ExecutorService.js" "hyperloop/java.util.concurrent.Future.js" "hyperloop/java.util.concurrent.TimeUnit.js" "hyperloop/java.util.concurrent.js" "hyperloop/java.util.js" "hyperloop/org.js" "hyperloop/org.xmlpull.js" "hyperloop/org.xmlpull.v1.XmlPullParser.js" "hyperloop/org.xmlpull.v1.XmlSerializer.js" "hyperloop/org.xmlpull.v1.js" "ti.cloud.js" "_app_props_.json"
       [INFO]  Writing /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/assets/app.json
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.res.zip
       [INFO]  No aidl files to compile, continuing
       [INFO]  Generating i18n files
       [INFO]  Generating /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/res/values/theme.xml
       [INFO]  Packaging application: /Users/kdesutter/System/androidsdk/build-tools/23.0.2/aapt "package" "-f" "-m" "-J" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/gen" "-M" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/AndroidManifest.xml" "-A" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/assets" "-S" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/res" "-I" "/Users/kdesutter/System/androidsdk/platforms/android-23/android.jar" "-F" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app.ap_" "--auto-add-overlay" "--extra-packages" "ti.modules.titanium.ui:android.support.v7.appcompat:android.support.v7.cardview" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116820-55860-yjtnlb/res" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116820-55860-hzcgkz/res" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116820-55860-1mhdyp9/res"
       [INFO]  Building Java source files: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/javac "-J-Xmx1024M" "-encoding" "utf8" "-bootclasspath" "/Users/kdesutter/System/androidsdk/platforms/android-23/android.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-v8.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/aps-analytics.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/jaxen-1.1.1.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/ti-commons-codec-1.3.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-common.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-ui.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/nineoldandroids-appc-2.4.0.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-appcompat.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v4.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v7-appcompat.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-cardview.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/cardview-v7-23.0.1.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/hyperloop-android.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-1.4.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-dx-1.4.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-apt.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/lib/titanium-verify.jar:R.class:AssetCryptImpl.class:Hyperloop_testActivity.class:Hyperloop_testAppInfo.class:Hyperloop_testApplication.class" "-d" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes" "-proc:none" "-target" "1.6" "-source" "1.6" "@/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/java-sources.txt"
       [INFO]  Running dexer: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/java "-Xmx1024M" "-XX:-UseGCOverheadLimit" "-Djava.ext.dirs=/Users/kdesutter/System/androidsdk/platform-tools" "-jar" "/Users/kdesutter/System/androidsdk/build-tools/23.0.2/lib/dx.jar" "--dex" "--output=/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes.dex" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/lib/titanium-verify.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/hyperloop-android.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-1.4.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-dx-1.4.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-v8.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/aps-analytics.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/jaxen-1.1.1.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/ti-commons-codec-1.3.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-common.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-ui.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/nineoldandroids-appc-2.4.0.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-appcompat.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v4.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v7-appcompat.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-cardview.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/cardview-v7-23.0.1.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.jar"
       [INFO]  Creating unsigned apk
       [INFO]  Processing /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/src
       [INFO]  Writing unsigned apk: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app-unsigned.apk
       [INFO]  Using MD5withRSA signature algorithm
       [INFO]  Signing apk: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/jarsigner "-sigalg" "MD5withRSA" "-digestalg" "SHA1" "-keystore" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/dev_keystore" "-storepass" "*******" "-signedjar" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app-unsigned.apk" "tidev"
       [INFO]  Aligning zip file: /Users/kdesutter/System/androidsdk/build-tools/23.0.2/zipalign "-v" "4" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apkz"
       [INFO]  Writing build manifest: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/build-manifest.json
       [INFO]  Making sure the adb server is running
       [INFO]  Installing apk: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk
       [INFO]  App successfully installed
       [INFO]  Starting app: com.kangacoders.hyperlooptest/.Hyperloop_testActivity
       [INFO]  Application pid: 2370
       -- Start application log -----------------------------------------------------
       [INFO]  I/        (  102): debuggerd: Mar 24 2016 11:19:18
       [INFO]  E/vinput-seamless(  291): found seamless mouse device
       [INFO]  E/        (  289): Failed to connect to host (UnixStream)!!!
       [INFO]  E/        (  289): Failed to connect to host (UnixStream)!!!
       [INFO]  E/        (  389): batterystats service unavailable!
       [INFO]  E/        (  389): batterystats service unavailable!
       [INFO]  E/        (  389): batterystats service unavailable!
       [INFO]  E/        (  389): batterystats service unavailable!
       [INFO]  E/android.os.Debug(  390): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI(  390): register_android_hardware_Radio DONE
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf70d21c0, tid 700
       [INFO]  D/        (  719): HostConnection::get() New Host Connection established 0xf62ca0f0, tid 722
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf6d8a100, tid 734
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf70d2bc0, tid 709
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf6d8a080, tid 707
       [INFO]  I/PackageManager.DexOptimizer(  695): Running dexopt (dex2oat) on: /system/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk pkg=com.google.android.syncadapters.contacts isa=x86 vmSafeMode=false debuggable=false oatDir = null
       [INFO]  D/        (  695): HostConnection::get() New Host Connection established 0xdf37e730, tid 763
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf70d2fc0, tid 733
       [INFO]  I/APM::ConfigParsingUtils(  389): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
       [INFO]  D/        (  695): HostConnection::get() New Host Connection established 0xdf6ebfa0, tid 791
       [INFO]  E/WifiNative-HAL(  695): Could not start hal
       [INFO]  D/WifiNative-HAL(  695): Setting external_sim to 1
       [INFO]  D/WifiNative-HAL(  695): Failing getSupportedFeatureset because HAL isn't started
       [INFO]  I/vol.Events(  831): writeEvent collection_started
       [INFO]  I/vol.Events(  831): writeEvent external_ringer_mode_changed normal
       [INFO]  I/vol.Events(  831): writeEvent internal_ringer_mode_changed normal
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_ALARM 6
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_BLUETOOTH_SCO 7
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_MUSIC 11
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_RING 5
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_SYSTEM 5
       [INFO]  I/vol.Events(  831): writeEvent level_changed STREAM_VOICE_CALL 4
       [INFO]  I/LatinIME:LogUtils( 1019): Dictionary info: dictionary = contacts.en_US ; version = 1474328516 ; date = ?
       [INFO]  D/        (  831): HostConnection::get() New Host Connection established 0xe0113210, tid 831
       [INFO]  D/Launcher.Model( 1087): Old launcher provider: content://com.android.launcher2.settings/favorites?notify=true
       [INFO]  D/Launcher.Model( 1087): Old launcher provider does not exist.
       [INFO]  D/        (  695): HostConnection::get() New Host Connection established 0xdce34640, tid 695
       [INFO]  D/        (  831): HostConnection::get() New Host Connection established 0xe01130c0, tid 1186
       [INFO]  D/        ( 1087): HostConnection::get() New Host Connection established 0xf2c7e4e0, tid 1087
       [INFO]  D/        (  700): HostConnection::get() New Host Connection established 0xf6c7e510, tid 1277
       [INFO]  E/DcSwitchStateMachine-0( 1073): DctController is not ready
       [INFO]  D/        ( 1087): HostConnection::get() New Host Connection established 0xeead2730, tid 1265
       [INFO]  I/LatinIME:LogUtils( 1019): Dictionary info: dictionary = userunigram.en_US ; version = 1474328517 ; date = ?
       [INFO]  I/LatinIME:LogUtils( 1019): Dictionary info: dictionary = UserHistoryDictionary.en_US ; version = 1474328517 ; date = ?
       [INFO]  I/LatinIME:LogUtils( 1019): Dictionary info: dictionary = main:en ; version = 54 ; date = 1414726273
       [INFO]  E/DcSwitchStateMachine-0( 1073): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  E/DcSwitchStateMachine-0( 1073): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  D/        (  695): HostConnection::get() New Host Connection established 0xde15e250, tid 729
       [INFO]  E/DcSwitchStateMachine-0( 1073): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  D/WifiNative-HAL(  695): Failing getSupportedFeatureset because HAL isn't started
       [INFO]  I/System.out( 1337): gmsNlpServiceThread This NLP should run continuously. intent is Intent { act=com.google.android.location.internal.GMS_NLP pkg=com.google.android.gms }
       [INFO]  W/InstanceID/Rpc( 1337): Found 10060
       [INFO]  W/InstanceID/Rpc( 1394): Found 10060
       [INFO]  I/FA-SVC  ( 1394): App measurement is starting up, version: 9683
       [INFO]  I/FA-SVC  ( 1394): To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
       [INFO]  I/FA-SVC  ( 1394): To enable faster debug mode event logging run:
       [INFO]  I/FA-SVC  ( 1394):   adb shell setprop firebase.analytics.debug-mode com.google.android.gms
       [INFO]  I/FA-SVC  ( 1394): This instance being marked as an uploader
       [INFO]  D/ConnectivityManager.CallbackHandler(  831): CM callback handler got msg 524290
       [INFO]  D/ConnectivityManager.CallbackHandler(  831): CM callback handler got msg 524289
       [INFO]  W/DG.WV   ( 1921): Widevine DRM not supported on this device
       [INFO]  W/DG.WV   ( 1921): android.media.UnsupportedSchemeException: Failed to instantiate drm object.
       [INFO]  W/DG.WV   ( 1921): 	at android.media.MediaDrm.native_setup(Native Method)
       [INFO]  W/DG.WV   ( 1921): 	at android.media.MediaDrm.<init>(MediaDrm.java:215)
       [INFO]  W/DG.WV   ( 1921): 	at mfj.a(:com.google.android.gms:121)
       [INFO]  W/DG.WV   ( 1921): 	at mce.run(:com.google.android.gms:1094)
       [INFO]  W/DG.WV   ( 1921): 	at jmg.run(:com.google.android.gms:450)
       [INFO]  W/DG.WV   ( 1921): 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
       [INFO]  W/DG.WV   ( 1921): 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  W/DG.WV   ( 1921): 	at jqr.run(:com.google.android.gms:17)
       [INFO]  W/DG.WV   ( 1921): 	at java.lang.Thread.run(Thread.java:818)
       [INFO]  D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100](  695): Checking http://connectivitycheck.gstatic.com/generate_204 on "WiredSSID", connectivitycheck.gstatic.com=216.58.208.46,2a00:1450:4001:815::200e
       [INFO]  D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100](  695): isCaptivePortal: ret=204 headers={null=[HTTP/1.1 204 No Content], Content-Length=[0], Date=[Mon, 19 Sep 2016 23:42:14 GMT], X-Android-Received-Millis=[1474328532324], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1474328532298]}
       [INFO]  D/ConnectivityManager.CallbackHandler(  831): CM callback handler got msg 524294
       [INFO]  D/        ( 1921): HostConnection::get() New Host Connection established 0xd9b3c240, tid 1934
       [INFO]  E/NetworkScheduler.ATC( 1337): Provided calling package not found: com.google.android.apps.photos
       [INFO]  D/ConnectivityManager.CallbackHandler( 1394): CM callback handler got msg 524290
       [INFO]  E/android.os.Debug( 2117): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2117): register_android_hardware_Radio DONE
       [INFO]  I/PackageManager.DexOptimizer(  695): Running dexopt (dex2oat) on: /data/app/vmdl1466302322.tmp/base.apk pkg=com.kangacoders.hyperlooptest isa=x86 vmSafeMode=false debuggable=false oatDir = /data/app/vmdl1466302322.tmp/oat
       [INFO]  E/android.os.Debug( 2156): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2156): register_android_hardware_Radio DONE
       [INFO]  D/        ( 2187): HostConnection::get() New Host Connection established 0xed73bfb0, tid 2187
       [INFO]  D/        ( 2187): HostConnection::get() New Host Connection established 0xe04bd1d0, tid 2208
       [INFO]  E/NetworkScheduler.ATC( 1337): Trying to release unacquired lock: com.google.android.gms/.clearcut.service.VacuumService
       [INFO]  I/GAv4-SVC( 1394): Google Analytics 9.6.83 is starting up.
       [INFO]  W/DG.WV   ( 1921): Widevine DRM not supported on this device
       [INFO]  W/DG.WV   ( 1921): android.media.UnsupportedSchemeException: Failed to instantiate drm object.
       [INFO]  W/DG.WV   ( 1921): 	at android.media.MediaDrm.native_setup(Native Method)
       [INFO]  W/DG.WV   ( 1921): 	at android.media.MediaDrm.<init>(MediaDrm.java:215)
       [INFO]  W/DG.WV   ( 1921): 	at mfj.a(:com.google.android.gms:121)
       [INFO]  W/DG.WV   ( 1921): 	at mce.run(:com.google.android.gms:1094)
       [INFO]  W/DG.WV   ( 1921): 	at jmg.run(:com.google.android.gms:450)
       [INFO]  W/DG.WV   ( 1921): 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
       [INFO]  W/DG.WV   ( 1921): 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  W/DG.WV   ( 1921): 	at jqr.run(:com.google.android.gms:17)
       [INFO]  W/DG.WV   ( 1921): 	at java.lang.Thread.run(Thread.java:818)
       [INFO]  D/        ( 1921): HostConnection::get() New Host Connection established 0xeead2b20, tid 1932
       [INFO]  E/android.os.Debug( 2293): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2293): register_android_hardware_Radio DONE
       [INFO]  I/PackageManager.DexOptimizer(  695): Running dexopt (dex2oat) on: /data/app/vmdl604831430.tmp/base.apk pkg=com.kangacoders.hyperlooptest isa=x86 vmSafeMode=false debuggable=false oatDir = /data/app/vmdl604831430.tmp/oat
       [INFO]  E/NetworkScheduler.SR( 1337): Invalid parameter app
       [INFO]  E/NetworkScheduler.SR( 1337): Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
       [INFO]  E/Drive.UninstallOperation( 1394): Package still installed com.kangacoders.hyperlooptest
       [INFO]  E/NetworkScheduler.SR( 1337): Invalid parameter app
       [INFO]  E/NetworkScheduler.SR( 1337): Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
       [INFO]  E/android.os.Debug( 2334): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2334): register_android_hardware_Radio DONE
       [INFO]  TiApplication: (main) [0,0] checkpoint, app created.
       [INFO]  TiApplication: (main) [17,17] Titanium 5.5.0 (2016/09/13 12:39 44a2e3f)
       [WARN]  V8Object: (main) [113,130] Runtime disposed, cannot set property 'userAgent'
       [INFO]  TiApplication: (main) [11,141] Titanium Javascript runtime: v8
       [INFO]  TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null
       [INFO]  Project built successfully in 1m 9s 198ms
       
       [ERROR] KrollProxy: (main) [104,104] Error creating proxy
       [ERROR] KrollProxy: java.lang.NoSuchMethodException: <init> [class org.appcelerator.titanium.TiContext]
       [ERROR] KrollProxy: 	at java.lang.Class.getConstructor(Class.java:528)
       [ERROR] KrollProxy: 	at java.lang.Class.getConstructor(Class.java:492)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.KrollProxy.createDeprecatedProxy(KrollProxy.java:161)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native Method)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [ERROR] KrollProxy: 	at android.app.Activity.performCreate(Activity.java:6237)
       [ERROR] KrollProxy: 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.-wrap11(ActivityThread.java)
       [ERROR] KrollProxy: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [ERROR] KrollProxy: 	at android.os.Handler.dispatchMessage(Handler.java:102)
       [ERROR] KrollProxy: 	at android.os.Looper.loop(Looper.java:148)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.main(ActivityThread.java:5417)
       [ERROR] KrollProxy: 	at java.lang.reflect.Method.invoke(Native Method)
       [ERROR] KrollProxy: 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [ERROR] KrollProxy: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/java_vm_ext.cc:410] JNI DETECTED ERROR IN APPLICATION: obj == null
       [INFO]  art: art/runtime/java_vm_ext.cc:410]     in call to CallVoidMethodV
       [INFO]  art: art/runtime/java_vm_ext.cc:410]     from void org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(java.lang.String, java.lang.String, org.appcelerator.kroll.KrollProxySupport)
       [INFO]  art: art/runtime/java_vm_ext.cc:410] "main" prio=5 tid=1 Runnable
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | group="main" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3e34a00
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | sysTid=2370 nice=0 cgrp=default sched=0/0 handle=0xf77cbc00
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | state=R schedstat=( 232960963 5175869 150 ) utm=17 stm=6 core=3 HZ=100
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | stack=0xff585000-0xff587000 stackSize=8MB
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | held mutexes= "mutator lock"(shared held)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #02 pc 003a489f  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1247)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #03 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #04 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #05 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #06 pc 00086573  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #07 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #08 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #09 pc 00018728   (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #10 pc 05ffffff  ???
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]
       [INFO]  art: art/runtime/runtime.cc:366] Runtime aborting...
       [INFO]  art: art/runtime/runtime.cc:366] Aborting thread:
       [INFO]  art: art/runtime/runtime.cc:366] "main" prio=5 tid=1 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3e34a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2370 nice=0 cgrp=default sched=0/0 handle=0xf77cbc00
       [INFO]  art: art/runtime/runtime.cc:366]   | state=R schedstat=( 243188505 5290370 162 ) utm=17 stm=6 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xff585000-0xff587000 stackSize=8MB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes= "abort lock"
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 00516abe  /system/lib/libart.so (art::Runtime::Abort()+1164)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 0014d9f3  /system/lib/libart.so (art::LogMessage::~LogMessage()+1343)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 003a52c2  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+3842)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 00086573  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 00018728   (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #12 pc 05ffffff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/runtime.cc:366] Dumping all threads without appropriate locks held: thread list lock mutator lock
       [INFO]  art: art/runtime/runtime.cc:366] All threads:
       [INFO]  art: art/runtime/runtime.cc:366] DALVIK THREADS (12):
       [INFO]  art: art/runtime/runtime.cc:366] "main" prio=5 tid=1 Runnable
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3e34a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2370 nice=0 cgrp=default sched=0/0 handle=0xf77cbc00
       [INFO]  art: art/runtime/runtime.cc:366]   | state=R schedstat=( 245583812 5290370 162 ) utm=18 stm=6 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xff585000-0xff587000 stackSize=8MB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes= "abort lock" "mutator lock"(shared held)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0055b63b  /system/lib/libart.so (art::DumpCheckpoint::Run(art::Thread*)+923)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 0055e1dd  /system/lib/libart.so (art::ThreadList::RunCheckpoint(art::Closure*)+301)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0055f4d3  /system/lib/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+243)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00516928  /system/lib/libart.so (art::Runtime::Abort()+758)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 0014d9f3  /system/lib/libart.so (art::LogMessage::~LogMessage()+1343)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 003a52c2  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+3842)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 00086573  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #12 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #13 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-2/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #14 pc 00018728   (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #15 pc 05ffffff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Signal Catcher" prio=5 tid=2 WaitingInMainSignalCatcherLoop
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c700a0 self=0xeeac2000
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2375 nice=0 cgrp=default sched=0/0 handle=0xf3232930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 363625 114804 2 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf3136000-0xf3138000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_sigtimedwait+0x16f/0x200
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: C_SYSC_rt_sigtimedwait+0x8d/0xf0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_rt_sigtimedwait+0xe/0x10
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0008461b  /system/lib/libc.so (__rt_sigtimedwait+27)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00027fcc  /system/lib/libc.so (sigwait+69)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 00521fb6  /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+118)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 005257ae  /system/lib/libart.so (art::SignalCatcher::Run(void*)+302)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "JDWP" prio=5 tid=3 WaitingInMainDebuggerLoop
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c730a0 self=0xec9af200
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2376 nice=0 cgrp=default sched=0/0 handle=0xf312e930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 338885 398503 7 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf3032000-0xf3034000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: unix_stream_recvmsg+0x30d/0x870
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: sock_recvmsg+0x89/0xb0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ___sys_recvmsg+0x100/0x290
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: __sys_recvmsg+0x42/0x80
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_socketcall+0x71/0x260
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00084d91  /system/lib/libc.so (recvmsg+17)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 0066d68f  /system/lib/libart.so (art::JDWP::JdwpAdbState::Accept()+267)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 003bea6a  /system/lib/libart.so (art::JDWP::JdwpState::Run()+282)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 003c0921  /system/lib/libart.so (art::JDWP::StartJdwpThread(void*)+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "FinalizerDaemon" prio=5 tid=4 Waiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6f160 self=0xec9b6500
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2378 nice=0 cgrp=default sched=0/0 handle=0xf2f21930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 1067773 2318947 20 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2e1f000-0xf2e21000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e0  /system/lib/libc.so (syscall+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155034  /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+772)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044f061  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+1777)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 4f3e19d7  ???
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 4eead3ff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x08daee9a> (a java.lang.ref.ReferenceQueue)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait(Object.java:423)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x08daee9a> (a java.lang.ref.ReferenceQueue)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "ReferenceQueueDaemon" prio=5 tid=5 Waiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6f100 self=0xec9b6000
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2377 nice=0 cgrp=default sched=0/0 handle=0xf3028930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 1169892 1145405 8 ) utm=0 stm=0 core=3 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2f26000-0xf2f28000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e0  /system/lib/libc.so (syscall+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155034  /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+772)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044f061  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+1777)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 004705f9  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+90)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000494  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__+104)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 8b018b33  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x0f06b3cb> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:147)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0f06b3cb> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "FinalizerWatchdogDaemon" prio=5 tid=6 Sleeping
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6f1c0 self=0xec9b6a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2379 nice=0 cgrp=default sched=0/0 handle=0xf2e1a930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 457809 0 8 ) utm=0 stm=0 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2d18000-0xf2d1a000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047cec3  /system/lib/libart.so (art::Thread_sleep(_JNIEnv*, _jclass*, _jobject*, long long, int)+107)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00024c8e  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+162)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - sleeping on <0x0aa497a8> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep(Thread.java:1031)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0aa497a8> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep(Thread.java:985)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:273)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:284)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:232)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "HeapTaskDaemon" prio=5 tid=7 Blocked
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6f220 self=0xec9b6f00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2380 nice=0 cgrp=default sched=0/0 handle=0xeee1f930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 26345773 4591229 43 ) utm=0 stm=2 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xeed1d000-0xeed1f000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 002da882  /system/lib/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+1170)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 002dafa5  /system/lib/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0045ee9c  /system/lib/libart.so (art::VMRuntime_runHeapTasks(_JNIEnv*, _jobject*)+53)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000494  /data/dalvik-cache/x86/system@framework@boot.oat (Java_dalvik_system_VMRuntime_runHeapTasks__+104)
       [INFO]  art: art/runtime/runtime.cc:366]   at dalvik.system.VMRuntime.runHeapTasks(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting to lock an unknown object
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:355)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Binder_1" prio=5 tid=8 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12cab0a0 self=0xeeac3400
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2381 nice=0 cgrp=default sched=0/0 handle=0xeec1c930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 1567782 775231 12 ) utm=0 stm=0 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xeeb20000-0xeeb22000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_thread_read+0x91d/0x1070
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl_write_read.isra.45+0x101/0x280
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl+0x1cf/0x640
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_ioctl+0xad/0x1210
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00085244  /system/lib/libc.so (__ioctl+20)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00094cea  /system/lib/libc.so (ioctl+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 000267ff  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+239)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 000271d5  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 00027317  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+151)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00030362  /system/lib/libbinder.so (android::PoolThread::threadLoop()+40)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 00014aac  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+418)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 0006bfee  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+98)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 000141cf  /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+122)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Binder_2" prio=5 tid=9 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12cae0a0 self=0xec9b7e00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2382 nice=0 cgrp=default sched=0/0 handle=0xeeabf930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 383061 164344 2 ) utm=0 stm=0 core=1 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xee9c3000-0xee9c5000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_thread_read+0x91d/0x1070
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl_write_read.isra.45+0x101/0x280
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl+0x1cf/0x640
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_ioctl+0xad/0x1210
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00085244  /system/lib/libc.so (__ioctl+20)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00094cea  /system/lib/libc.so (ioctl+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 000267ff  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+239)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 000271d5  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000272d1  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+81)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00030362  /system/lib/libbinder.so (android::PoolThread::threadLoop()+40)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 00014aac  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+418)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 0006bfee  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+98)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 000141cf  /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+122)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "pool-1-thread-1" prio=5 tid=10 TimedWaiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12d51d00 self=0xf3e35400
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2385 nice=0 cgrp=default sched=0/0 handle=0xdf23f930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 548688 0 1 ) utm=0 stm=0 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xdf13d000-0xdf13f000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x0239f2c1> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.parkFor$(Thread.java:1220)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0239f2c1> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at sun.misc.Unsafe.park(Unsafe.java:299)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2053)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1090)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1071)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1038)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1098)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "pool-2-thread-1" prio=5 tid=11 TimedWaiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12e358e0 self=0xdf4ab500
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2386 nice=0 cgrp=default sched=0/0 handle=0xdf13a930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 314275 0 1 ) utm=0 stm=0 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xdf038000-0xdf03a000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x0ce95a66> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.parkFor$(Thread.java:1220)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0ce95a66> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at sun.misc.Unsafe.park(Unsafe.java:299)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2053)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1090)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1071)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1038)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1098)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "TiHttpClient-1" prio=5 tid=12 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12e72100 self=0xdf4ac400
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2389 nice=19 cgrp=bg_non_interactive sched=0/0 handle=0xddebf930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 2537523 836867 18 ) utm=0 stm=0 core=0 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xdddbd000-0xdddbf000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: poll_schedule_timeout+0x55/0xb0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_sys_poll+0x420/0x4f0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_ppoll+0x1b8/0x1d0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00084dd0  /system/lib/libc.so (__ppoll+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 000263b5  /system/lib/libc.so (poll+81)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0003a4fc  /system/lib/libjavacore.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 0058b260  /data/dalvik-cache/x86/system@framework@boot.oat (Java_libcore_io_Posix_poll___3Landroid_system_StructPollfd_2I+148)
       [INFO]  art: art/runtime/runtime.cc:366]   at libcore.io.Posix.poll(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at libcore.io.BlockGuardOs.poll(BlockGuardOs.java:195)
       [INFO]  art: art/runtime/runtime.cc:366]   at libcore.io.IoBridge.isConnected(IoBridge.java:215)
       [INFO]  art: art/runtime/runtime.cc:366]   at libcore.io.IoBridge.connectErrno(IoBridge.java:171)
       [INFO]  art: art/runtime/runtime.cc:366]   at libcore.io.IoBridge.connect(IoBridge.java:122)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:183)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:452)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.net.Socket.connect(Socket.java:884)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x09cac1a7> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.okhttp.internal.Platform.connectSocket(Platform.java:117)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.okhttp.internal.http.SocketConnector.connectRawSocket(SocketConnector.java:160)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.okhttp.internal.http.SocketConnector.connectTls(SocketConnector.java:79)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.okhttp.Connection.connect(Connection.java:143)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  D/        (  695): HostConnection::get() New Host Connection established 0xda88d1b0, tid 2395
       -- End application log -------------------------------------------------------
       
    Many thanks for looking into this!
  3. Sharif AbuDarda 2016-09-21

    Hello, Can you run "appc run -p android" without "ti build"? We have reports of this with 1.2.7 version the issue is not occurring. Did you ensure that your app is created with appc new and not ti create? Thanks.
  4. Kai De Sutter 2016-09-21

    Hi Sharif, thank you for your reply. I have tried that but get the same error:
       kdesutter@KangaCoders-MacBook-Pro ~/projects/hyperloop_test  $ appc run -p android
       Appcelerator Command-Line Interface, version 5.5.0
       Copyright (c) 2014-2016, Appcelerator, Inc.  All Rights Reserved.
       
       9/21/2016, 7:07:19 PM
       
       Operating System
         Name                        = Mac OS X
         Version                     = 10.11.6
         Architecture                = 64bit
         # CPUs                      = 8
         Memory                      = 8589934592
       
       Node.js
         Node.js Version             = 0.12.7
         npm Version                 = 2.11.3
       
       Titanium CLI
         CLI Version                 = 5.0.9
       
       Titanium SDK
         SDK Version                 = 5.5.0.GA
         SDK Path                    = /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA
         Target Platform             = android
       
       Command
         /usr/local/bin/node /Users/kdesutter/.appcelerator/install/5.5.0/package/node_modules/titanium/lib/titanium.js build run -p android --config-file /var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/build-1474477631448.json --log-level info --no-banner --project-dir /Users/kdesutter/Documents/Projects/hyperloop_test
       
       [INFO]  Auto selecting emulator that closest matches 6.0
       [INFO]  Auto selected emulator Custom Tablet - 6.0.0 - API 23 - 2560x1600 6.0 (Google APIs supported)
       [INFO]  Found Titanium module id=hyperloop version=1.2.6 platform=android deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6
       [INFO]  Found Titanium module id=ti.cloud version=3.2.8 platform=commonjs deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.8
       [INFO]  Found better matching module id=ti.cloud version=latest platform=commonjs deploy-type=development path=/Users/kdesutter/Library/Application Support/Titanium/modules/commonjs/ti.cloud/3.2.11
       [INFO]  Found Titanium plugin id=ti.alloy version=1.0 
       [INFO]  Found Titanium plugin id=hyperloop version=latest 
       [INFO]  Deploy type: development
       [INFO]  Building for target: emulator
       [INFO]  Building for emulator: Custom Tablet - 6.0.0 - API 23 - 2560x1600
       [INFO]  Targeting Android SDK API: 23
       [INFO]  Building for the following architectures: armeabi, armeabi-v7a, x86
       [INFO]  Signing with keystore: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/dev_keystore (tidev)
       [INFO]  Debugging disabled
       [INFO]  Profiler disabled
       [INFO]  Forcing rebuild: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/build-manifest.json does not exist
       [INFO]  Found Alloy app in /Users/kdesutter/Documents/Projects/hyperloop_test/app
       [INFO]  Executing Alloy compile: /usr/local/bin/node /Users/kdesutter/.appcelerator/install/5.5.0/package/node_modules/alloy/bin/alloy compile /Users/kdesutter/Documents/Projects/hyperloop_test/app --config platform=android,version=0,simtype=none,devicefamily=none,deploytype=development,target=emulator
       [WARN]  Generated "/i18n" directory is not ignored by Git, please add it to your .gitignore
       [WARN]  Generated "/platform" directory is not ignored by Git, please add it to your .gitignore
       [INFO]   [config.json] regenerating CFG.js from config.json...
       [INFO]  ----- MVC GENERATION -----
       [INFO]  [app.tss] global style processing...
       [INFO]  [global style] writing to cache...
       [INFO]  [index.xml] view processing...
       [INFO]    style:      "index.tss"
       [INFO]    view:       "index.xml"
       [INFO]    controller: "index.js"
       [INFO]    created:    "Resources/android/alloy/controllers/index.js"
       [INFO]    created:     "Resources/android/alloy/styles/index.js"
       [INFO]   
       [INFO]  [app.js] Titanium entry point processing...
       [INFO]    created:    "Resources/android/app.js"
       [INFO]   
       [INFO]  ----- OPTIMIZING -----
       [INFO]  - android/alloy.js
       [INFO]  - android/alloy/sync/localStorage.js
       [INFO]  - android/alloy/sync/properties.js
       [INFO]  - android/alloy/sync/sql.js
       [INFO]   
       [INFO]  Alloy compiled in 0.83747s
       [INFO]  Alloy compiler completed successfully
       [INFO]  Starting Hyperloop assembly
       [INFO]  [Hyperloop] Using system metabase cache file at /var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/hyperloop_android-23_metabase.322c9e79c8aab7a0dfa5ae0bfbce3f424c46f5f4.json.gz
       [INFO]  Finished Hyperloop assembly
       [INFO]  Launching emulator: Custom Tablet - 6.0.0 - API 23 - 2560x1600
       [INFO]  Emulator already running
       [INFO]  Emulator is booted
       [INFO]  SD card not required, skipping mount check
       [INFO]  Emulator ready!
       [INFO]  JavaScript files need to be encrypted
       [INFO]  Processing JavaScript files
       [INFO]  Encrypting JavaScript files: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium_prep.macos "com.kangacoders.hyperlooptest" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/assets" "alloy/CFG.js" "app.js" "alloy/backbone.js" "alloy/constants.js" "alloy/controllers/BaseController.js" "alloy/controllers/index.js" "alloy/styles/index.js" "alloy/sync/localStorage.js" "alloy/sync/properties.js" "alloy/sync/sql.js" "alloy/underscore.js" "alloy/widget.js" "alloy.js" "hyperloop/android.accounts.Account.js" "hyperloop/android.accounts.js" "hyperloop/android.animation.Animator$AnimatorListener.js" "hyperloop/android.animation.Animator$AnimatorPauseListener.js" "hyperloop/android.animation.Animator.js" "hyperloop/android.animation.LayoutTransition$TransitionListener.js" "hyperloop/android.animation.LayoutTransition.js" "hyperloop/android.animation.StateListAnimator.js" "hyperloop/android.animation.TimeInterpolator.js" "hyperloop/android.animation.TypeEvaluator.js" "hyperloop/android.animation.ValueAnimator$AnimatorUpdateListener.js" "hyperloop/android.animation.ValueAnimator.js" "hyperloop/android.animation.js" "hyperloop/android.content.BroadcastReceiver$PendingResult.js" "hyperloop/android.content.BroadcastReceiver.js" "hyperloop/android.content.ClipData$Item.js" "hyperloop/android.content.ClipData.js" "hyperloop/android.content.ClipDescription.js" "hyperloop/android.content.ComponentCallbacks.js" "hyperloop/android.content.ComponentName.js" "hyperloop/android.content.ContentProvider$PipeDataWriter.js" "hyperloop/android.content.ContentProvider.js" "hyperloop/android.content.ContentProviderClient.js" "hyperloop/android.content.ContentResolver.js" "hyperloop/android.content.ContentValues.js" "hyperloop/android.content.Context.js" "hyperloop/android.content.Intent$FilterComparison.js" "hyperloop/android.content.Intent$ShortcutIconResource.js" "hyperloop/android.content.Intent.js" "hyperloop/android.content.IntentFilter$AuthorityEntry.js" "hyperloop/android.content.IntentFilter$MalformedMimeTypeException.js" "hyperloop/android.content.IntentFilter.js" "hyperloop/android.content.IntentSender$OnFinished.js" "hyperloop/android.content.IntentSender$SendIntentException.js" "hyperloop/android.content.IntentSender.js" "hyperloop/android.content.ServiceConnection.js" "hyperloop/android.content.SharedPreferences$Editor.js" "hyperloop/android.content.SharedPreferences$OnSharedPreferenceChangeListener.js" "hyperloop/android.content.SharedPreferences.js" "hyperloop/android.content.SyncInfo.js" "hyperloop/android.content.SyncRequest$Builder.js" "hyperloop/android.content.SyncRequest.js" "hyperloop/android.content.SyncStatusObserver.js" "hyperloop/android.content.js" "hyperloop/android.content.pm.ActivityInfo.js" "hyperloop/android.content.pm.ApplicationInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.ApplicationInfo.js" "hyperloop/android.content.pm.ComponentInfo.js" "hyperloop/android.content.pm.InstrumentationInfo.js" "hyperloop/android.content.pm.PackageInfo.js" "hyperloop/android.content.pm.PackageInstaller$Session.js" "hyperloop/android.content.pm.PackageInstaller$SessionCallback.js" "hyperloop/android.content.pm.PackageInstaller$SessionInfo.js" "hyperloop/android.content.pm.PackageInstaller$SessionParams.js" "hyperloop/android.content.pm.PackageInstaller.js" "hyperloop/android.content.pm.PackageItemInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.PackageItemInfo.js" "hyperloop/android.content.pm.PackageManager$NameNotFoundException.js" "hyperloop/android.content.pm.PackageManager.js" "hyperloop/android.content.pm.PermissionGroupInfo.js" "hyperloop/android.content.pm.PermissionInfo.js" "hyperloop/android.content.pm.ProviderInfo.js" "hyperloop/android.content.pm.ResolveInfo$DisplayNameComparator.js" "hyperloop/android.content.pm.ResolveInfo.js" "hyperloop/android.content.pm.ServiceInfo.js" "hyperloop/android.content.pm.js" "hyperloop/android.content.res.AssetFileDescriptor$AutoCloseInputStream.js" "hyperloop/android.content.res.AssetFileDescriptor$AutoCloseOutputStream.js" "hyperloop/android.content.res.AssetFileDescriptor.js" "hyperloop/android.content.res.AssetManager$AssetInputStream.js" "hyperloop/android.content.res.AssetManager.js" "hyperloop/android.content.res.ColorStateList.js" "hyperloop/android.content.res.Configuration.js" "hyperloop/android.content.res.Resources$NotFoundException.js" "hyperloop/android.content.res.Resources$Theme.js" "hyperloop/android.content.res.Resources.js" "hyperloop/android.content.res.TypedArray.js" "hyperloop/android.content.res.XmlResourceParser.js" "hyperloop/android.content.res.js" "hyperloop/android.database.CharArrayBuffer.js" "hyperloop/android.database.ContentObserver.js" "hyperloop/android.database.Cursor.js" "hyperloop/android.database.DataSetObserver.js" "hyperloop/android.database.DatabaseErrorHandler.js" "hyperloop/android.database.js" "hyperloop/android.database.sqlite.SQLiteClosable.js" "hyperloop/android.database.sqlite.SQLiteCursorDriver.js" "hyperloop/android.database.sqlite.SQLiteDatabase$CursorFactory.js" "hyperloop/android.database.sqlite.SQLiteDatabase.js" "hyperloop/android.database.sqlite.SQLiteProgram.js" "hyperloop/android.database.sqlite.SQLiteQuery.js" "hyperloop/android.database.sqlite.SQLiteStatement.js" "hyperloop/android.database.sqlite.SQLiteTransactionListener.js" "hyperloop/android.database.sqlite.js" "hyperloop/android.graphics.Bitmap$CompressFormat.js" "hyperloop/android.graphics.Bitmap$Config.js" "hyperloop/android.graphics.Bitmap.js" "hyperloop/android.graphics.BitmapFactory$Options.js" "hyperloop/android.graphics.BitmapFactory.js" "hyperloop/android.graphics.Canvas$EdgeType.js" "hyperloop/android.graphics.Canvas$VertexMode.js" "hyperloop/android.graphics.Canvas.js" "hyperloop/android.graphics.ColorFilter.js" "hyperloop/android.graphics.DrawFilter.js" "hyperloop/android.graphics.MaskFilter.js" "hyperloop/android.graphics.Matrix$ScaleToFit.js" "hyperloop/android.graphics.Matrix.js" "hyperloop/android.graphics.Movie.js" "hyperloop/android.graphics.Outline.js" "hyperloop/android.graphics.Paint$Align.js" "hyperloop/android.graphics.Paint$Cap.js" "hyperloop/android.graphics.Paint$FontMetrics.js" "hyperloop/android.graphics.Paint$FontMetricsInt.js" "hyperloop/android.graphics.Paint$Join.js" "hyperloop/android.graphics.Paint$Style.js" "hyperloop/android.graphics.Paint.js" "hyperloop/android.graphics.Path$Direction.js" "hyperloop/android.graphics.Path$FillType.js" "hyperloop/android.graphics.Path$Op.js" "hyperloop/android.graphics.Path.js" "hyperloop/android.graphics.PathEffect.js" "hyperloop/android.graphics.Picture.js" "hyperloop/android.graphics.Point.js" "hyperloop/android.graphics.PorterDuff$Mode.js" "hyperloop/android.graphics.PorterDuff.js" "hyperloop/android.graphics.Rasterizer.js" "hyperloop/android.graphics.Rect.js" "hyperloop/android.graphics.RectF.js" "hyperloop/android.graphics.Region$Op.js" "hyperloop/android.graphics.Region.js" "hyperloop/android.graphics.Shader$TileMode.js" "hyperloop/android.graphics.Shader.js" "hyperloop/android.graphics.Typeface.js" "hyperloop/android.graphics.Xfermode.js" "hyperloop/android.graphics.drawable.Drawable$Callback.js" "hyperloop/android.graphics.drawable.Drawable$ConstantState.js" "hyperloop/android.graphics.drawable.Drawable.js" "hyperloop/android.graphics.drawable.js" "hyperloop/android.graphics.js" "hyperloop/android.js" "hyperloop/android.media.AudioAttributes$Builder.js" "hyperloop/android.media.AudioAttributes.js" "hyperloop/android.media.js" "hyperloop/android.net.Uri$Builder.js" "hyperloop/android.net.Uri.js" "hyperloop/android.net.js" "hyperloop/android.os.BaseBundle.js" "hyperloop/android.os.Bundle.js" "hyperloop/android.os.CancellationSignal$OnCancelListener.js" "hyperloop/android.os.CancellationSignal.js" "hyperloop/android.os.Handler$Callback.js" "hyperloop/android.os.Handler.js" "hyperloop/android.os.IBinder$DeathRecipient.js" "hyperloop/android.os.IBinder.js" "hyperloop/android.os.IInterface.js" "hyperloop/android.os.Looper.js" "hyperloop/android.os.Message.js" "hyperloop/android.os.MessageQueue$IdleHandler.js" "hyperloop/android.os.MessageQueue$OnFileDescriptorEventListener.js" "hyperloop/android.os.MessageQueue.js" "hyperloop/android.os.Messenger.js" "hyperloop/android.os.Parcel.js" "hyperloop/android.os.ParcelFileDescriptor$AutoCloseInputStream.js" "hyperloop/android.os.ParcelFileDescriptor$AutoCloseOutputStream.js" "hyperloop/android.os.ParcelFileDescriptor$FileDescriptorDetachedException.js" "hyperloop/android.os.ParcelFileDescriptor$OnCloseListener.js" "hyperloop/android.os.ParcelFileDescriptor.js" "hyperloop/android.os.Parcelable$ClassLoaderCreator.js" "hyperloop/android.os.Parcelable$Creator.js" "hyperloop/android.os.Parcelable.js" "hyperloop/android.os.PatternMatcher.js" "hyperloop/android.os.PersistableBundle.js" "hyperloop/android.os.UserHandle.js" "hyperloop/android.os.Vibrator.js" "hyperloop/android.os.js" "hyperloop/android.util.AttributeSet.js" "hyperloop/android.util.DisplayMetrics.js" "hyperloop/android.util.Printer.js" "hyperloop/android.util.Property.js" "hyperloop/android.util.Size.js" "hyperloop/android.util.SizeF.js" "hyperloop/android.util.SparseArray.js" "hyperloop/android.util.SparseBooleanArray.js" "hyperloop/android.util.TypedValue.js" "hyperloop/android.util.js" "hyperloop/android.view.ActionMode$Callback.js" "hyperloop/android.view.ActionMode$Callback2.js" "hyperloop/android.view.ActionMode.js" "hyperloop/android.view.ActionProvider$VisibilityListener.js" "hyperloop/android.view.ActionProvider.js" "hyperloop/android.view.ContextMenu$ContextMenuInfo.js" "hyperloop/android.view.ContextMenu.js" "hyperloop/android.view.Display$Mode.js" "hyperloop/android.view.Display.js" "hyperloop/android.view.DragEvent.js" "hyperloop/android.view.InputDevice$MotionRange.js" "hyperloop/android.view.InputDevice.js" "hyperloop/android.view.InputEvent.js" "hyperloop/android.view.KeyCharacterMap$KeyData.js" "hyperloop/android.view.KeyCharacterMap$UnavailableException.js" "hyperloop/android.view.KeyCharacterMap.js" "hyperloop/android.view.KeyEvent$Callback.js" "hyperloop/android.view.KeyEvent$DispatcherState.js" "hyperloop/android.view.KeyEvent.js" "hyperloop/android.view.Menu.js" "hyperloop/android.view.MenuInflater.js" "hyperloop/android.view.MenuItem$OnActionExpandListener.js" "hyperloop/android.view.MenuItem$OnMenuItemClickListener.js" "hyperloop/android.view.MenuItem.js" "hyperloop/android.view.MotionEvent$PointerCoords.js" "hyperloop/android.view.MotionEvent$PointerProperties.js" "hyperloop/android.view.MotionEvent.js" "hyperloop/android.view.SubMenu.js" "hyperloop/android.view.TouchDelegate.js" "hyperloop/android.view.View$AccessibilityDelegate.js" "hyperloop/android.view.View$BaseSavedState.js" "hyperloop/android.view.View$DragShadowBuilder.js" "hyperloop/android.view.View$MeasureSpec.js" "hyperloop/android.view.View$OnApplyWindowInsetsListener.js" "hyperloop/android.view.View$OnAttachStateChangeListener.js" "hyperloop/android.view.View$OnClickListener.js" "hyperloop/android.view.View$OnContextClickListener.js" "hyperloop/android.view.View$OnCreateContextMenuListener.js" "hyperloop/android.view.View$OnDragListener.js" "hyperloop/android.view.View$OnFocusChangeListener.js" "hyperloop/android.view.View$OnGenericMotionListener.js" "hyperloop/android.view.View$OnHoverListener.js" "hyperloop/android.view.View$OnKeyListener.js" "hyperloop/android.view.View$OnLayoutChangeListener.js" "hyperloop/android.view.View$OnLongClickListener.js" "hyperloop/android.view.View$OnScrollChangeListener.js" "hyperloop/android.view.View$OnSystemUiVisibilityChangeListener.js" "hyperloop/android.view.View$OnTouchListener.js" "hyperloop/android.view.View.js" "hyperloop/android.view.ViewGroup$LayoutParams.js" "hyperloop/android.view.ViewGroup$MarginLayoutParams.js" "hyperloop/android.view.ViewGroup$OnHierarchyChangeListener.js" "hyperloop/android.view.ViewGroup.js" "hyperloop/android.view.ViewGroupOverlay.js" "hyperloop/android.view.ViewOutlineProvider.js" "hyperloop/android.view.ViewOverlay.js" "hyperloop/android.view.ViewParent.js" "hyperloop/android.view.ViewPropertyAnimator.js" "hyperloop/android.view.ViewStructure.js" "hyperloop/android.view.ViewTreeObserver$OnDrawListener.js" "hyperloop/android.view.ViewTreeObserver$OnGlobalFocusChangeListener.js" "hyperloop/android.view.ViewTreeObserver$OnGlobalLayoutListener.js" "hyperloop/android.view.ViewTreeObserver$OnPreDrawListener.js" "hyperloop/android.view.ViewTreeObserver$OnScrollChangedListener.js" "hyperloop/android.view.ViewTreeObserver$OnTouchModeChangeListener.js" "hyperloop/android.view.ViewTreeObserver$OnWindowAttachListener.js" "hyperloop/android.view.ViewTreeObserver$OnWindowFocusChangeListener.js" "hyperloop/android.view.ViewTreeObserver.js" "hyperloop/android.view.WindowId$FocusObserver.js" "hyperloop/android.view.WindowId.js" "hyperloop/android.view.WindowInsets.js" "hyperloop/android.view.accessibility.AccessibilityEvent.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$AccessibilityAction.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$CollectionInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$CollectionItemInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo$RangeInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeInfo.js" "hyperloop/android.view.accessibility.AccessibilityNodeProvider.js" "hyperloop/android.view.accessibility.AccessibilityRecord.js" "hyperloop/android.view.accessibility.AccessibilityWindowInfo.js" "hyperloop/android.view.accessibility.js" "hyperloop/android.view.animation.Animation$AnimationListener.js" "hyperloop/android.view.animation.Animation$Description.js" "hyperloop/android.view.animation.Animation.js" "hyperloop/android.view.animation.Interpolator.js" "hyperloop/android.view.animation.LayoutAnimationController$AnimationParameters.js" "hyperloop/android.view.animation.LayoutAnimationController.js" "hyperloop/android.view.animation.Transformation.js" "hyperloop/android.view.animation.js" "hyperloop/android.view.inputmethod.CompletionInfo.js" "hyperloop/android.view.inputmethod.CorrectionInfo.js" "hyperloop/android.view.inputmethod.EditorInfo.js" "hyperloop/android.view.inputmethod.ExtractedText.js" "hyperloop/android.view.inputmethod.ExtractedTextRequest.js" "hyperloop/android.view.inputmethod.InputConnection.js" "hyperloop/android.view.inputmethod.js" "hyperloop/android.view.js" "hyperloop/java.io.File.js" "hyperloop/java.io.FileDescriptor.js" "hyperloop/java.io.FileFilter.js" "hyperloop/java.io.FileInputStream.js" "hyperloop/java.io.FileOutputStream.js" "hyperloop/java.io.FilenameFilter.js" "hyperloop/java.io.FilterOutputStream.js" "hyperloop/java.io.IOException.js" "hyperloop/java.io.InputStream.js" "hyperloop/java.io.OutputStream.js" "hyperloop/java.io.PrintStream.js" "hyperloop/java.io.PrintWriter.js" "hyperloop/java.io.Reader.js" "hyperloop/java.io.Serializable.js" "hyperloop/java.io.Writer.js" "hyperloop/java.io.js" "hyperloop/java.js" "hyperloop/java.lang.Appendable.js" "hyperloop/java.lang.Boolean.js" "hyperloop/java.lang.Byte.js" "hyperloop/java.lang.CharSequence.js" "hyperloop/java.lang.Class.js" "hyperloop/java.lang.ClassLoader.js" "hyperloop/java.lang.Double.js" "hyperloop/java.lang.Enum.js" "hyperloop/java.lang.Exception.js" "hyperloop/java.lang.Float.js" "hyperloop/java.lang.Integer.js" "hyperloop/java.lang.Iterable.js" "hyperloop/java.lang.Long.js" "hyperloop/java.lang.Number.js" "hyperloop/java.lang.Object.js" "hyperloop/java.lang.Package.js" "hyperloop/java.lang.Runnable.js" "hyperloop/java.lang.Short.js" "hyperloop/java.lang.String.js" "hyperloop/java.lang.StringBuffer.js" "hyperloop/java.lang.StringBuilder.js" "hyperloop/java.lang.Thread$State.js" "hyperloop/java.lang.Thread$UncaughtExceptionHandler.js" "hyperloop/java.lang.Thread.js" "hyperloop/java.lang.ThreadGroup.js" "hyperloop/java.lang.Throwable.js" "hyperloop/java.lang.annotation.Annotation.js" "hyperloop/java.lang.annotation.js" "hyperloop/java.lang.js" "hyperloop/java.lang.reflect.AccessibleObject.js" "hyperloop/java.lang.reflect.Constructor.js" "hyperloop/java.lang.reflect.Field.js" "hyperloop/java.lang.reflect.Method.js" "hyperloop/java.lang.reflect.Type.js" "hyperloop/java.lang.reflect.js" "hyperloop/java.net.ContentHandler.js" "hyperloop/java.net.ContentHandlerFactory.js" "hyperloop/java.net.DatagramPacket.js" "hyperloop/java.net.DatagramSocket.js" "hyperloop/java.net.DatagramSocketImpl.js" "hyperloop/java.net.DatagramSocketImplFactory.js" "hyperloop/java.net.FileNameMap.js" "hyperloop/java.net.InetAddress.js" "hyperloop/java.net.NetworkInterface.js" "hyperloop/java.net.ProtocolFamily.js" "hyperloop/java.net.Proxy$Type.js" "hyperloop/java.net.Proxy.js" "hyperloop/java.net.ServerSocket.js" "hyperloop/java.net.Socket.js" "hyperloop/java.net.SocketAddress.js" "hyperloop/java.net.SocketImpl.js" "hyperloop/java.net.SocketImplFactory.js" "hyperloop/java.net.SocketOption.js" "hyperloop/java.net.URI.js" "hyperloop/java.net.URL.js" "hyperloop/java.net.URLConnection.js" "hyperloop/java.net.URLStreamHandler.js" "hyperloop/java.net.URLStreamHandlerFactory.js" "hyperloop/java.net.js" "hyperloop/java.nio.Buffer.js" "hyperloop/java.nio.ByteBuffer.js" "hyperloop/java.nio.ByteOrder.js" "hyperloop/java.nio.CharBuffer.js" "hyperloop/java.nio.DoubleBuffer.js" "hyperloop/java.nio.FloatBuffer.js" "hyperloop/java.nio.IntBuffer.js" "hyperloop/java.nio.LongBuffer.js" "hyperloop/java.nio.MappedByteBuffer.js" "hyperloop/java.nio.ShortBuffer.js" "hyperloop/java.nio.channels.AsynchronousFileChannel.js" "hyperloop/java.nio.channels.Channel.js" "hyperloop/java.nio.channels.CompletionHandler.js" "hyperloop/java.nio.channels.DatagramChannel.js" "hyperloop/java.nio.channels.FileChannel$MapMode.js" "hyperloop/java.nio.channels.FileChannel.js" "hyperloop/java.nio.channels.FileLock.js" "hyperloop/java.nio.channels.NetworkChannel.js" "hyperloop/java.nio.channels.Pipe$SinkChannel.js" "hyperloop/java.nio.channels.Pipe$SourceChannel.js" "hyperloop/java.nio.channels.Pipe.js" "hyperloop/java.nio.channels.ReadableByteChannel.js" "hyperloop/java.nio.channels.SeekableByteChannel.js" "hyperloop/java.nio.channels.SelectableChannel.js" "hyperloop/java.nio.channels.SelectionKey.js" "hyperloop/java.nio.channels.Selector.js" "hyperloop/java.nio.channels.ServerSocketChannel.js" "hyperloop/java.nio.channels.SocketChannel.js" "hyperloop/java.nio.channels.WritableByteChannel.js" "hyperloop/java.nio.channels.js" "hyperloop/java.nio.channels.spi.AbstractInterruptibleChannel.js" "hyperloop/java.nio.channels.spi.AbstractSelectableChannel.js" "hyperloop/java.nio.channels.spi.AbstractSelectionKey.js" "hyperloop/java.nio.channels.spi.AbstractSelector.js" "hyperloop/java.nio.channels.spi.SelectorProvider.js" "hyperloop/java.nio.channels.spi.js" "hyperloop/java.nio.charset.Charset.js" "hyperloop/java.nio.charset.CharsetDecoder.js" "hyperloop/java.nio.charset.CharsetEncoder.js" "hyperloop/java.nio.charset.CoderResult.js" "hyperloop/java.nio.charset.CodingErrorAction.js" "hyperloop/java.nio.charset.js" "hyperloop/java.nio.file.DirectoryStream$Filter.js" "hyperloop/java.nio.file.DirectoryStream.js" "hyperloop/java.nio.file.FileStore.js" "hyperloop/java.nio.file.FileSystem.js" "hyperloop/java.nio.file.Path.js" "hyperloop/java.nio.file.PathMatcher.js" "hyperloop/java.nio.file.WatchKey.js" "hyperloop/java.nio.file.WatchService.js" "hyperloop/java.nio.file.Watchable.js" "hyperloop/java.nio.file.attribute.BasicFileAttributes.js" "hyperloop/java.nio.file.attribute.FileAttributeView.js" "hyperloop/java.nio.file.attribute.FileStoreAttributeView.js" "hyperloop/java.nio.file.attribute.FileTime.js" "hyperloop/java.nio.file.attribute.GroupPrincipal.js" "hyperloop/java.nio.file.attribute.UserPrincipal.js" "hyperloop/java.nio.file.attribute.UserPrincipalLookupService.js" "hyperloop/java.nio.file.attribute.js" "hyperloop/java.nio.file.js" "hyperloop/java.nio.file.spi.FileSystemProvider.js" "hyperloop/java.nio.file.spi.js" "hyperloop/java.nio.js" "hyperloop/java.security.CodeSource.js" "hyperloop/java.security.Permission.js" "hyperloop/java.security.PermissionCollection.js" "hyperloop/java.security.ProtectionDomain.js" "hyperloop/java.security.js" "hyperloop/java.util.AbstractCollection.js" "hyperloop/java.util.AbstractList.js" "hyperloop/java.util.AbstractMap$SimpleEntry.js" "hyperloop/java.util.AbstractMap$SimpleImmutableEntry.js" "hyperloop/java.util.AbstractMap.js" "hyperloop/java.util.ArrayList.js" "hyperloop/java.util.Collection.js" "hyperloop/java.util.Comparator.js" "hyperloop/java.util.Enumeration.js" "hyperloop/java.util.HashMap.js" "hyperloop/java.util.Iterator.js" "hyperloop/java.util.List.js" "hyperloop/java.util.ListIterator.js" "hyperloop/java.util.Locale$Builder.js" "hyperloop/java.util.Locale$Category.js" "hyperloop/java.util.Locale.js" "hyperloop/java.util.Map$Entry.js" "hyperloop/java.util.Map.js" "hyperloop/java.util.Random.js" "hyperloop/java.util.Set.js" "hyperloop/java.util.SortedMap.js" "hyperloop/java.util.concurrent.Callable.js" "hyperloop/java.util.concurrent.ExecutorService.js" "hyperloop/java.util.concurrent.Future.js" "hyperloop/java.util.concurrent.TimeUnit.js" "hyperloop/java.util.concurrent.js" "hyperloop/java.util.js" "hyperloop/org.js" "hyperloop/org.xmlpull.js" "hyperloop/org.xmlpull.v1.XmlPullParser.js" "hyperloop/org.xmlpull.v1.XmlSerializer.js" "hyperloop/org.xmlpull.v1.js" "ti.cloud.js" "_app_props_.json"
       [INFO]  Writing /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/assets/app.json
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.res.zip
       [INFO]  Extracting module resources: /Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.res.zip
       [INFO]  No aidl files to compile, continuing
       [INFO]  Generating i18n files
       [INFO]  Generating /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/res/values/theme.xml
       [INFO]  Packaging application: /Users/kdesutter/System/androidsdk/build-tools/23.0.2/aapt "package" "-f" "-m" "-J" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/gen" "-M" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/AndroidManifest.xml" "-A" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/assets" "-S" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/res" "-I" "/Users/kdesutter/System/androidsdk/platforms/android-23/android.jar" "-F" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app.ap_" "--auto-add-overlay" "--extra-packages" "ti.modules.titanium.ui:android.support.v7.appcompat:android.support.v7.cardview" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116821-17472-16rrd1v/res" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116821-17472-vtzew/res" "-S" "/var/folders/jx/z0k38kn56_b7p06vjz40dghw0000gn/T/116821-17472-t2qa18/res"
       [INFO]  Building Java source files: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/javac "-J-Xmx1024M" "-encoding" "utf8" "-bootclasspath" "/Users/kdesutter/System/androidsdk/platforms/android-23/android.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-v8.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/aps-analytics.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/jaxen-1.1.1.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/ti-commons-codec-1.3.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-common.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-ui.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/nineoldandroids-appc-2.4.0.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-appcompat.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v4.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v7-appcompat.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-cardview.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/cardview-v7-23.0.1.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/hyperloop-android.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-1.4.jar:/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-dx-1.4.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-apt.jar:/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/lib/titanium-verify.jar:R.class:AssetCryptImpl.class:Hyperloop_testActivity.class:Hyperloop_testAppInfo.class:Hyperloop_testApplication.class" "-d" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes" "-proc:none" "-target" "1.6" "-source" "1.6" "@/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/java-sources.txt"
       [INFO]  Running dexer: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/java "-Xmx1024M" "-XX:-UseGCOverheadLimit" "-Djava.ext.dirs=/Users/kdesutter/System/androidsdk/platform-tools" "-jar" "/Users/kdesutter/System/androidsdk/build-tools/23.0.2/lib/dx.jar" "--dex" "--output=/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes.dex" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/classes" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/lib/titanium-verify.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/hyperloop-android.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-1.4.jar" "/Users/kdesutter/Library/Application Support/Titanium/modules/android/hyperloop/1.2.6/lib/dexmaker-dx-1.4.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-v8.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-analytics.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/aps-analytics.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-android.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/jaxen-1.1.1.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/ti-commons-codec-1.3.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/kroll-common.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/titanium.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-filesystem.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-app.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-ui.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/nineoldandroids-appc-2.4.0.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-media.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-appcompat.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v4.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/android-support-v7-appcompat.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-cardview.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/cardview-v7-23.0.1.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-locale.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-network.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-xml.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-utils.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-geolocation.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-accelerometer.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-contacts.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-map.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-calendar.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-gesture.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-platform.jar" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/modules/titanium-database.jar"
       [INFO]  Creating unsigned apk
       [INFO]  Processing /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/src
       [INFO]  Writing unsigned apk: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app-unsigned.apk
       [INFO]  Using MD5withRSA signature algorithm
       [INFO]  Signing apk: /Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home/bin/jarsigner "-sigalg" "MD5withRSA" "-digestalg" "SHA1" "-keystore" "/Users/kdesutter/Library/Application Support/Titanium/mobilesdk/osx/5.5.0.GA/android/dev_keystore" "-storepass" "*******" "-signedjar" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/app-unsigned.apk" "tidev"
       [INFO]  Aligning zip file: /Users/kdesutter/System/androidsdk/build-tools/23.0.2/zipalign "-v" "4" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk" "/Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apkz"
       [INFO]  Writing build manifest: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/build-manifest.json
       [INFO]  Making sure the adb server is running
       [INFO]  Installing apk: /Users/kdesutter/Documents/Projects/hyperloop_test/build/android/bin/hyperloop_test.apk
       [INFO]  App successfully installed
       [INFO]  Starting app: com.kangacoders.hyperlooptest/.Hyperloop_testActivity
       [INFO]  Application pid: 2301
       [INFO]  Project built successfully in 1m 40s 74ms
       
       -- Start application log -----------------------------------------------------
       [INFO]  I/        (  102): debuggerd: Mar 24 2016 11:19:18
       [INFO]  E/vinput-seamless(  345): found seamless mouse device
       [INFO]  E/        (  342): Failed to connect to host (UnixStream)!!!
       [INFO]  E/        (  342): Failed to connect to host (UnixStream)!!!
       [INFO]  E/        (  477): batterystats service unavailable!
       [INFO]  E/        (  477): batterystats service unavailable!
       [INFO]  E/        (  477): batterystats service unavailable!
       [INFO]  E/        (  477): batterystats service unavailable!
       [INFO]  E/android.os.Debug(  478): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI(  478): register_android_hardware_Radio DONE
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf70d21c0, tid 783
       [INFO]  D/        (  794): HostConnection::get() New Host Connection established 0xf62ca0f0, tid 797
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf70d2b70, tid 786
       [INFO]  I/APM::ConfigParsingUtils(  477): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
       [INFO]  I/PackageManager.DexOptimizer(  799): Running dexopt (dex2oat) on: /system/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk pkg=com.google.android.syncadapters.contacts isa=x86 vmSafeMode=false debuggable=false oatDir = null
       [INFO]  D/        (  799): HostConnection::get() New Host Connection established 0xdf3fb430, tid 856
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf70d2c30, tid 798
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf6bfe040, tid 784
       [INFO]  D/        (  799): HostConnection::get() New Host Connection established 0xe81ffad0, tid 876
       [INFO]  E/WifiNative-HAL(  799): Could not start hal
       [INFO]  D/WifiNative-HAL(  799): Setting external_sim to 1
       [INFO]  D/WifiNative-HAL(  799): Failing getSupportedFeatureset because HAL isn't started
       [INFO]  D/        (  799): HostConnection::get() New Host Connection established 0xdc81bfa0, tid 799
       [INFO]  D/Launcher.Model( 1074): Old launcher provider: content://com.android.launcher2.settings/favorites?notify=true
       [INFO]  D/Launcher.Model( 1074): Old launcher provider does not exist.
       [INFO]  I/LatinIME:LogUtils( 1025): Dictionary info: dictionary = contacts.en_US ; version = 1474477462 ; date = ?
       [INFO]  I/vol.Events(  910): writeEvent collection_started
       [INFO]  I/vol.Events(  910): writeEvent external_ringer_mode_changed normal
       [INFO]  I/vol.Events(  910): writeEvent internal_ringer_mode_changed normal
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_ALARM 6
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_BLUETOOTH_SCO 7
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_MUSIC 11
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_RING 5
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_SYSTEM 5
       [INFO]  I/vol.Events(  910): writeEvent level_changed STREAM_VOICE_CALL 4
       [INFO]  E/DcSwitchStateMachine-0( 1061): DctController is not ready
       [INFO]  D/        ( 1074): HostConnection::get() New Host Connection established 0xf2c3c6d0, tid 1074
       [INFO]  D/        ( 1074): HostConnection::get() New Host Connection established 0xee8f0830, tid 1324
       [INFO]  D/        (  910): HostConnection::get() New Host Connection established 0xe07124e0, tid 910
       [INFO]  I/LatinIME:LogUtils( 1025): Dictionary info: dictionary = userunigram.en_US ; version = 1474477464 ; date = ?
       [INFO]  I/LatinIME:LogUtils( 1025): Dictionary info: dictionary = UserHistoryDictionary.en_US ; version = 1474477465 ; date = ?
       [INFO]  E/DcSwitchStateMachine-0( 1061): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  E/DcSwitchStateMachine-0( 1061): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  I/LatinIME:LogUtils( 1025): Dictionary info: dictionary = main:en ; version = 54 ; date = 1414726273
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf6bfe150, tid 945
       [INFO]  D/        (  783): HostConnection::get() New Host Connection established 0xf6bfe370, tid 1376
       [INFO]  D/        (  910): HostConnection::get() New Host Connection established 0xeea52520, tid 1436
       [INFO]  D/        (  799): HostConnection::get() New Host Connection established 0xdc37c0d0, tid 818
       [INFO]  E/DcSwitchStateMachine-0( 1061): EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED
       [INFO]  D/ConnectivityManager.CallbackHandler(  910): CM callback handler got msg 524290
       [INFO]  D/ConnectivityManager.CallbackHandler(  910): CM callback handler got msg 524289
       [INFO]  D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100](  799): Checking http://connectivitycheck.gstatic.com/generate_204 on "WiredSSID", connectivitycheck.gstatic.com=216.58.212.238,2a00:1450:400e:803::200e
       [INFO]  D/NetworkMonitor/NetworkAgentInfo [WIFI () - 100](  799): isCaptivePortal: ret=204 headers={null=[HTTP/1.1 204 No Content], Content-Length=[0], Date=[Wed, 21 Sep 2016 17:04:35 GMT], X-Android-Received-Millis=[1474477471225], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1474477471196]}
       [INFO]  D/ConnectivityManager.CallbackHandler(  910): CM callback handler got msg 524294
       [INFO]  D/WifiNative-HAL(  799): Failing getSupportedFeatureset because HAL isn't started
       [INFO]  I/System.out( 1380): gmsNlpServiceThread This NLP should run continuously. intent is Intent { act=com.google.android.location.internal.GMS_NLP pkg=com.google.android.gms }
       [INFO]  W/InstanceID/Rpc( 1380): Found 10060
       [INFO]  W/InstanceID/Rpc( 1494): Found 10060
       [INFO]  I/FA-SVC  ( 1494): App measurement is starting up, version: 9683
       [INFO]  I/FA-SVC  ( 1494): To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
       [INFO]  I/FA-SVC  ( 1494): To enable faster debug mode event logging run:
       [INFO]  I/FA-SVC  ( 1494):   adb shell setprop firebase.analytics.debug-mode com.google.android.gms
       [INFO]  I/FA-SVC  ( 1494): This instance being marked as an uploader
       [INFO]  W/DG.WV   ( 2074): Widevine DRM not supported on this device
       [INFO]  W/DG.WV   ( 2074): android.media.UnsupportedSchemeException: Failed to instantiate drm object.
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.native_setup(Native Method)
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.<init>(MediaDrm.java:215)
       [INFO]  W/DG.WV   ( 2074): 	at mfj.a(:com.google.android.gms:121)
       [INFO]  W/DG.WV   ( 2074): 	at mce.run(:com.google.android.gms:1094)
       [INFO]  W/DG.WV   ( 2074): 	at jmg.run(:com.google.android.gms:450)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  W/DG.WV   ( 2074): 	at jqr.run(:com.google.android.gms:17)
       [INFO]  W/DG.WV   ( 2074): 	at java.lang.Thread.run(Thread.java:818)
       [INFO]  D/        ( 2074): HostConnection::get() New Host Connection established 0xe81fcb80, tid 2085
       [INFO]  E/NetworkScheduler.ATC( 1380): Provided calling package not found: com.google.android.apps.photos
       [INFO]  D/ConnectivityManager.CallbackHandler( 1494): CM callback handler got msg 524290
       [INFO]  E/android.os.Debug( 2194): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2194): register_android_hardware_Radio DONE
       [INFO]  I/PackageManager.DexOptimizer(  799): Running dexopt (dex2oat) on: /data/app/vmdl1970171096.tmp/base.apk pkg=com.kangacoders.hyperlooptest isa=x86 vmSafeMode=false debuggable=false oatDir = /data/app/vmdl1970171096.tmp/oat
       [INFO]  E/NetworkScheduler.SR( 1380): Invalid parameter app
       [INFO]  E/NetworkScheduler.SR( 1380): Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
       [INFO]  E/Drive.UninstallOperation( 1494): Package still installed com.kangacoders.hyperlooptest
       [INFO]  E/android.os.Debug( 2248): failed to load memtrack module: -2
       [INFO]  I/Radio-JNI( 2248): register_android_hardware_Radio DONE
       [INFO]  E/NetworkScheduler.SR( 1380): Invalid parameter app
       [INFO]  E/NetworkScheduler.SR( 1380): Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
       [INFO]  E/NetworkScheduler.ATC( 1380): Trying to release unacquired lock: com.google.android.gms/.clearcut.service.VacuumService
       [INFO]  TiApplication: (main) [0,0] checkpoint, app created.
       [INFO]  TiApplication: (main) [49,49] Titanium 5.5.0 (2016/09/13 12:39 44a2e3f)
       [INFO]  I/GAv4-SVC( 1494): Google Analytics 9.6.83 is starting up.
       [WARN]  V8Object: (main) [375,424] Runtime disposed, cannot set property 'userAgent'
       [INFO]  TiApplication: (main) [51,475] Titanium Javascript runtime: v8
       [INFO]  TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null
       [INFO]  W/DG.WV   ( 2074): Widevine DRM not supported on this device
       [INFO]  W/DG.WV   ( 2074): android.media.UnsupportedSchemeException: Failed to instantiate drm object.
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.native_setup(Native Method)
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.<init>(MediaDrm.java:215)
       [INFO]  W/DG.WV   ( 2074): 	at mfj.a(:com.google.android.gms:121)
       [INFO]  W/DG.WV   ( 2074): 	at mce.run(:com.google.android.gms:1094)
       [INFO]  W/DG.WV   ( 2074): 	at jmg.run(:com.google.android.gms:450)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  W/DG.WV   ( 2074): 	at jqr.run(:com.google.android.gms:17)
       [INFO]  W/DG.WV   ( 2074): 	at java.lang.Thread.run(Thread.java:818)
       [ERROR] KrollProxy: (main) [663,663] Error creating proxy
       [ERROR] KrollProxy: java.lang.NoSuchMethodException: <init> [class org.appcelerator.titanium.TiContext]
       [ERROR] KrollProxy: 	at java.lang.Class.getConstructor(Class.java:528)
       [ERROR] KrollProxy: 	at java.lang.Class.getConstructor(Class.java:492)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.KrollProxy.createDeprecatedProxy(KrollProxy.java:161)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native Method)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [ERROR] KrollProxy: 	at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [ERROR] KrollProxy: 	at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [ERROR] KrollProxy: 	at android.app.Activity.performCreate(Activity.java:6237)
       [ERROR] KrollProxy: 	at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.-wrap11(ActivityThread.java)
       [ERROR] KrollProxy: 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [ERROR] KrollProxy: 	at android.os.Handler.dispatchMessage(Handler.java:102)
       [ERROR] KrollProxy: 	at android.os.Looper.loop(Looper.java:148)
       [ERROR] KrollProxy: 	at android.app.ActivityThread.main(ActivityThread.java:5417)
       [ERROR] KrollProxy: 	at java.lang.reflect.Method.invoke(Native Method)
       [ERROR] KrollProxy: 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [ERROR] KrollProxy: 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/java_vm_ext.cc:410] JNI DETECTED ERROR IN APPLICATION: obj == null
       [INFO]  art: art/runtime/java_vm_ext.cc:410]     in call to CallVoidMethodV
       [INFO]  art: art/runtime/java_vm_ext.cc:410]     from void org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(java.lang.String, java.lang.String, org.appcelerator.kroll.KrollProxySupport)
       [INFO]  art: art/runtime/java_vm_ext.cc:410] "main" prio=5 tid=1 Runnable
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | group="main" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3df4a00
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | sysTid=2301 nice=0 cgrp=default sched=0/0 handle=0xf7766c00
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | state=R schedstat=( 976745614 113380819 395 ) utm=71 stm=26 core=3 HZ=100
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | stack=0xff474000-0xff476000 stackSize=8MB
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   | held mutexes= "mutator lock"(shared held)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #02 pc 003a489f  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+1247)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #03 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #04 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #05 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #06 pc 00086573  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #07 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #08 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #09 pc 00018728   (???)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   native: #10 pc 05ffffff  ???
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/java_vm_ext.cc:410]
       [INFO]  D/        ( 2074): HostConnection::get() New Host Connection established 0xe81fcfe0, tid 2098
       [INFO]  art: art/runtime/runtime.cc:366] Runtime aborting...
       [INFO]  art: art/runtime/runtime.cc:366] Aborting thread:
       [INFO]  art: art/runtime/runtime.cc:366] "main" prio=5 tid=1 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3df4a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2301 nice=0 cgrp=default sched=0/0 handle=0xf7766c00
       [INFO]  art: art/runtime/runtime.cc:366]   | state=R schedstat=( 994192978 114042735 399 ) utm=71 stm=27 core=3 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xff474000-0xff476000 stackSize=8MB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes= "abort lock"
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 00516abe  /system/lib/libart.so (art::Runtime::Abort()+1164)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 0014d9f3  /system/lib/libart.so (art::LogMessage::~LogMessage()+1343)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 003a52c2  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+3842)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 00086573  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 00018728   (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #12 pc 05ffffff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/runtime.cc:366] Dumping all threads without appropriate locks held: thread list lock mutator lock
       [INFO]  art: art/runtime/runtime.cc:366] All threads:
       [INFO]  art: art/runtime/runtime.cc:366] DALVIK THREADS (12):
       [INFO]  art: art/runtime/runtime.cc:366] "main" prio=5 tid=1 Runnable
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=0 dsCount=0 obj=0x74c84258 self=0xf3df4a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2301 nice=0 cgrp=default sched=0/0 handle=0xf7766c00
       [INFO]  art: art/runtime/runtime.cc:366]   | state=R schedstat=( 1007000336 114280144 400 ) utm=71 stm=29 core=3 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xff474000-0xff476000 stackSize=8MB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes= "abort lock" "mutator lock"(shared held)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0058b0e2  /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::ArtMethod*, void*)+226)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00550d2e  /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+286)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0055b63b  /system/lib/libart.so (art::DumpCheckpoint::Run(art::Thread*)+923)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 0055e1dd  /system/lib/libart.so (art::ThreadList::RunCheckpoint(art::Closure*)+301)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0055f4d3  /system/lib/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+243)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00516928  /system/lib/libart.so (art::Runtime::Abort()+758)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 0014d9f3  /system/lib/libart.so (art::LogMessage::~LogMessage()+1343)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 003a52c2  /system/lib/libart.so (art::JavaVMExt::JniAbort(char const*, char const*)+3842)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 003a5fc2  /system/lib/libart.so (art::JavaVMExt::JniAbortF(char const*, char const*, ...)+116)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 003f3307  /system/lib/libart.so (art::JNI::CallVoidMethodV(_JNIEnv*, _jobject*, _jmethodID*, char*)+718)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 0008600a  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (_JNIEnv::CallVoidMethod(_jobject*, _jmethodID*, ...)+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 00086573  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #12 pc 0008763c  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (titanium::Proxy::onPropertyChanged(v8::Local<v8::String>, v8::Local<v8::Value>, v8::AccessorInfo const&)+28)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #13 pc 00486f37  /data/app/com.kangacoders.hyperlooptest-1/lib/x86/libkroll-v8.so (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #14 pc 00018728   (???)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #15 pc 05ffffff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.nativeRunModule(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.runtime.v8.V8Runtime.doRunModule(V8Runtime.java:189)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.kroll.KrollRuntime.runModule(KrollRuntime.java:241)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.loadActivityScript(TiLaunchActivity.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.windowCreated(TiLaunchActivity.java:150)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.windowCreated(TiRootActivity.java:107)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiBaseActivity.onCreate(TiBaseActivity.java:673)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiLaunchActivity.onCreate(TiLaunchActivity.java:143)
       [INFO]  art: art/runtime/runtime.cc:366]   at org.appcelerator.titanium.TiRootActivity.onCreate(TiRootActivity.java:96)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Activity.performCreate(Activity.java:6237)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1107)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2369)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2476)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.-wrap11(ActivityThread.java:-1)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1344)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Handler.dispatchMessage(Handler.java:102)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.os.Looper.loop(Looper.java:148)
       [INFO]  art: art/runtime/runtime.cc:366]   at android.app.ActivityThread.main(ActivityThread.java:5417)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.reflect.Method.invoke!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       [INFO]  art: art/runtime/runtime.cc:366]   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Signal Catcher" prio=5 tid=2 WaitingInMainSignalCatcherLoop
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6a0a0 self=0xeea42000
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2304 nice=0 cgrp=default sched=0/0 handle=0xf31b3930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 788460 348886 5 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf30b7000-0xf30b9000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_sigtimedwait+0x16f/0x200
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: C_SYSC_rt_sigtimedwait+0x8d/0xf0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_rt_sigtimedwait+0xe/0x10
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 0008461b  /system/lib/libc.so (__rt_sigtimedwait+27)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00027fcc  /system/lib/libc.so (sigwait+69)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 00521fb6  /system/lib/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+118)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 005257ae  /system/lib/libart.so (art::SignalCatcher::Run(void*)+302)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "JDWP" prio=5 tid=3 WaitingInMainDebuggerLoop
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c6d0a0 self=0xec92f200
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2306 nice=0 cgrp=default sched=0/0 handle=0xf30b4930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 1387291 1167755 4 ) utm=0 stm=0 core=1 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2fb8000-0xf2fba000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: unix_stream_recvmsg+0x30d/0x870
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: sock_recvmsg+0x89/0xb0
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ___sys_recvmsg+0x100/0x290
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: __sys_recvmsg+0x42/0x80
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_socketcall+0x71/0x260
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00084d91  /system/lib/libc.so (recvmsg+17)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 0066d68f  /system/lib/libart.so (art::JDWP::JdwpAdbState::Accept()+267)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 003bea6a  /system/lib/libart.so (art::JDWP::JdwpState::Run()+282)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 003c0921  /system/lib/libart.so (art::JDWP::StartJdwpThread(void*)+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "ReferenceQueueDaemon" prio=5 tid=4 Waiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c69160 self=0xec936000
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2308 nice=0 cgrp=default sched=0/0 handle=0xf2fb5930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 1796276 902166 16 ) utm=0 stm=0 core=3 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2eb3000-0xf2eb5000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e0  /system/lib/libc.so (syscall+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155034  /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+772)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044f061  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+1777)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 004705f9  /system/lib/libart.so (art::Object_wait(_JNIEnv*, _jobject*)+90)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000494  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__+104)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 8b018b33  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x0492c886> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:147)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0492c886> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "FinalizerDaemon" prio=5 tid=5 Waiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c691c0 self=0xec936500
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2309 nice=0 cgrp=default sched=0/0 handle=0xf2eb0930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 3103048 72928 11 ) utm=0 stm=0 core=3 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2dae000-0xf2db0000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e0  /system/lib/libc.so (syscall+32)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155034  /system/lib/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+772)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044f061  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+1777)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 4f3dd9d7  ???
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 4eea53ff  ???
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x093c6547> (a java.lang.ref.ReferenceQueue)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait(Object.java:423)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:101)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x093c6547> (a java.lang.ref.ReferenceQueue)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:72)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:185)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "FinalizerWatchdogDaemon" prio=5 tid=6 Sleeping
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c69220 self=0xec936a00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2310 nice=0 cgrp=default sched=0/0 handle=0xf2dab930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 4275739 1821098 26 ) utm=0 stm=0 core=1 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xf2ca9000-0xf2cab000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047cec3  /system/lib/libart.so (art::Thread_sleep(_JNIEnv*, _jclass*, _jobject*, long long, int)+107)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00024c8e  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+162)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - sleeping on <0x017cf174> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep(Thread.java:1031)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x017cf174> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.sleep(Thread.java:985)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:273)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:284)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:232)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "HeapTaskDaemon" prio=5 tid=7 Blocked
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c69280 self=0xec936f00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2311 nice=0 cgrp=default sched=0/0 handle=0xeedaf930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 30072677 10121610 57 ) utm=1 stm=1 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xeecad000-0xeecaf000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 002da882  /system/lib/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+1170)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 002dafa5  /system/lib/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0045ee9c  /system/lib/libart.so (art::VMRuntime_runHeapTasks(_JNIEnv*, _jobject*)+53)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000494  /data/dalvik-cache/x86/system@framework@boot.oat (Java_dalvik_system_VMRuntime_runHeapTasks__+104)
       [INFO]  art: art/runtime/runtime.cc:366]   at dalvik.system.VMRuntime.runHeapTasks(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting to lock an unknown object
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:355)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Binder_1" prio=5 tid=8 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c750a0 self=0xeea43400
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2312 nice=0 cgrp=default sched=0/0 handle=0xeebac930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 4322129 105336 13 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xeeab0000-0xeeab2000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_thread_read+0x91d/0x1070
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl_write_read.isra.45+0x101/0x280
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl+0x1cf/0x640
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_ioctl+0xad/0x1210
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00085244  /system/lib/libc.so (__ioctl+20)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00094cea  /system/lib/libc.so (ioctl+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 000267ff  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+239)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 000271d5  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 00027317  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+151)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00030362  /system/lib/libbinder.so (android::PoolThread::threadLoop()+40)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #06 pc 00014aac  /system/lib/libutils.so (android::Thread::_threadLoop(void*)+418)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #07 pc 0006bfee  /system/lib/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+98)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #08 pc 000141cf  /system/lib/libutils.so (thread_data_t::trampoline(thread_data_t const*)+122)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #09 pc 000807f3  /system/lib/libc.so (__pthread_start(void*)+56)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #10 pc 00021952  /system/lib/libc.so (__start_thread+25)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #11 pc 000170b6  /system/lib/libc.so (__bionic_clone+70)
       [INFO]  art: art/runtime/runtime.cc:366]   (no managed stack frames)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "Binder_2" prio=5 tid=9 Native
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12c7b0a0 self=0xec937e00
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2313 nice=0 cgrp=default sched=0/0 handle=0xeea3f930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 3055120 3583 10 ) utm=0 stm=0 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xee943000-0xee945000 stackSize=1014KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_thread_read+0x91d/0x1070
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl_write_read.isra.45+0x101/0x280
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: binder_ioctl+0x1cf/0x640
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_sys_ioctl+0xad/0x1210
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 00085244  /system/lib/libc.so (__ioctl+20)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00094cea  /system/lib/libc.so (ioctl+42)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 000267ff  /system/lib/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+239)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 000271d5  /system/lib/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+37)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 000272d1  /system/lib/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+81)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00030362  /system/lib/libbinder.so (android::PoolThread::threadLoop()+40)
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x077c569d> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.parkFor$(Thread.java:1220)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x077c569d> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at sun.misc.Unsafe.park(Unsafe.java:299)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2053)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1090)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1071)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1038)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1098)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]
       [INFO]  art: art/runtime/runtime.cc:366] "pool-2-thread-1" prio=5 tid=11 TimedWaiting
       [INFO]  art: art/runtime/runtime.cc:366]   | group="" sCount=1 dsCount=0 obj=0x12e368e0 self=0xdfbeb500
       [INFO]  art: art/runtime/runtime.cc:366]   | sysTid=2344 nice=0 cgrp=default sched=0/0 handle=0xdedfa930
       [INFO]  art: art/runtime/runtime.cc:366]   | state=S schedstat=( 24268054 421840 1 ) utm=0 stm=2 core=2 HZ=100
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xdecf8000-0xdecfa000 stackSize=1038KB
       [INFO]  art: art/runtime/runtime.cc:366]   | held mutexes=
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait_queue_me+0xd2/0x130
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: futex_wait+0x169/0x250
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: do_futex+0xe5/0xd00
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: compat_SyS_futex+0x71/0x140
       [INFO]  art: art/runtime/runtime.cc:366]   kernel: ia32_sysret+0x0/0x5
       [INFO]  art: art/runtime/runtime.cc:366]   native: #00 pc 000171e2  /system/lib/libc.so (syscall+34)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #01 pc 00155f21  /system/lib/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long long, int)+849)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #02 pc 0044ec9d  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, long long, int, bool, art::ThreadState)+813)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #03 pc 00452ce5  /system/lib/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long long, int, bool, art::ThreadState)+197)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #04 pc 0047065c  /system/lib/libart.so (art::Object_waitJI(_JNIEnv*, _jobject*, long long, int)+92)
       [INFO]  art: art/runtime/runtime.cc:366]   native: #05 pc 00000704  /data/dalvik-cache/x86/system@framework@boot.oat (Java_java_lang_Object_wait__JI+136)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Object.wait!(Native method)
       [INFO]  art: art/runtime/runtime.cc:366]   - waiting on <0x0cc2e712> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.parkFor$(Thread.java:1220)
       [INFO]  art: art/runtime/runtime.cc:366]   - locked <0x0cc2e712> (a java.lang.Object)
       [INFO]  art: art/runtime/runtime.cc:366]   at sun.misc.Unsafe.park(Unsafe.java:299)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2053)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1090)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1071)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1038)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1098)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  art: art/runtime/runtime.cc:366]   at java.lang.Thread.run(Thread.java:818)
       [INFO]  art: art/runtime/runtime.cc:366]   | stack=0xdeb3d000-0xdeb3f000 stackSize=1038KB
       [INFO]  W/DG.WV   ( 2074): Widevine DRM not supported on this device
       [INFO]  W/DG.WV   ( 2074): android.media.UnsupportedSchemeException: Failed to instantiate drm object.
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.native_setup(Native Method)
       [INFO]  W/DG.WV   ( 2074): 	at android.media.MediaDrm.<init>(MediaDrm.java:215)
       [INFO]  W/DG.WV   ( 2074): 	at mfj.a(:com.google.android.gms:121)
       [INFO]  W/DG.WV   ( 2074): 	at mce.run(:com.google.android.gms:1094)
       [INFO]  W/DG.WV   ( 2074): 	at jmg.run(:com.google.android.gms:450)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1113)
       [INFO]  W/DG.WV   ( 2074): 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
       [INFO]  W/DG.WV   ( 2074): 	at jqr.run(:com.google.android.gms:17)
       [INFO]  W/DG.WV   ( 2074): 	at java.lang.Thread.run(Thread.java:818)
       -- End application log -------------------------------------------------------
       
  5. Kai De Sutter 2016-09-21

    Sharif! :-) Only now I noticed that I am still using hyperloop 1.2.6 and I feel stupid about that. The thing is, I was under the impression that I must be using Hyperloop 1.2.7 because I upgraded everything, CLI, SDK, ... through the normal procedure. I didn't find a way to properly upgrade hyperloop, so I deleted it completely and it downloaded again when creating a new project. Is there a better way to upgrade? Anyways, after testing it again, everything works just fine. Many thanks for your help, I think this can be closed now!

JSON Source