• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps App crashes after adding splashscreen

I added Splash Screen i sow on youtube, but app just closes. On start..
Splash.java
Code:
package com.mcunderground.dragoncliker;

import android.app.*;
import android.content.*;
import android.os.*;
import android.view.*;

public class Splash extends Activity
{
    private boolean backbtnPress;
    private static final int SPLASH_DURATION = 3000;
    private Handler myHandler;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
       
        getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
        getActionBar().hide();
       
       
        setContentView(R.layout.splashh);
       
        myHandler = new Handler();
       
        myHandler.postDelayed(new Runnable() {
           
            @Override
            public void run() {
                finish();
           
               
            if(!backbtnPress){
                Intent intent = new Intent(Splash.this,MainActivity.class);
                Splash.this.startActivity(intent);
            }
            }
           
           
        }, SPLASH_DURATION);

    }

    @Override
    public void onBackPressed()
    {
        backbtnPress = true;
        super.onBackPressed();
    }

}

Splashh.xml

Code:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000">
   
    <TextView 
    android:text="Kill the Dragon"
        android:layout_alignParentBottom="true"
        />
</RelativeLayout>

AndroidManifest.xml

Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mcunderground.dragoncliker" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/img"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity android:name=".Splash" >
            <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
          </activity>
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>
 
Logcat
I use AIDE IDE. On android


