Mon application se ferme quand je crée une instance de Firebase

dlife123 Messages postés 44 Statut Membre -  
dlife123 Messages postés 44 Statut Membre -
Bonjour,
j'aimerais créer une application de chat en utilisant Firebase,.Comme IDE j'utilise eclipse ,j'ai donc téléchargé firebase-client-android-2.5.2 .jar que j'ai ajouté à mon projet.dans le code suivant je n'ai aucune erreur cependant quand je lance l'application,elle s'arrete aussitôt.
quand je mets en commentaire la ligne suivante l'application ne se ferme plus:
mFirebaseRef = new Firebase("https://accounts.google.com/ServiceLogin?passive=1209600&osid=1&continue=https://console.firebase.google.com/project/selfietime-140908/database/data/&followup=https://console.firebase.google.com/project/selfietime-140908/database/data/");

est-ce que quelqu'un pourrait me dire pourquoi ça ne marche pas?
merci d'avance pour vos réponses.

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;

public class FireTwo extends Activity {
  private Firebase mFirebaseRef;
  EditText mEditText;
  Button send;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.fire_two);
  
   mFirebaseRef = new Firebase("[https://selfietime-140908.firebaseio.com/]");
  mEditText = (EditText)findViewById(R.id.message_text);
   send=(Button)findViewById(R.id.send);
   Firebase.setAndroidContext(this);
  /*send.setOnClickListener(new View.OnClickListener() {
   
   @Override
   public void onClick(View v) {
    onSendButtonClick();
    
   }
  });*/
  
 }

EDIT : Ajout des balises de code (la coloration syntaxique).
Explications disponibles ICI

Merci d'y penser dans tes prochains messages.

5 réponses

  1. BunoCS Messages postés 436 Date d'inscription   Statut Modérateur Dernière intervention   3 931
     
    Hello,

    Que dit le Logcat?
    0
    1. dlife123 Messages postés 44 Statut Membre 35
       
      08-23 12:30:52.843: I/Process(3650): Sending signal. PID: 3650 SIG: 9
      08-23 12:32:20.609: E/Trace(3937): error opening trace file: No such file or directory (2)
      08-23 12:32:20.867: D/libEGL(3937): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
      08-23 12:32:20.875: D/libEGL(3937): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
      08-23 12:32:20.882: D/libEGL(3937): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
      08-23 12:32:20.945: D/libc(3937): Forward DNS query to netd(h=graph.facebook.com s=^)
      08-23 12:32:20.945: D/libc(3937): Forward DNS query to netd(h=graph.facebook.com s=^)
      08-23 12:32:20.976: D/OpenGLRenderer(3937): Enabling debug mode 0
      08-23 12:32:20.984: D/MainActivity(3937): Facebook session opened.
      08-23 12:32:21.382: E/dalvikvm(3937): Could not find class 'com.firebase.client.Firebase', referenced from method com.arpacia.selfietime.MainTest.<init>
      08-23 12:32:21.382: W/dalvikvm(3937): VFY: unable to resolve new-instance 1369 (Lcom/firebase/client/Firebase;) in Lcom/arpacia/selfietime/MainTest;
      08-23 12:32:21.382: D/dalvikvm(3937): VFY: replacing opcode 0x22 at 0x0003
      08-23 12:32:21.390: I/dalvikvm(3937): Could not find method com.firebase.client.Firebase.setAndroidContext, referenced from method com.arpacia.selfietime.MainTest.onCreate
      08-23 12:32:21.390: W/dalvikvm(3937): VFY: unable to resolve static method 9721: Lcom/firebase/client/Firebase;.setAndroidContext (Landroid/content/Context;)V
      08-23 12:32:21.390: D/dalvikvm(3937): VFY: replacing opcode 0x71 at 0x0009
      08-23 12:32:21.390: D/dalvikvm(3937): DexOpt: unable to opt direct call 0x25f8 at 0x07 in Lcom/arpacia/selfietime/MainTest;.<init>
      08-23 12:32:21.390: D/AndroidRuntime(3937): Shutting down VM
      08-23 12:32:21.390: W/dalvikvm(3937): threadid=1: thread exiting with uncaught exception (group=0x40de12a0)
      08-23 12:32:21.406: E/AndroidRuntime(3937): FATAL EXCEPTION: main
      08-23 12:32:21.406: E/AndroidRuntime(3937): java.lang.NoClassDefFoundError: com.firebase.client.Firebase
      08-23 12:32:21.406: E/AndroidRuntime(3937): at com.arpacia.selfietime.MainTest.<init>(MainTest.java:19)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at java.lang.Class.newInstanceImpl(Native Method)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at java.lang.Class.newInstance(Class.java:1319)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.Instrumentation.newActivity(Instrumentation.java:1053)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2051)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2174)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.ActivityThread.access$700(ActivityThread.java:141)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1267)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.os.Handler.dispatchMessage(Handler.java:99)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.os.Looper.loop(Looper.java:137)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at android.app.ActivityThread.main(ActivityThread.java:5059)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at java.lang.reflect.Method.invokeNative(Native Method)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at java.lang.reflect.Method.invoke(Method.java:511)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:792)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:555)
      08-23 12:32:21.406: E/AndroidRuntime(3937): at dalvik.system.NativeStart.main(Native Method)
      08-23 12:32:24.421: I/Process(3937): Sending signal. PID: 3937 SIG: 9
      0
  2. BunoCS Messages postés 436 Date d'inscription   Statut Modérateur Dernière intervention   3 931
     
    java.lang.NoClassDefFoundError: com.firebase.client.Firebase 

    As-tu bien intégré Firebase?
    https://cloud.google.com/solutions/mobile/mobile-firebase-app-engine-flexible

    @+ 
    Buno, Modo CS-CCM 
    L'urgent est fait, l'impossible est en cours. Pour les miracles, prévoir un délai... 
    The urgent is done, the impossible is underway. For miracles, provide for a delay...
    0
  3. dlife123 Messages postés 44 Statut Membre 35
     
    bonjour j'ai essayé de suivre la marche mais je rencontre un problème
    voici mon code:

    import android.app.ProgressDialog;
    import android.content.Intent;
    import android.os.Bundle;
    import android.support.annotation.NonNull;
    import android.support.v7.app.AppCompatActivity;
    import android.util.Log;
    import android.view.View;
    import android.widget.TextView;
    import android.widget.Toast;
    
    import com.facebook.AccessToken;
    import com.facebook.CallbackManager;
    import com.facebook.FacebookCallback;
    import com.facebook.FacebookException;
    import com.facebook.FacebookSdk;
    import com.facebook.login.LoginManager;
    import com.facebook.login.LoginResult;
    import com.facebook.login.widget.LoginButton;
    import com.google.android.gms.tasks.OnCompleteListener;
    import com.google.android.gms.tasks.Task;
    import com.google.firebase.auth.AuthCredential;
    import com.google.firebase.auth.AuthResult;
    import com.google.firebase.auth.FacebookAuthProvider;
    import com.google.firebase.auth.FirebaseAuth;
    import com.google.firebase.auth.FirebaseUser;
    
    /**
    
    
    * Demonstrate Firebase Authentication using a Facebook access token.
    
    */
    public class FacebookLoginActivity extends AppCompatActivity implements
            View.OnClickListener {
    
        private static final String TAG = "FacebookLogin";
        public ProgressDialog mProgressDialog;
    
        private TextView mStatusTextView;
        private TextView mDetailTextView;
    
        // [START declare_auth]
        private FirebaseAuth mAuth;
        // [END declare_auth]
    
        // [START declare_auth_listener]
        private FirebaseAuth.AuthStateListener mAuthListener;
        // [END declare_auth_listener]
    
        private CallbackManager mCallbackManager;
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            FacebookSdk.sdkInitialize(getApplicationContext());
            setContentView(R.layout.activity_facebook);
    
            // Views
            mStatusTextView = (TextView) findViewById(R.id.status);
            mDetailTextView = (TextView) findViewById(R.id.detail);
            findViewById(R.id.button_facebook_signout).setOnClickListener(this);
    
            // [START initialize_auth]
            // Initialize Firebase Auth
            mAuth = FirebaseAuth.getInstance();
            // [END initialize_auth]
    
            // [START auth_state_listener]
            mAuthListener = new FirebaseAuth.AuthStateListener() {
                @Override
                public void onAuthStateChanged(@NonNull FirebaseAuth firebaseAuth) {
                    FirebaseUser user = firebaseAuth.getCurrentUser();
                    if (user != null) {
                        // User is signed in
                        Log.d(TAG, "onAuthStateChanged:signed_in:" + user.getUid());
                    } else {
                        // User is signed out
                        Log.d(TAG, "onAuthStateChanged:signed_out");
                    }
                    // [START_EXCLUDE]
                    updateUI(user);
                    // [END_EXCLUDE]
                }
            };
            // [END auth_state_listener]
    
            // [START initialize_fblogin]
            // Initialize Facebook Login button
            mCallbackManager = CallbackManager.Factory.create();
            LoginButton loginButton = (LoginButton) findViewById(R.id.button_facebook_login);
            loginButton.setReadPermissions("email", "public_profile");
            loginButton.registerCallback(mCallbackManager, new FacebookCallback<LoginResult>() {
                @Override
                public void onSuccess(LoginResult loginResult) {
                    Log.d(TAG, "facebook:onSuccess:" + loginResult);
                    handleFacebookAccessToken(loginResult.getAccessToken());
                }
    
                @Override
                public void onCancel() {
                    Log.d(TAG, "facebook:onCancel");
                    // [START_EXCLUDE]
                    updateUI(null);
                    // [END_EXCLUDE]
                }
    
                @Override
                public void onError(FacebookException error) {
                    Log.d(TAG, "facebook:onError", error);
                    // [START_EXCLUDE]
                    updateUI(null);
                    // [END_EXCLUDE]
                }
            });
            // [END initialize_fblogin]
        }
    
        // [START on_start_add_listener]
        @Override
        public void onStart() {
            super.onStart();
            mAuth.addAuthStateListener(mAuthListener);
        }
        // [END on_start_add_listener]
    
        // [START on_stop_remove_listener]
        @Override
        public void onStop() {
            super.onStop();
            if (mAuthListener != null) {
                mAuth.removeAuthStateListener(mAuthListener);
                hideProgressDialog();
            }
        }
        // [END on_stop_remove_listener]
    
    
        @Override
        protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);
            mCallbackManager.onActivityResult(requestCode, resultCode, data);
        }
    
        // [START auth_with_facebook]
        private void handleFacebookAccessToken(AccessToken token) {
            Log.d(TAG, "handleFacebookAccessToken:" + token);
            // [START_EXCLUDE silent]
            showProgressDialog();
            // [END_EXCLUDE]
    
            AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());
            mAuth.signInWithCredential(credential)
                    .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
                        @Override
                        public void onComplete(@NonNull Task<AuthResult> task) {
                            Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());
    
                            // If sign in fails, display a message to the user. If sign in succeeds
                            // the auth state listener will be notified and logic to handle the
                            // signed in user can be handled in the listener.
                            if (!task.isSuccessful()) {
                                Log.w(TAG, "signInWithCredential", task.getException());
                                Toast.makeText(FacebookLoginActivity.this, "Authentication failed.",
                                        Toast.LENGTH_SHORT).show();
                            }
    
                            // [START_EXCLUDE]
                            hideProgressDialog();
                            // [END_EXCLUDE]
                        }
                    });
        }
        // [END auth_with_facebook]
    
        public void signOut() {
            mAuth.signOut();
            LoginManager.getInstance().logOut();
    
            updateUI(null);
        }
    
        private void updateUI(FirebaseUser user) {
            hideProgressDialog();
            if (user != null) {
                mStatusTextView.setText(getString(R.string.facebook_status_fmt, user.getDisplayName()));
                mDetailTextView.setText(getString(R.string.firebase_status_fmt, user.getUid()));
    
                findViewById(R.id.button_facebook_login).setVisibility(View.GONE);
                findViewById(R.id.button_facebook_signout).setVisibility(View.VISIBLE);
            } else {
                mStatusTextView.setText(R.string.signed_out);
                mDetailTextView.setText(null);
    
                findViewById(R.id.button_facebook_login).setVisibility(View.VISIBLE);
                findViewById(R.id.button_facebook_signout).setVisibility(View.GONE);
            }
        }
    
        @Override
        public void onClick(View v) {
            int i = v.getId();
            if (i == R.id.button_facebook_signout) {
                signOut();
            }
        }
        public void showProgressDialog() {
            if (mProgressDialog == null) {
                mProgressDialog = new ProgressDialog(this);
                mProgressDialog.setMessage(getString(R.string.loading));
                mProgressDialog.setIndeterminate(true);
            }
    
            mProgressDialog.show();
        }
        public void hideProgressDialog() {
            if (mProgressDialog != null && mProgressDialog.isShowing()) {
                mProgressDialog.dismiss();
            }
        }
    
    }


    // Top-level build file where you can add configuration options common to all sub-projects/modules.

    buildscript {
    repositories {
    jcenter()
    mavenLocal()
    }
    dependencies {
    classpath 'com.android.tools.build:gradle:2.1.3'
    classpath 'com.google.gms:google-services:3.0.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    }
    }

    allprojects {
    repositories {
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
    mavenLocal()
    }
    }

    task clean(type: Delete) {
    delete rootProject.buildDir
    }

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 24
    buildToolsVersion "24.0.2"

    defaultConfig {
    applicationId "com.arpacia.selfietime"
    minSdkVersion 15
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
    }
    buildTypes {
    release {
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
    }
    productFlavors {

    // Build variant to include the Facebook Android SDk
    // The Facebook Android SDK has a min SDK version of 15
    facebook {
    minSdkVersion 15
    }

    // Build variant to exclude the Facebook Android SDK
    // Firebase Authentication has a min SDK version of 9
    // nofacebook {
    // minSdkVersion 9
    // }

    }
    }
    configurations.all {
    resolutionStrategy.force 'com.android.support:support-annotations:24.0.0'
    }

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.1.1'

    // Firebase Authentication
    compile 'com.google.firebase:firebase-auth:9.4.0'

    // Facebook Android SDK (only required for Facebook Login)
    // This is only compiled into the 'facebook' variant of this app. You can build
    // a 'nofacebook' variant to test on devices with SDK < 15.
    facebookCompile 'com.facebook.android:facebook-android-sdk:4.9.0'

    androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
    androidTestCompile 'com.android.support.test:runner:0.5'

    }
    apply plugin: 'com.google.gms.google-services'


    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="[http://schemas.android.com/apk/res/android]"
        package="com.arpacia.selfietime">
    
        <uses-permission android:name="android.permission.INTERNET"/>
    
    
        <application>
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:theme="@style/AppTheme"
            >
            <activity
                android:name=".FacebookLoginActivity"
                android:label="@string/app_name" >
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
            <!-- Facebook Configuration -->
            <meta-data
                android:name="com.facebook.sdk.ApplicationId"
                android:value="115212333366322233" />
            <activity
                android:name="com.facebook.FacebookActivity"
                android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
                android:label="@string/app_name"
                android:theme="@android:style/Theme.Translucent.NoTitleBar" />
        </application>
    
    </manifest>
    

    //maintenant le logcat
    <code>09-05 13:03:32.351 469-479/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:32.351 631-631/? I/SBar.NetworkController: updateTelephonySignalStrength: No service
    09-05 13:03:32.359 469-2783/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:32.359 469-829/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:32.359 469-870/? D/ConnectivityService: getMobileDataEnabled returning false

    --------- beginning of /dev/log/main
    09-05 13:03:33.382 469-560/? D/wifi: doString: SIGNAL_POLL
    09-05 13:03:34.328 1519-1582/? D/libc: Forward DNS query to netd(h=LB-IM-12-2017274345.ap-southeast-1.elb.amazonaws.com s=^)
    09-05 13:03:35.992 4446-4446/? D/AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.RuntimeInit <<<<<<
    09-05 13:03:35.992 4446-4446/? D/AndroidRuntime: CheckJNI is OFF
    09-05 13:03:36.203 4446-4446/? D/dalvikvm: Trying to load lib libjavacore.so 0x0
    09-05 13:03:36.203 469-904/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:36.203 631-631/? I/SBar.NetworkController: updateTelephonySignalStrength: No service
    09-05 13:03:36.203 469-714/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:36.203 469-866/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:36.203 469-469/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:36.218 4446-4446/? D/dalvikvm: Added shared lib libjavacore.so 0x0
    09-05 13:03:36.250 4446-4446/? D/dalvikvm: Trying to load lib libnativehelper.so 0x0
    09-05 13:03:36.250 4446-4446/? D/dalvikvm: Added shared lib libnativehelper.so 0x0
    09-05 13:03:36.382 469-560/? D/wifi: doString: SIGNAL_POLL
    09-05 13:03:37.070 755-4388/? I/ClearcutLoggerApiImpl: disconnect managed GoogleApiClient
    09-05 13:03:37.125 4446-4446/? D/AndroidRuntime: Calling main entry com.android.commands.am.Am
    09-05 13:03:37.171 469-560/? D/wifi: doBoolean: AP_SCAN 1
    09-05 13:03:37.171 469-560/? D/wifi: doString: SCAN_RESULTS
    09-05 13:03:37.171 469-554/? D/Tethering: interfaceLinkStateChanged wlan0, true
    09-05 13:03:37.171 469-554/? D/Tethering: interfaceStatusChanged wlan0, true
    09-05 13:03:37.179 3153-3153/? D/LSAPP_LSDet: hasPoi:...no POIs !
    09-05 13:03:37.179 3153-3153/? D/LSAPP_Beacon: notifyAllCallers : notify caller POI=null caller:Handler (com.motorola.contextual.virtualsensor.locationsensor.LocationDetection$MessageHandler) {41accd90}
    09-05 13:03:37.179 3153-3153/? E/LSApp_App: Sending Message to Handler (com.motorola.contextual.virtualsensor.locationsensor.LocationDetection$MessageHandler) {41accd90}: msg :1010002
    09-05 13:03:37.179 3153-3253/? D/LSAPP_LSDet: matchBeacons: Beacon no match any poi...:
    09-05 13:03:37.187 3153-3253/? D/LSAPP_LSDet: startDetection: celltower changed : do nothing because not in a poi and cells are not POI cells ::{"Lac":"500","CntryISO":"","NetTyp":"GSM","NetOp":"","Cid":"6870479"}&&{"Lac":"500","CntryISO":"","NetTyp":"GSM","NetOp":"","Cid":"6870476"}&&{"Lac":"500","CntryISO":"","NetTyp":"GSM","NetOp":"","Cid":"6870475"}&&{"Lac":"500","CntryISO":"","NetTyp":"GSM","NetOp":"","Cid":"6870478"}
    09-05 13:03:37.187 3153-3253/? D/LSAPP_TimerTask: stopPeriodicalUpdate : network provider:false wifiscan: true
    09-05 13:03:37.218 469-480/? I/ActivityManager: START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.arpacia.selfietime/.FacebookLoginActivity u=0} from pid 4446
    09-05 13:03:37.273 4446-4446/? D/AndroidRuntime: Shutting down VM
    09-05 13:03:37.289 4446-4450/? D/dalvikvm: GC_CONCURRENT freed 103K, 87% free 569K/4096K, paused 0ms+1ms, total 8ms
    09-05 13:03:37.289 4446-4456/? I/AndroidRuntime: NOTE: attach of thread 'Binder_3' failed
    09-05 13:03:37.304 874-874/? W/ResourceType: No package identifier when getting value for resource number 0x00000000
    09-05 13:03:37.320 4446-4452/? D/jdwp: Got wake-up signal, bailing out of select
    09-05 13:03:37.320 4446-4452/? D/dalvikvm: Debugger has detached; object registry had 1 entries
    09-05 13:03:37.351 4457-4457/? D/dalvikvm: Late-enabling CheckJNI
    09-05 13:03:37.351 469-469/? I/ActivityManager: Start proc com.arpacia.selfietime for activity com.arpacia.selfietime/.FacebookLoginActivity: pid=4457 uid=10129 gids={3003, 1028}
    09-05 13:03:37.546 631-631/? I/SBar.NetworkController: updateTelephonySignalStrength: No service
    09-05 13:03:37.546 469-479/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:37.554 469-2782/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:37.554 4457-4457/com.arpacia.selfietime E/Trace: error opening trace file: No such file or directory (2)
    09-05 13:03:37.562 469-2785/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:37.562 631-631/? I/SBar.NetworkController: refreshSignalCluster: wifi: mWifiConnected=true Wifi=stat_sys_wifi_signal_4_fully Activity=stat_sys_wifi_out Accessibility="Signal Wi-Fi bon"
    09-05 13:03:37.562 631-631/? I/SBar.NetworkController: refreshSignalCluster: mobile: Signal=zz_moto_stat_sys_signal_5bar_null Roaming=(none) mSimIconId=stat_sys_no_sim Accessibility="","Aucun service.","Aucune carte SIM."
    09-05 13:03:37.562 631-631/? I/SBar.NetworkController: refreshSignalCluster: mobile: mHasMobileDataFeature=true DataTypeShown=(none) Activity=(none) Accessibility="GPRS"
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Application.registerOnProvideAssistDataListener, referenced from method com.android.tools.fd.runtime.BootstrapApplication.registerOnProvideAssistDataListener
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 292: Landroid/app/Application;.registerOnProvideAssistDataListener (Landroid/app/Application$OnProvideAssistDataListener;)V
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Application.unregisterOnProvideAssistDataListener, referenced from method com.android.tools.fd.runtime.BootstrapApplication.unregisterOnProvideAssistDataListener
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 295: Landroid/app/Application;.unregisterOnProvideAssistDataListener (Landroid/app/Application$OnProvideAssistDataListener;)V
    09-05 13:03:38.257 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    09-05 13:03:38.320 4457-4457/com.arpacia.selfietime I/ActivityThread: Pub com.arpacia.selfietime.firebaseinitprovider: com.google.firebase.provider.FirebaseInitProvider
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserManager', referenced from method com.google.android.gms.common.zze.zzbw
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 272 (Landroid/os/UserManager;) in Lcom/google/android/gms/common/zze;
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x000d
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.pm.PackageManager.getPackageInstaller, referenced from method com.google.android.gms.common.zze.zzl
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 787: Landroid/content/pm/PackageManager;.getPackageInstaller ()Landroid/content/pm/PackageInstaller;
    09-05 13:03:38.382 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6e at 0x001c
    09-05 13:03:38.398 4457-4471/com.arpacia.selfietime W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
    09-05 13:03:38.398 4457-4471/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.app.AppOpsManager', referenced from method com.google.android.gms.internal.zzro.zzg
    09-05 13:03:38.398 4457-4471/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 30 (Landroid/app/AppOpsManager;) in Lcom/google/android/gms/internal/zzro;
    09-05 13:03:38.398 4457-4471/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0011
    09-05 13:03:38.406 4457-4471/com.arpacia.selfietime W/DynamiteModule: Local module descriptor class for com.google.firebase.auth not found.
    09-05 13:03:38.460 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.Context.getNoBackupFilesDir, referenced from method com.google.android.gms.common.util.zzx.getNoBackupFilesDir
    09-05 13:03:38.460 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 559: Landroid/content/Context;.getNoBackupFilesDir ()Ljava/io/File;
    09-05 13:03:38.460 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    09-05 13:03:38.468 4457-4457/com.arpacia.selfietime D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
    09-05 13:03:38.546 631-631/? I/SBar.NetworkController: updateTelephonySignalStrength: No service
    09-05 13:03:38.546 469-2782/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:38.546 469-2662/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:38.546 469-904/? D/ConnectivityService: getMobileDataEnabled returning false
    09-05 13:03:38.578 4457-4457/com.arpacia.selfietime I/FA: App measurement is starting up, version: 9452
    09-05 13:03:38.578 4457-4457/com.arpacia.selfietime I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
    09-05 13:03:39.085 4457-4457/com.arpacia.selfietime I/FirebaseInitProvider: FirebaseApp initialization successful
    09-05 13:03:39.093 4496-4496/? A/libc: Fatal signal 13 (SIGPIPE) at 0x00001190 (code=0), thread 4496 (sh)
    09-05 13:03:39.101 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.util.ArrayMap', referenced from method com.android.tools.fd.runtime.MonkeyPatcher.monkeyPatchExistingResources
    09-05 13:03:39.101 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 1968 (Landroid/util/ArrayMap;) in Lcom/android/tools/fd/runtime/MonkeyPatcher;
    09-05 13:03:39.101 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0258
    09-05 13:03:39.109 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.util.ArrayMap', referenced from method com.android.tools.fd.runtime.MonkeyPatcher.pruneResourceCache
    09-05 13:03:39.109 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve const-class 1968 (Landroid/util/ArrayMap;) in Lcom/android/tools/fd/runtime/MonkeyPatcher;
    09-05 13:03:39.109 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1c at 0x0058
    09-05 13:03:39.132 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.Context.getSystemService, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.132 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 568: Landroid/content/Context;.getSystemService (Ljava/lang/Class;)Ljava/lang/Object;
    09-05 13:03:39.132 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x004b
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.stopLockTask, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 250: Landroid/app/Activity;.stopLockTask ()V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x00b9
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isInMultiWindowMode, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 102: Landroid/app/Activity;.isInMultiWindowMode ()Z
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x00eb
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.PersistableBundle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 259 (Landroid/os/PersistableBundle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x00fc
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.Context.getColorStateList, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 547: Landroid/content/Context;.getColorStateList (I)Landroid/content/res/ColorStateList;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x010c
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onVisibleBehindCanceled, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 168: Landroid/app/Activity;.onVisibleBehindCanceled ()V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x011c
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.deleteSharedPreferences, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 609: Landroid/content/ContextWrapper;.deleteSharedPreferences (Ljava/lang/String;)Z
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0126
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0137
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onWindowStartingActionMode, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 172: Landroid/app/Activity;.onWindowStartingActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0151
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.dismissKeyboardShortcutsHelper, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 41: Landroid/app/Activity;.dismissKeyboardShortcutsHelper ()V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0157
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.PersistableBundle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 259 (Landroid/os/PersistableBundle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x01ba
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.media.session.MediaController', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 213 (Landroid/media/session/MediaController;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x01e0
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.moveSharedPreferencesFrom, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 653: Landroid/content/ContextWrapper;.moveSharedPreferencesFrom (Landroid/content/Context;Ljava/lang/String;)Z
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x01f0
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.widget.Toolbar', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 2143 (Landroid/widget/Toolbar;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x01fd
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: DexOpt: resolve class illegal access: Lcom/arpacia/selfietime/FacebookLoginActivity; -> Landroid/support/v4/app/BaseFragmentActivityJB;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.BaseFragmentActivityJB.startActivityForResult, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2603: Landroid/support/v4/app/BaseFragmentActivityJB;.startActivityForResult (Landroid/content/Intent;ILandroid/os/Bundle;)V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0262
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: DexOpt: resolve class illegal access: Lcom/arpacia/selfietime/FacebookLoginActivity; -> Landroid/support/v4/app/BaseFragmentActivityEclair;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.BaseFragmentActivityEclair.startIntentSenderForResult, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2575: Landroid/support/v4/app/BaseFragmentActivityEclair;.startIntentSenderForResult (Landroid/content/IntentSender;ILandroid/content/Intent;III)V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x75 at 0x0293
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.releaseInstance, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 179: Landroid/app/Activity;.releaseInstance ()Z
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x031e
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onActivityReenter, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 115: Landroid/app/Activity;.onActivityReenter (ILandroid/content/Intent;)V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0335
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getCodeCacheDir, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 623: Landroid/content/ContextWrapper;.getCodeCacheDir ()Ljava/io/File;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x038a
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.createConfigurationContext, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 602: Landroid/content/ContextWrapper;.createConfigurationContext (Landroid/content/res/Configuration;)Landroid/content/Context;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0418
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: DexOpt: illegal method access (call Landroid/support/v4/app/FragmentActivity;.dispatchFragmentsOnCreateView (Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View; from Lcom/arpacia/selfietime/FacebookLoginActivity;)
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.FragmentActivity.dispatchFragmentsOnCreateView, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2821: Landroid/support/v4/app/FragmentActivity;.dispatchFragmentsOnCreateView (Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0473
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getVoiceInteractor, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 91: Landroid/app/Activity;.getVoiceInteractor ()Landroid/app/VoiceInteractor;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x04d1
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.app.ActivityManager$TaskDescription', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 24 (Landroid/app/ActivityManager$TaskDescription;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x059c
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.startActionMode, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 223: Landroid/app/Activity;.startActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x05d7
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.createDeviceProtectedStorageContext, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 603: Landroid/content/ContextWrapper;.createDeviceProtectedStorageContext ()Landroid/content/Context;
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0609
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.showAssist, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 218: Landroid/app/Activity;.showAssist (Landroid/os/Bundle;)Z
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x062d
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.postponeEnterTransition, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 176: Landroid/app/Activity;.postponeEnterTransition ()V
    09-05 13:03:39.140 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0638
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getNoBackupFilesDir, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 636: Landroid/content/ContextWrapper;.getNoBackupFilesDir ()Ljava/io/File;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x06c7
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.enterPictureInPictureMode, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 48: Landroid/app/Activity;.enterPictureInPictureMode ()V
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x06e3
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.moveDatabaseFrom, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 652: Landroid/content/ContextWrapper;.moveDatabaseFrom (Landroid/content/Context;Ljava/lang/String;)Z
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x072e
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x078f
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.requestPermissions, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 183: Landroid/app/Activity;.requestPermissions ([Ljava/lang/String;I)V
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x07f5
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0801
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.app.SharedElementCallback', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 59 (Landroid/app/SharedElementCallback;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x080f
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.PersistableBundle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 259 (Landroid/os/PersistableBundle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0856
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: DexOpt: resolve class illegal access: Lcom/arpacia/selfietime/FacebookLoginActivity; -> Landroid/support/v4/app/BaseFragmentActivityDonut;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.BaseFragmentActivityDonut.onCreateView, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2569: Landroid/support/v4/app/BaseFragmentActivityDonut;.onCreateView (Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x089a
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: DexOpt: resolve class illegal access: Lcom/arpacia/selfietime/FacebookLoginActivity; -> Landroid/support/v4/app/BaseFragmentActivityJB;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.BaseFragmentActivityJB.startIntentSenderForResult, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2605: Landroid/support/v4/app/BaseFragmentActivityJB;.startIntentSenderForResult (Landroid/content/IntentSender;ILandroid/content/Intent;IIILandroid/os/Bundle;)V
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x75 at 0x08e6
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getExternalFilesDirs, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 631: Landroid/content/ContextWrapper;.getExternalFilesDirs (Ljava/lang/String;)[Ljava/io/File;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x08f0
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.requestDragAndDropPermissions, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 182: Landroid/app/Activity;.requestDragAndDropPermissions (Landroid/view/DragEvent;)Landroid/view/DragAndDropPermissions;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0962
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.transition.TransitionManager', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 1965 (Landroid/transition/TransitionManager;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x09b6
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onLocalVoiceInteractionStarted, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 141: Landroid/app/Activity;.onLocalVoiceInteractionStarted ()V
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x09e7
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onProvideReferrer, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 155: Landroid/app/Activity;.onProvideReferrer ()Landroid/net/Uri;
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x09fc
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: DexOpt: illegal method access (call Landroid/support/v4/app/FragmentActivity;.doReallyStop (Z)V from Lcom/arpacia/selfietime/FacebookLoginActivity;)
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.FragmentActivity.doReallyStop, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2823: Landroid/support/v4/app/FragmentActivity;.doReallyStop (Z)V
    09-05 13:03:39.148 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0a29
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.Context.getDrawable, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 551: Landroid/content/Context;.getDrawable (I)Landroid/graphics/drawable/Drawable;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0a73
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.showLockTaskEscapeMessage, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 221: Landroid/app/Activity;.showLockTaskEscapeMessage ()V
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0a83
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getContentTransitionManager, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 65: Landroid/app/Activity;.getContentTransitionManager ()Landroid/transition/TransitionManager;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0a89
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.isDeviceProtectedStorage, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 650: Landroid/content/ContextWrapper;.isDeviceProtectedStorage ()Z
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0a9f
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.requestShowKeyboardShortcuts, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 184: Landroid/app/Activity;.requestShowKeyboardShortcuts ()V
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0aaa
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.app.SharedElementCallback', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 59 (Landroid/app/SharedElementCallback;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0b56
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getReferrer, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 79: Landroid/app/Activity;.getReferrer ()Landroid/net/Uri;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0bca
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getDataDir, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 625: Landroid/content/ContextWrapper;.getDataDir ()Ljava/io/File;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0bda
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getSystemServiceName, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 644: Landroid/content/ContextWrapper;.getSystemServiceName (Ljava/lang/Class;)Ljava/lang/String;
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0c4d
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isVoiceInteractionRoot, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 107: Landroid/app/Activity;.isVoiceInteractionRoot ()Z
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0c75
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isDestroyed, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 99: Landroid/app/Activity;.isDestroyed ()Z
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0c80
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isLocalVoiceInteractionSupported, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 104: Landroid/app/Activity;.isLocalVoiceInteractionSupported ()Z
    09-05 13:03:39.156 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0c8b
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0cdb
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.getExternalMediaDirs, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 632: Landroid/content/ContextWrapper;.getExternalMediaDirs ()[Ljava/io/File;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0d08
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x0d44
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getMediaController, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 73: Landroid/app/Activity;.getMediaController ()Landroid/media/session/MediaController;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0d4c
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getSearchEvent, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 82: Landroid/app/Activity;.getSearchEvent ()Landroid/view/SearchEvent;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0dcb
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: DexOpt: illegal method access (call Landroid/support/v4/app/FragmentActivity;.onReallyStop ()V from Lcom/arpacia/selfietime/FacebookLoginActivity;)
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.FragmentActivity.onReallyStop, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2863: Landroid/support/v4/app/FragmentActivity;.onReallyStop ()V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0e0b
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.stopLocalVoiceInteraction, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 249: Landroid/app/Activity;.stopLocalVoiceInteraction ()V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0e6a
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isVoiceInteraction, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 106: Landroid/app/Activity;.isVoiceInteraction ()Z
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0e81
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.requestVisibleBehind, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 185: Landroid/app/Activity;.requestVisibleBehind (Z)Z
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0ee6
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.shouldShowRequestPermissionRationale, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 216: Landroid/app/Activity;.shouldShowRequestPermissionRationale (Ljava/lang/String;)Z
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0efb
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.onProvideAssistData, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 153: Landroid/app/Activity;.onProvideAssistData (Landroid/os/Bundle;)V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0f10
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.finishAndRemoveTask, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 55: Landroid/app/Activity;.finishAndRemoveTask ()V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0f38
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.Context.getColor, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 546: Landroid/content/Context;.getColor (I)I
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0f8f
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.reportFullyDrawn, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 181: Landroid/app/Activity;.reportFullyDrawn ()V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x0fbd
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.app.assist.AssistContent', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 63 (Landroid/app/assist/AssistContent;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x1001
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.finishAfterTransition, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 54: Landroid/app/Activity;.finishAfterTransition ()V
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x1025
    09-05 13:03:39.164 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.getContentScene, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 64: Landroid/app/Activity;.getContentScene ()Landroid/transition/Scene;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x102b
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.view.ContextThemeWrapper.applyOverrideConfiguration, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 16298: Landroid/view/ContextThemeWrapper;.applyOverrideConfiguration (Landroid/content/res/Configuration;)V
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x1162
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.view.SearchEvent', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 2013 (Landroid/view/SearchEvent;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x1178
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: DexOpt: resolve class illegal access: Lcom/arpacia/selfietime/FacebookLoginActivity; -> Landroid/support/v4/app/BaseFragmentActivityHoneycomb;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.support.v4.app.BaseFragmentActivityHoneycomb.onCreateView, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 2578: Landroid/support/v4/app/BaseFragmentActivityHoneycomb;.onCreateView (Landroid/view/View;Ljava/lang/String;Landroid/content/Context;Landroid/util/AttributeSet;)Landroid/view/View;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x11a3
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.startLocalVoiceInteraction, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 242: Landroid/app/Activity;.startLocalVoiceInteraction (Landroid/os/Bundle;)V
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x11ad
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.isInPictureInPictureMode, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 103: Landroid/app/Activity;.isInPictureInPictureMode ()Z
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x1218
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime E/dalvikvm: Could not find class 'android.os.UserHandle', referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve check-cast 271 (Landroid/os/UserHandle;) in Lcom/arpacia/selfietime/FacebookLoginActivity;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x1f at 0x1237
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.startLockTask, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 243: Landroid/app/Activity;.startLockTask ()V
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x12a8
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.createDisplayContext, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 604: Landroid/content/ContextWrapper;.createDisplayContext (Landroid/view/Display;)Landroid/content/Context;
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x12df
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.content.ContextWrapper.checkSelfPermission, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 598: Landroid/content/ContextWrapper;.checkSelfPermission (Ljava/lang/String;)I
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opcode 0x6f at 0x131b
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime I/dalvikvm: Could not find method android.app.Activity.setVrModeEnabled, referenced from method com.arpacia.selfietime.FacebookLoginActivity.access$super
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime W/dalvikvm: VFY: unable to resolve virtual method 215: Landroid/app/Activity;.setVrModeEnabled (ZLandroid/content/ComponentName;)V
    09-05 13:03:39.171 4457-4457/com.arpacia.selfietime D/dalvikvm: VFY: replacing opc
    0
  4. BunoCS Messages postés 436 Date d'inscription   Statut Modérateur Dernière intervention   3 931
     
    Hello,

    Tu sais que tu peux filtrer la sortie du Logcat? C'est "un peu" long et illisible là...

    As-tu essayer de désactiver "Instant Run" dans Android Studio?
    File --> Settings--> Build,Execution,Deployment -->Instant Run ---> uncheck "Enable instant run"
    0
  5. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  6. dlife123 Messages postés 44 Statut Membre 35
     
    salut,
    j'ai essayé de recommencer à zéro ce tutoriel http://androidbash.com/firebase-classic-email-login-facebook-login-android/
    j'ai reussi la partie inscription avec email et mot de passe mais pour ce qui est de l'enregistrement avec facebook j'ai un ptit problème.je reussis à me connecter avec facebook dans l'application car lorsque j'essaye de me deconnecter je vois bien mon nom d'utilisateur facebook dans l'application cependant je ne reussis pas à le stocker dans ma base de données firebase.
    voici la methode:


    private void signInWithFacebook(AccessToken token) {
    Log.d(TAG, "signInWithFacebook:" + token);

    showProgressDialog();

    AuthCredential credential = FacebookAuthProvider.getCredential(token.getToken());
    mAuth.signInWithCredential(credential)
    .addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
    @Override
    public void onComplete(@NonNull Task<AuthResult> task) {
    Log.d(TAG, "signInWithCredential:onComplete:" + task.isSuccessful());

    // If sign in fails, display a message to the user. If sign in succeeds
    // the auth state listener will be notified and logic to handle the
    // signed in user can be handled in the listener.
    if (!task.isSuccessful()) {
    Log.w(TAG, "signInWithCredential", task.getException());
    Toast.makeText(LoginActivity.this, "Authentication failed.",
    Toast.LENGTH_SHORT).show();
    }else{
    String uid=task.getResult().getUser().getUid();
    String name=task.getResult().getUser().getDisplayName();
    String email=task.getResult().getUser().getEmail();
    String image=task.getResult().getUser().getPhotoUrl().toString();

    //Create a new User and Save it in Firebase database
    User user = new User(uid,name,null,email,null);

    mRef.child(uid).setValue(user);

    Intent intent = new Intent(getApplicationContext(), MainActivity.class);
    intent.putExtra("user_id",uid);
    intent.putExtra("profile_picture",image);
    startActivity(intent);
    finish();
    }

    hideProgressDialog();
    }
    });
    }


    merci pour ton aide
    0