I runed it at 24 or 23 mins.
Code:
04-11 16:24:21.325 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve static field 1347 (CREATOR) in Landroid/media/MediaDescription;
04-11 16:24:21.326 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.327 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.328 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.333 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.334 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.335 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.336 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'jo', referenced from method ax.a
04-11 16:24:21.336 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve new-instance 8458 (Ljo;) in Lax;
04-11 16:24:21.459 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 4048: Landroid/os/Debug$MemoryInfo;.getTotalPrivateClean ()I
04-11 16:24:21.462 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 2534: Landroid/app/Activity;.finishAfterTransition ()V
04-11 16:24:21.464 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.app.Notification$Action$Builder', referenced from method ax.a
04-11 16:24:21.465 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve new-instance 412 (Landroid/app/Notification$Action$Builder;) in Lax;
04-11 16:24:21.522 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to find class referenced in signature (Landroid/transition/Transition;)
04-11 16:24:21.522 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'dz', referenced from method ax.a
04-11 16:24:21.523 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve new-instance 4043 (Ldz;) in Lax;
04-11 16:24:21.524 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve static field 2046 (BOUNDS) in Landroid/view/ViewOutlineProvider;
04-11 16:24:21.526 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6351: Landroid/view/View;.setScrollIndicators (II)V
04-11 16:24:21.532 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.532 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.535 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6506: Landroid/view/ViewPropertyAnimator;.setUpdateListener (Landroid/animation/ValueAnimator$AnimatorUpdateListener;)Landroid/view/ViewPropertyAnimator;
04-11 16:24:21.535 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6387: Landroid/view/ViewGroup$MarginLayoutParams;.setMarginStart (I)V
04-11 16:24:21.546 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.547 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.548 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6494: Landroid/view/ViewParent;.onStopNestedScroll (Landroid/view/View;)V
04-11 16:24:21.549 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6491: Landroid/view/ViewParent;.onNestedScroll (Landroid/view/View;IIII)V
04-11 16:24:21.549 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6490: Landroid/view/ViewParent;.onNestedPreScroll (Landroid/view/View;II[I)V
04-11 16:24:21.549 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6555: Landroid/view/accessibility/AccessibilityEvent;.setContentChangeTypes (I)V
04-11 16:24:21.551 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6897: Landroid/widget/CompoundButton;.setButtonTintList (Landroid/content/res/ColorStateList;)V
04-11 16:24:21.552 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6898: Landroid/widget/CompoundButton;.setButtonTintMode (Landroid/graphics/PorterDuff$Mode;)V
04-11 16:24:21.552 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 7346: Landroid/widget/PopupWindow;.showAsDropDown (Landroid/view/View;III)V
04-11 16:24:21.552 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 7339: Landroid/widget/PopupWindow;.setOverlapAnchor (Z)V
04-11 16:24:21.561 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3764: Landroid/media/MediaRouter;.addCallback (ILandroid/media/MediaRouter$Callback;I)V
04-11 16:24:21.561 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.a
04-11 16:24:21.562 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.562 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.a
04-11 16:24:21.563 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.564 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.a
04-11 16:24:21.564 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.566 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.a
04-11 16:24:21.566 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.567 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.568 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.572 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.TransitionSet', referenced from method ax.a
04-11 16:24:21.573 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 826 (Landroid/transition/TransitionSet;) in Lax;
04-11 16:24:21.573 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.574 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.575 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.a
04-11 16:24:21.575 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.576 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController', referenced from method ax.a
04-11 16:24:21.576 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 626 (Landroid/media/session/MediaController;) in Lax;
04-11 16:24:21.577 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController', referenced from method ax.a
04-11 16:24:21.578 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 626 (Landroid/media/session/MediaController;) in Lax;
04-11 16:24:21.579 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.591 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.591 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.a
04-11 16:24:21.592 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.593 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.a
04-11 16:24:21.593 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.602 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6437: Landroid/view/ViewGroup;.isTransitionGroup ()Z
04-11 16:24:21.607 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6239: Landroid/view/View;.getTransitionName ()Ljava/lang/String;
04-11 16:24:21.626 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to find class referenced in signature (Landroid/transition/Transition;)
04-11 16:24:21.626 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 5871: Landroid/transition/Transition;.getTargetIds ()Ljava/util/List;
04-11 16:24:21.627 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6489: Landroid/view/ViewParent;.onNestedPreFling (Landroid/view/View;FF)Z
04-11 16:24:21.627 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6488: Landroid/view/ViewParent;.onNestedFling (Landroid/view/View;FFZ)Z
04-11 16:24:21.628 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6493: Landroid/view/ViewParent;.onStartNestedScroll (Landroid/view/View;Landroid/view/View;I)Z
04-11 16:24:21.630 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6911: Landroid/widget/EdgeEffect;.onPull (FF)V
04-11 16:24:21.635 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to find class referenced in signature ([Landroid/app/RemoteInput;)
04-11 16:24:21.636 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.app.RemoteInput[]', referenced from method ax.a
04-11 16:24:21.637 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve new-array 13760 ([Landroid/app/RemoteInput;) in Lax;
04-11 16:24:21.653 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3768: Landroid/media/MediaRouter;.getDefaultRoute ()Landroid/media/MediaRouter$RouteInfo;
04-11 16:24:21.663 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 2613: Landroid/app/ActivityManager;.isLowRamDevice ()Z
04-11 16:24:21.665 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3592: Landroid/graphics/drawable/Drawable;.getLayoutDirection ()I
04-11 16:24:21.668 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaMetadata', referenced from method ax.b
04-11 16:24:21.669 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 602 (Landroid/media/MediaMetadata;) in Lax;
04-11 16:24:21.671 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.b
04-11 16:24:21.672 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.675 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6239: Landroid/view/View;.getTransitionName ()Ljava/lang/String;
04-11 16:24:21.685 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6386: Landroid/view/ViewGroup$MarginLayoutParams;.setMarginEnd (I)V
04-11 16:24:21.685 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve interface method 6492: Landroid/view/ViewParent;.onNestedScrollAccepted (Landroid/view/View;Landroid/view/View;I)V
04-11 16:24:21.687 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.b
04-11 16:24:21.688 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.688 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.transition.Transition', referenced from method ax.b
04-11 16:24:21.689 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 824 (Landroid/transition/Transition;) in Lax;
04-11 16:24:21.696 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.view.accessibility.AccessibilityNodeInfo$AccessibilityAction', referenced from method ax.b
04-11 16:24:21.697 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 929 (Landroid/view/accessibility/AccessibilityNodeInfo$AccessibilityAction;) in Lax;
04-11 16:24:21.698 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 2928: Landroid/content/Context;.getExternalFilesDirs (Ljava/lang/String;)[Ljava/io/File;
04-11 16:24:21.701 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaMetadata', referenced from method ax.c
04-11 16:24:21.702 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 602 (Landroid/media/MediaMetadata;) in Lax;
04-11 16:24:21.705 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.c
04-11 16:24:21.707 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.711 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.c
04-11 16:24:21.712 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.713 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.view.accessibility.AccessibilityNodeInfo$CollectionInfo', referenced from method ax.c
04-11 16:24:21.714 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 930 (Landroid/view/accessibility/AccessibilityNodeInfo$CollectionInfo;) in Lax;
04-11 16:24:21.741 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.d
04-11 16:24:21.743 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.744 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaMetadata', referenced from method ax.d
04-11 16:24:21.745 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 602 (Landroid/media/MediaMetadata;) in Lax;
04-11 16:24:21.747 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.view.accessibility.AccessibilityNodeInfo$CollectionItemInfo', referenced from method ax.d
04-11 16:24:21.749 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 931 (Landroid/view/accessibility/AccessibilityNodeInfo$CollectionItemInfo;) in Lax;
04-11 16:24:21.757 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.e
04-11 16:24:21.757 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.758 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaMetadata', referenced from method ax.e
04-11 16:24:21.758 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 602 (Landroid/media/MediaMetadata;) in Lax;
04-11 16:24:21.774 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.f
04-11 16:24:21.774 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.783 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.g
04-11 16:24:21.789 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.807 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.h
04-11 16:24:21.808 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.810 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription', referenced from method ax.i
04-11 16:24:21.811 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 601 (Landroid/media/MediaDescription;) in Lax;
04-11 16:24:21.816 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaDescription$Builder', referenced from method ax.j
04-11 16:24:21.821 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 600 (Landroid/media/MediaDescription$Builder;) in Lax;
04-11 16:24:21.825 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.MediaMetadata', referenced from method ax.k
04-11 16:24:21.826 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 602 (Landroid/media/MediaMetadata;) in Lax;
04-11 16:24:21.831 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.l
04-11 16:24:21.844 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.845 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.m
04-11 16:24:21.845 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.850 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.n
04-11 16:24:21.850 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.854 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.o
04-11 16:24:21.860 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.860 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.p
04-11 16:24:21.861 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.863 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.Rating', referenced from method ax.q
04-11 16:24:21.863 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 619 (Landroid/media/Rating;) in Lax;
04-11 16:24:21.867 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController', referenced from method ax.r
04-11 16:24:21.872 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 626 (Landroid/media/session/MediaController;) in Lax;
04-11 16:24:21.876 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController', referenced from method ax.s
04-11 16:24:21.877 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 626 (Landroid/media/session/MediaController;) in Lax;
04-11 16:24:21.881 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController', referenced from method ax.t
04-11 16:24:21.886 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 626 (Landroid/media/session/MediaController;) in Lax;
04-11 16:24:21.889 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController$TransportControls', referenced from method ax.u
04-11 16:24:21.890 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 625 (Landroid/media/session/MediaController$TransportControls;) in Lax;
04-11 16:24:21.893 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.MediaController$TransportControls', referenced from method ax.v
04-11 16:24:21.899 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 625 (Landroid/media/session/MediaController$TransportControls;) in Lax;
04-11 16:24:21.899 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState', referenced from method ax.w
04-11 16:24:21.900 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 629 (Landroid/media/session/PlaybackState;) in Lax;
04-11 16:24:21.901 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState', referenced from method ax.x
04-11 16:24:21.903 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 629 (Landroid/media/session/PlaybackState;) in Lax;
04-11 16:24:21.911 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState', referenced from method ax.y
04-11 16:24:21.912 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 629 (Landroid/media/session/PlaybackState;) in Lax;
04-11 16:24:21.916 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState', referenced from method ax.z
04-11 16:24:21.918 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 629 (Landroid/media/session/PlaybackState;) in Lax;
04-11 16:24:22.072 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState', referenced from method kvr.a
04-11 16:24:22.072 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 629 (Landroid/media/session/PlaybackState;) in Lkvr;
04-11 16:24:22.077 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6278: Landroid/view/View;.onApplyWindowInsets (Landroid/view/WindowInsets;)Landroid/view/WindowInsets;
04-11 16:24:22.077 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 4007: Landroid/os/Bundle;.putBinder (Ljava/lang/String;Landroid/os/IBinder;)V
04-11 16:24:22.078 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6300: Landroid/view/View;.requestApplyInsets ()V
04-11 16:24:22.078 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6324: Landroid/view/View;.setElevation (F)V
04-11 16:24:22.078 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6318: Landroid/view/View;.setBackgroundTintList (Landroid/content/res/ColorStateList;)V
04-11 16:24:22.078 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6319: Landroid/view/View;.setBackgroundTintMode (Landroid/graphics/PorterDuff$Mode;)V
04-11 16:24:22.078 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6200: Landroid/view/View;.getElevation ()F
04-11 16:24:22.079 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6182: Landroid/view/View;.dispatchApplyWindowInsets (Landroid/view/WindowInsets;)Landroid/view/WindowInsets;
04-11 16:24:22.079 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'pd', referenced from method kvr.b
04-11 16:24:22.079 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve new-instance 12107 (Lpd;) in Lkvr;
04-11 16:24:22.080 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6242: Landroid/view/View;.getTranslationZ ()F
04-11 16:24:22.080 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6267: Landroid/view/View;.isNestedScrollingEnabled ()Z
04-11 16:24:22.080 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6364: Landroid/view/View;.stopNestedScroll ()V
04-11 16:24:22.080 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6250: Landroid/view/View;.getZ ()F
04-11 16:24:22.146 30039 30039 E   Trace android.process.media                  error opening trace file: No such file or directory (2)
04-11 16:24:22.713 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 4200: Landroid/os/PowerManager;.isInteractive ()Z
04-11 16:24:22.746 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve static method 4238: Landroid/os/Trace;.beginSection (Ljava/lang/String;)V
04-11 16:24:22.748 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve static method 4239: Landroid/os/Trace;.endSection ()V
04-11 16:24:22.749 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState$CustomAction', referenced from method fhp.getAction
04-11 16:24:22.750 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 628 (Landroid/media/session/PlaybackState$CustomAction;) in Lfhp;
04-11 16:24:22.751 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3739: Landroid/media/MediaRouter$RouteInfo;.getDescription ()Ljava/lang/CharSequence;
04-11 16:24:22.752 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState$CustomAction', referenced from method fhp.getExtras
04-11 16:24:22.752 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 628 (Landroid/media/session/PlaybackState$CustomAction;) in Lfhp;
04-11 16:24:22.753 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState$CustomAction', referenced from method fhp.getIcon
04-11 16:24:22.754 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 628 (Landroid/media/session/PlaybackState$CustomAction;) in Lfhp;
04-11 16:24:22.755 30012 30012 E   dalvikvm com.google.android.apps.plus        Could not find class 'android.media.session.PlaybackState$CustomAction', referenced from method fhp.getName
04-11 16:24:22.756 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve check-cast 628 (Landroid/media/session/PlaybackState$CustomAction;) in Lfhp;
04-11 16:24:22.757 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3743: Landroid/media/MediaRouter$RouteInfo;.getPresentationDisplay ()Landroid/view/Display;
04-11 16:24:22.758 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6258: Landroid/view/View;.isAttachedToWindow ()Z
04-11 16:24:22.759 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3749: Landroid/media/MediaRouter$RouteInfo;.isConnecting ()Z
04-11 16:24:22.760 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3750: Landroid/media/MediaRouter$RouteInfo;.isEnabled ()Z
04-11 16:24:22.760 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6264: Landroid/view/View;.isLaidOut ()Z
04-11 16:24:22.761 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 2613: Landroid/app/ActivityManager;.isLowRamDevice ()Z
04-11 16:24:22.762 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3142: Landroid/content/res/Configuration;.getLayoutDirection ()I
04-11 16:24:22.764 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 6312: Landroid/view/View;.setAccessibilityLiveRegion (I)V
04-11 16:24:22.765 30012 30012 W   dalvikvm com.google.android.apps.plus        VFY: unable to resolve virtual method 3754: Landroid/media/MediaRouter$UserRouteInfo;.setDescription (Ljava/lang/CharSequence;)V
04-11 16:24:23.162 30069 30069 E   Trace com.tencent.tcuser                     error opening trace file: No such file or directory (2)
04-11 16:24:23.237 29897 30078 E   GmsUtils com.google.android.music:main       Failed to connect to Google API client: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
04-11 16:24:23.454 29572 29572 I   AIDE com.aide.ui:EngineService               onTrimMemory - level: 5
04-11 16:24:23.860 29897 29897 E   ConnectionService com.google.android.music:main     Failed to connect to GoogleApiClient: ConnectionResult{statusCode=API_UNAVAILABLE, resolution=null, message=null}
04-11 16:24:23.939 15856 26457 E   MMUMapper                                    fail to register MVA, unsupported format(0x1)
04-11 16:24:23.951 30069 30069 E   MMUMapper com.tencent.tcuser                 fail to register MVA, unsupported format(0x1)
04-11 16:24:25.685 30069 30069 E   MMUMapper com.tencent.tcuser                 invalid operation for unregister MVA with VA(0x53527000) size(39168)
04-11 16:24:26.258 15856 15879 E   MMUMapper                                    invalid operation for unregister MVA with VA(0x42151000) size(39168)
04-11 16:24:43.717 17351 17351 E   ctxmgr com.google.android.gms.persistent     [PowerConnectionProducer]Could not write powerInfo=Plug state: 1 BatteryLevel: 0.04, status=Status{statusCode=unknown status code: 7503, resolution=null}
04-11 16:25:24.700 16010 21712 E   CellLocation system                          create GsmCellLocation
04-11 16:25:24.702 17351 21347 E   CellLocation com.google.android.gms.persistent     create GsmCellLocation
04-11 16:25:24.702 28792 28804 E   CellLocation com.lge.mlt                     create GsmCellLocation
04-11 16:25:24.712 16010 16025 E   CellLocation system                          create GsmCellLocation
04-11 16:25:24.725 16010 16025 E   CellLocation system                          create GsmCellLocation
04-11 16:25:24.758 17351 17431 E   CellL
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones