invertase / react-native-firebase

🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.
https://rnfirebase.io
Other
11.7k stars 2.22k forks source link

TransformException: Error while generating the main dex list when adding crash and messaging in app/build.gradle #1051

Closed 3210jr closed 6 years ago

3210jr commented 6 years ago

Issue

Hey, In my app/build.gradle file, if I comment out the "messaging" and the "crash" package, the app compiles, if I uncomment them, the app crashes with the following error:

Explanation in code:

Below does not work

    implementation "com.google.firebase:firebase-messaging:15.0.0"
    implementation "com.google.firebase:firebase-auth:15.0.0"
    implementation "com.google.firebase:firebase-config:15.0.0"
    implementation "com.google.firebase:firebase-crash:15.0.0"
    implementation "com.google.firebase:firebase-database:15.0.0"
    implementation "com.google.firebase:firebase-firestore:15.0.0"
    implementation "com.google.firebase:firebase-invites:15.0.0"
    implementation "com.google.firebase:firebase-perf:15.0.0"
    implementation "com.google.firebase:firebase-storage:15.0.0"

But, the code below compiles:

//  implementation "com.google.firebase:firebase-messaging:15.0.0"
    implementation "com.google.firebase:firebase-auth:15.0.0"
    implementation "com.google.firebase:firebase-config:15.0.0"
//  implementation "com.google.firebase:firebase-crash:15.0.0"
    implementation "com.google.firebase:firebase-database:15.0.0"
    implementation "com.google.firebase:firebase-firestore:15.0.0"

    implementation "com.google.firebase:firebase-invites:15.0.0"
    implementation "com.google.firebase:firebase-perf:15.0.0"
    implementation "com.google.firebase:firebase-storage:15.0.0"

Any help is appreciated. Thanks.

Environment

  1. Application Target Platform: Android
  1. Development Operating System: MacOS Sierra
  1. Build Tools:
  1. React Native version:0.55.3
  1. RNFirebase Version: 4.0.7
  1. Firebase Module: messaging and crash
yosa commented 6 years ago

i have the same problem

3210jr commented 6 years ago

@yosa I thought I was going insane! its kicking my butt! Any ideas?

mbizplus commented 6 years ago

Hi, try this version for google-services and firebase-core

/android/app/build.grade:
implementation "com.google.firebase:firebase-core:15.0.2"
implementation "com.google.firebase:firebase-messaging:15.0.2"

/android/build.grade:
classpath 'com.google.gms:google-services:3.2.1'

It working fine for me!

3210jr commented 6 years ago

Thanks @mbizplus it works. I ended up changing the version of firebase-crash to 15.0.2 as well and all is working fine.

@yosa is it working for you? if it is I can close the issue.

ChaoTzuJung commented 6 years ago

Hi all, I got the same error , I learn how to add Facebook Auth to react-native by RNfirebase from this video: https://www.youtube.com/watch?v=nYpm0xj0k2Q&t=6s

And in last step, he tell us that copy the code from "react-native-firebase-starter" with two file

/android/build.grade

/android/app/build.grade

I copy them and replace my code and I got error:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.

Please tell me how to fix it ! Thanks !!

this is my repo: https://github.com/ChaoTzuJung/Dougo/tree/fb_login_on_firebase

chrisbianca commented 6 years ago

Thanks for flagging this. Unfortunately Google released new versions of their Android libs on Thursday / Friday which completely broke our starter kit and installation instructions.

These have both now been updated to reflect the required changes.

ChaoTzuJung commented 6 years ago

I change version and it build sucessful in terminal however my android simulator got a strange error:

unfortunately , PROJECTNAME has stopped

android {
    // because of firestore:
    dexOptions {
        javaMaxHeapSize "4g"
    }
    compileSdkVersion 27 // 26 -> 27

    defaultConfig {
        applicationId "com.dougo"
        //Debug failed for task ':app:processDebugManifest'. 15 -> 16 https://developer.android.com/studio/build/multidex
        minSdkVersion 16
        //26 -> 27
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
        // because of firestore:
        multiDexEnabled true
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86"
        }
    }
    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
        debug {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    implementation project(':react-native-fbsdk')

    implementation(project(':react-native-firebase')) {
        transitive = false
    }

    // RNFirebase required dependencies
    implementation "com.google.firebase:firebase-core:15.0.2" // 15.0.0 -> 15.0.2 failed for task ':app:transformClassesWithMultidexlistForDebug'.
    implementation "com.google.android.gms:play-services-base:15.0.1" // 15.0.0 -> 15.0.1

    // RNFirebase optional dependencies
    implementation "com.google.firebase:firebase-ads:15.0.0"
    implementation "com.google.firebase:firebase-auth:15.0.0"
    implementation "com.google.firebase:firebase-config:15.0.2" // 15.0.0 -> 15.0.2 failed for task ':app:transformClassesWithMultidexlistForDebug'.
    implementation "com.google.firebase:firebase-database:15.0.0"
    implementation "com.google.firebase:firebase-invites:15.0.1"
    implementation "com.google.firebase:firebase-firestore:16.0.0" // 15.0.0 -> 16.0.0 failed for task ':app:transformClassesWithMultidexlistForDebug'.
    implementation "com.google.firebase:firebase-messaging:15.0.2" // 15.0.0 -> 15.0.2 failed for task ':app:transformClassesWithMultidexlistForDebug'.
    implementation "com.google.firebase:firebase-perf:15.1.0"
    implementation "com.google.firebase:firebase-storage:15.0.2" // // 15.0.0 -> 15.0.2

    implementation('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
        transitive = true
    }

    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:appcompat-v7:27.0.2"
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation "com.android.support:multidex:1.0.1" // Degug failed for task ':app:transformClassesWithMultidexlistForDebug -- Enable Multidex for Apps with Over 64K Methods
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

apply plugin: 'com.google.gms.google-services'
chrisbianca commented 6 years ago

@ChaoTzuJung Are you able to run the adb logcat command from the command line. This should allow you to identify a stack trace corresponding to this error.

ChaoTzuJung commented 6 years ago

Thank for you repley I don't find anything solution from this method Can you help me read this log ? Thanks a lot!!

` 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_ERROR 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_SHUTTER 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_FOCUS 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_ZOOM 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_PREVIEW_FRAME 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_VIDEO_FRAME 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_POSTVIEW_FRAME 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_RAW_IMAGE 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_COMPRESSED_IMAGE 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_RAW_IMAGE_NOTIFY 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: CAMERA_MSG_PREVIEW_METADATA 05-07 05:10:46.293 243 243 V EmulatedCamera_CallbackNotifier: * Currently enabled messages: 05-07 05:10:46.293 579 626 E ConnectivityService: Failed to find Messenger in unregisterNetworkFactory 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: doStopPreview 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: cancelPicture 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: releaseCamera 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: doStopPreview 05-07 05:10:46.293 243 243 V EmulatedCamera_GenyDevice: disconnectDevice 05-07 05:10:46.293 243 243 I CameraFlashlight: Destroying camera 1 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: closeCamera 05-07 05:10:46.293 243 243 V EmulatedCamera_Camera: doStopPreview 05-07 05:10:46.293 579 626 D ConnectivityService: Got NetworkFactory Messenger for Telephony 05-07 05:10:46.293 579 626 D ConnectivityService: Ignoring this network 05-07 05:10:46.294 243 243 I CameraService: disconnect: Disconnected client for camera 1 for PID 243 05-07 05:10:46.294 243 243 D NuPlayerDriver: reset(0xf6159cc0) 05-07 05:10:46.294 243 243 D NuPlayerDriver: notifyListener_l(0xf6159cc0), (8, 0, 0) 05-07 05:10:46.294 243 1063 D NuPlayerDriver: notifyResetComplete(0xf6159cc0) 05-07 05:10:46.295 243 243 D NuPlayerDriver: reset(0xf6159d20) 05-07 05:10:46.295 243 243 D NuPlayerDriver: notifyListener_l(0xf6159d20), (8, 0, 0) 05-07 05:10:46.295 243 1068 D NuPlayerDriver: notifyResetComplete(0xf6159d20) 05-07 05:10:46.296 243 243 E CameraService: disconnect: Disconnect called on already disconnected client for device 1 05-07 05:10:46.298 243 641 V EmulatedCamera_Camera: getCameraInfo 05-07 05:10:46.299 243 641 V EmulatedCamera_BaseCamera: getCameraInfo 05-07 05:10:46.306 243 790 V EmulatedCamera_Camera: getCameraInfo 05-07 05:10:46.306 243 790 V EmulatedCamera_BaseCamera: getCameraInfo 05-07 05:10:46.321 849 1032 D libEGL : loaded /system/lib/egl/libEGL_emulation.so 05-07 05:10:46.321 849 1032 D libEGL : loaded /system/lib/egl/libGLESv1_CM_emulation.so 05-07 05:10:46.330 849 1032 D libEGL : loaded /system/lib/egl/libGLESv2_emulation.so 05-07 05:10:46.335 820 820 D CarrierConfigLoader: CarrierConfigLoader has started 05-07 05:10:46.336 820 820 E BluetoothAdapter: Bluetooth binder is null 05-07 05:10:46.338 849 1032 D : HostConnection::get() New Host Connection established 0xee9d2720, tid 1032 05-07 05:10:46.346 820 820 W TelecomManager: Telecom Service not found. 05-07 05:10:46.346 820 820 I Telephony: TtyManager: updateUiTtyMode -1 -> 0 05-07 05:10:46.365 849 1032 I OpenGLRenderer: Initialized EGL, version 1.4 05-07 05:10:46.367 668 1082 D OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true 05-07 05:10:46.367 668 1082 D OpenGLRenderer: profile bars disabled 05-07 05:10:46.367 668 1082 D OpenGLRenderer: ambientRatio = 1.50 05-07 05:10:46.378 668 668 D : HostConnection::get() New Host Connection established 0xe07be930, tid 668 05-07 05:10:46.396 326 572 D : HostConnection::get() New Host Connection established 0xf7092ed0, tid 572 05-07 05:10:46.398 668 668 D PhoneStatusBar: disable: < EXPAND icons alerts system_info BACK HOME RECENT clock SEARCH quick_settings > 05-07 05:10:46.417 668 668 D PhoneStatusBar: heads up is enabled 05-07 05:10:46.428 668 668 D ViewRootImpl: changeCanvasOpacity: opaque=true 05-07 05:10:46.434 820 820 D TelephonyDebugService: TelephonyDebugService() 05-07 05:10:46.436 849 1032 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:10:46.436 849 1032 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xe9066aa0, error=EGL_SUCCESS 05-07 05:10:46.447 579 625 D WifiService: New client listening to asynchronous messages 05-07 05:10:46.462 820 820 D CarrierConfigLoader: mHandler: 12 phoneId: 0 05-07 05:10:46.507 820 820 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC 05-07 05:10:46.515 820 820 W TelecomManager: Telecom Service not found. 05-07 05:10:46.521 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} 05-07 05:10:46.524 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:46.537 820 820 W TelecomManager: Telecom Service not found. 05-07 05:10:46.543 820 820 W TelecomManager: Telecom Service not found. 05-07 05:10:46.549 820 820 W TelecomManager: Telecom Service not found. 05-07 05:10:46.630 668 695 I art : Background sticky concurrent mark sweep GC freed 3040(129KB) AllocSpace objects, 0(0B) LOS objects, 2% free, 6MB/6MB, paused 30.839ms total 77.030ms 05-07 05:10:46.632 668 1082 D libEGL : loaded /system/lib/egl/libEGL_emulation.so 05-07 05:10:46.635 668 1082 D libEGL : loaded /system/lib/egl/libGLESv1_CM_emulation.so 05-07 05:10:46.646 579 598 W WindowManager: Timeout waiting for drawn: undrawn=[Window{d5c6a7 u0 KeyguardScrim}] 05-07 05:10:46.649 668 1082 D libEGL : loaded /system/lib/egl/libGLESv2_emulation.so 05-07 05:10:46.670 668 1082 D : HostConnection::get() New Host Connection established 0xe0712af0, tid 1082 05-07 05:10:46.762 668 1082 I OpenGLRenderer: Initialized EGL, version 1.4 05-07 05:10:46.847 579 598 I ActivityManager: Displayed com.android.launcher3/.Launcher: +1s727ms 05-07 05:10:47.021 668 1082 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:10:47.022 668 1082 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xdf172fa0, error=EGL_SUCCESS 05-07 05:10:47.083 579 625 D WifiService: New client listening to asynchronous messages 05-07 05:10:47.141 579 624 D WIFI : Registering NetworkFactory 05-07 05:10:47.141 579 624 D WIFI_UT : Registering NetworkFactory 05-07 05:10:47.146 579 626 D ConnectivityService: Got NetworkFactory Messenger for WIFI 05-07 05:10:47.146 579 626 D ConnectivityService: Got NetworkFactory Messenger for WIFI_UT 05-07 05:10:47.146 579 626 D ConnectivityService: Ignoring this network 05-07 05:10:47.148 579 624 D WIFI : got request NetworkRequest [ id=1, legacyType=-1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] with score 0 05-07 05:10:47.210 579 598 W WindowManager: Window freeze timeout expired. 05-07 05:10:47.214 579 598 W WindowManager: Force clearing orientation change: Window{f00fc83 u0 StatusBar} 05-07 05:10:47.214 579 598 W WindowManager: Force clearing orientation change: Window{d5c6a7 u0 KeyguardScrim} 05-07 05:10:47.289 849 849 D Launcher: bindAppWidget: AppWidget(id=3) 05-07 05:10:47.289 849 849 D Launcher: bindAppWidget: id=3 belongs to component ComponentInfo{com.android.deskclock/com.android.alarmclock.AnalogAppWidgetProvider} 05-07 05:10:47.290 579 593 V KeyguardServiceDelegate: * Keyguard started 05-07 05:10:47.293 579 593 D Sensors : batch handle 1, but there is no batch sensor in genymotion 05-07 05:10:47.294 579 593 W KeyguardServiceDelegate: onScreenTurningOn(): no keyguard service! 05-07 05:10:47.305 668 668 I Choreographer: Skipped 52 frames! The application may be doing too much work on its main thread. 05-07 05:10:47.421 849 849 D Launcher: bound widget id=3 in 132ms 05-07 05:10:47.490 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:47.492 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:47.494 579 579 I DefaultPermGrantPolicy: Granting permissions to default sms app for user:0 05-07 05:10:47.497 579 579 I DefaultPermGrantPolicy: Granting permissions to default dialer app for user:0 05-07 05:10:47.502 579 579 I Telecom : PhoneAccountRegistrar: SimCallManager queried, returning: null 05-07 05:10:47.513 579 649 E WifiScanningService: could not start HAL 05-07 05:10:47.515 579 579 D RttService: SCAN_AVAILABLE : 3 05-07 05:10:47.515 579 650 D RttService: DefaultState got{ when=0 what=160512 target=com.android.internal.util.StateMachine$SmHandler } 05-07 05:10:47.535 579 579 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:47.552 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:47.563 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:47.589 579 579 I FusedLocation: engine started (com.android.location.fused) 05-07 05:10:47.612 668 668 W KeyguardUpdateMonitor: invalid subId in handleSimStateChange() 05-07 05:10:47.625 579 579 I ActivityManager: Start proc 1110:com.android.deskclock/u0a30 for broadcast com.android.deskclock/com.android.alarmclock.AnalogAppWidgetProvider 05-07 05:10:47.625 668 668 W KeyguardUpdateMonitor: invalid subId in handleServiceStateChange() 05-07 05:10:47.628 579 579 V KeyguardServiceDelegate: * Keyguard connected (yay!) 05-07 05:10:47.660 1110 1110 E libprocessgroup: failed to make and chown /acct/uid_10030: Read-only file system 05-07 05:10:47.660 1110 1110 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:47.726 1110 1110 W System : ClassLoader referenced unknown path: /system/app/DeskClock/lib/x86 05-07 05:10:47.782 579 591 I ActivityManager: Start proc 1125:com.android.quicksearchbox/u0a53 for broadcast com.android.quicksearchbox/.SearchWidgetProvider 05-07 05:10:47.821 1125 1125 E libprocessgroup: failed to make and chown /acct/uid_10053: Read-only file system 05-07 05:10:47.821 1125 1125 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:47.838 1125 1125 W System : ClassLoader referenced unknown path: /system/app/QuickSearchBox/lib/x86 05-07 05:10:47.845 326 1090 D : HostConnection::get() New Host Connection established 0xf6bfe370, tid 1090 05-07 05:10:47.885 579 884 I ActivityManager: Start proc 1142:com.android.settings/1000 for broadcast com.android.settings/.sim.SimSelectNotification 05-07 05:10:47.914 1142 1142 E libprocessgroup: failed to make and chown /acct/uid_1000: Read-only file system 05-07 05:10:47.916 1142 1142 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:48.041 1142 1142 W System : ClassLoader referenced unknown path: /system/priv-app/Settings/lib/x86 05-07 05:10:48.153 820 1156 D SIP : [SipSharedPreferences] isReceivingCallsEnabled, option not set; use default value, exception: android.provider.Settings$SettingNotFoundException: sip_receive_calls 05-07 05:10:48.294 579 594 W WindowManager: Keyguard drawn timeout. Setting mKeyguardDrawComplete 05-07 05:10:49.336 326 353 I SurfaceFlinger: Boot is finished (9377 ms) 05-07 05:10:49.337 668 668 I Choreographer: Skipped 102 frames! The application may be doing too much work on its main thread. 05-07 05:10:49.338 579 590 V KeyguardServiceDelegate: ** SHOWN CALLED 05-07 05:10:49.356 579 598 D : HostConnection::get() New Host Connection established 0xd93a6c20, tid 598 05-07 05:10:49.368 421 460 E Surface : getSlotFromBufferLocked: unknown buffer: 0xf602d0e0 05-07 05:10:49.380 579 598 I SystemServiceManager: Starting phase 1000 05-07 05:10:49.382 579 579 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:49.391 579 1161 I ActivityManager: Start proc 1163:com.android.keychain/1000 for service com.android.keychain/.KeyChainService 05-07 05:10:49.398 668 668 D PhoneStatusBar: disable: < expand icons alerts system_info back home recent clock search* quick_settings > 05-07 05:10:49.406 579 1169 I RecoverySystem: No recovery log file 05-07 05:10:49.419 579 1169 I BootReceiver: Copying audit failures to DropBox 05-07 05:10:49.420 579 1169 I BootReceiver: Checking for fsck errors 05-07 05:10:49.430 579 590 I ActivityManager: Start proc 1171:com.android.dialer/u0a5 for broadcast com.android.dialer/.calllog.CallLogReceiver 05-07 05:10:49.430 1163 1163 E libprocessgroup: failed to make and chown /acct/uid_1000: Read-only file system 05-07 05:10:49.430 1163 1163 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.446 1163 1163 W System : ClassLoader referenced unknown path: /system/app/KeyChain/lib/x86 05-07 05:10:49.461 1171 1171 E libprocessgroup: failed to make and chown /acct/uid_10005: Read-only file system 05-07 05:10:49.461 1171 1171 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.480 1171 1171 W System : ClassLoader referenced unknown path: /system/priv-app/Dialer/lib/x86 05-07 05:10:49.497 1171 1171 D ExtensionsFactory: No custom extensions. 05-07 05:10:49.517 579 579 I ActivityManager: Start proc 1198:com.android.providers.calendar/u0a1 for broadcast com.android.providers.calendar/.CalendarReceiver 05-07 05:10:49.519 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:49.523 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:49.529 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:49.531 820 820 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC 05-07 05:10:49.533 579 884 I Telecom : PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] 05-07 05:10:49.536 1198 1198 E libprocessgroup: failed to make and chown /acct/uid_10001: Read-only file system 05-07 05:10:49.536 1198 1198 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.543 579 884 I Telecom : : Sending phone-account intent as user 05-07 05:10:49.544 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} 05-07 05:10:49.544 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:49.549 820 820 I Telephony: TelecomAccountRegistry: Unregistering phone account ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}. 05-07 05:10:49.573 668 668 W KeyguardUpdateMonitor: invalid subId in handleServiceStateChange() 05-07 05:10:49.575 579 811 W Telecom : : No account found for the calling user 05-07 05:10:49.596 1198 1198 W System : ClassLoader referenced unknown path: /system/priv-app/CalendarProvider/lib/x86 05-07 05:10:49.615 1198 1198 I CalendarProvider2: Created com.android.providers.calendar.CalendarAlarmManager@4c95b12(com.android.providers.calendar.CalendarProvider2@56772e3) 05-07 05:10:49.617 579 811 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:49.636 579 590 I ActivityManager: Start proc 1214:com.android.managedprovisioning/u0a9 for broadcast com.android.managedprovisioning/.BootReminder 05-07 05:10:49.660 1214 1214 E libprocessgroup: failed to make and chown /acct/uid_10009: Read-only file system 05-07 05:10:49.660 1214 1214 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.673 1214 1214 W System : ClassLoader referenced unknown path: /system/priv-app/ManagedProvisioning/lib/x86 05-07 05:10:49.783 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:49.784 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:49.793 579 892 I ActivityManager: Start proc 1264:com.android.onetimeinitializer/u0a11 for broadcast com.android.onetimeinitializer/.OneTimeInitializerReceiver 05-07 05:10:49.799 820 820 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true 05-07 05:10:49.799 820 820 D MccTable: updateMccMncConfiguration defaultMccMnc= 05-07 05:10:49.799 820 820 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260 05-07 05:10:49.799 820 820 D MccTable: WIFI_COUNTRY_CODE set to us 05-07 05:10:49.799 579 707 I WifiService: WifiService trying to set country code to us with persist set to true 05-07 05:10:49.808 668 668 W KeyguardUpdateMonitor: invalid subId in handleServiceStateChange() 05-07 05:10:49.816 1264 1264 E libprocessgroup: failed to make and chown /acct/uid_10011: Read-only file system 05-07 05:10:49.816 1264 1264 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.823 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:49.823 668 668 W KeyguardUpdateMonitor: invalid subId in handleSimStateChange() 05-07 05:10:49.824 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:49.825 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:49.827 820 820 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC 05-07 05:10:49.829 579 707 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:49.834 1264 1264 W System : ClassLoader referenced unknown path: /system/priv-app/OneTimeInitializer/lib/x86 05-07 05:10:49.835 1264 1264 V OneTimeInitializerRece: OneTimeInitializerReceiver.onReceive 05-07 05:10:49.841 579 707 I Telecom : : Sending phone-account intent as user 05-07 05:10:49.846 579 590 I ActivityManager: Start proc 1306:com.android.calendar/u0a24 for broadcast com.android.calendar/.alerts.AlertReceiver 05-07 05:10:49.850 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} 05-07 05:10:49.850 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:49.854 579 707 W Telecom : : No account found for the calling user 05-07 05:10:49.868 1306 1306 E libprocessgroup: failed to make and chown /acct/uid_10024: Read-only file system 05-07 05:10:49.868 1306 1306 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:49.882 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:49.882 668 668 W KeyguardUpdateMonitor: invalid subId in handleSimStateChange() 05-07 05:10:49.886 820 1071 E DcSwitchStateMachine-0: EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED 05-07 05:10:49.887 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:49.888 820 820 D MccTable: updateMccMncConfiguration mccmnc='310270' fromServiceState=false 05-07 05:10:49.889 820 820 D MccTable: updateMccMncConfiguration defaultMccMnc= 05-07 05:10:49.889 820 820 D MccTable: updateMccMncConfiguration: mcc=310, mnc=270 05-07 05:10:49.889 820 820 D MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc270mnc ?locale ?layoutDir ?swdp?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?} 05-07 05:10:49.889 579 591 I ActivityManager: Config changes=3 {1.0 310mcc270mnc en_US ldltr sw360dp w360dp h616dp 640dpi nrml long port finger qwerty/v/v dpad/v s.6} 05-07 05:10:49.897 326 353 D PermissionCache: checking android.permission.READ_FRAME_BUFFER for uid=1000 => granted (203 us) 05-07 05:10:49.902 1306 1306 W System : ClassLoader referenced unknown path: /system/app/Calendar/lib/x86 05-07 05:10:49.921 326 326 E EGL_emulation: tid 326: eglCreateSyncKHR(1215): error 0x3004 (EGL_BAD_ATTRIBUTE) 05-07 05:10:49.923 813 1229 W MediaScanner: Error opening directory '/oem/media/', skipping: No such file or directory. 05-07 05:10:49.957 849 1032 E Surface : getSlotFromBufferLocked: unknown buffer: 0xf2bb54f0 05-07 05:10:49.962 1306 1306 D ExtensionsFactory: No custom extensions. 05-07 05:10:49.964 849 849 W Launcher: setApplicationContext called twice! old=android.app.Application@56772e3 new=android.app.Application@56772e3 05-07 05:10:49.969 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:49.973 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:49.975 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:49.975 820 820 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC 05-07 05:10:49.977 579 590 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(addr: tel:*** -> tel:)(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))(subAddr: tel:*** -> tel:)] 05-07 05:10:49.982 1306 1306 D AlertReceiver: onReceive: a=android.intent.action.BOOT_COMPLETED Intent { act=android.intent.action.BOOT_COMPLETED flg=0x8000010 cmp=com.android.calendar/.alerts.AlertReceiver (has extras) } 05-07 05:10:49.991 579 590 I Telecom : : Sending phone-account intent as user 05-07 05:10:49.992 1110 1110 V AlarmClock: AlarmInitReceiver android.intent.action.BOOT_COMPLETED 05-07 05:10:50.003 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} 05-07 05:10:50.004 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.005 1306 1346 D AlertService: 0 Action = android.intent.action.BOOT_COMPLETED 05-07 05:10:50.006 1306 1346 D AlertService: Scheduling next alarm with AlarmScheduler. sEventReminderReceived: null 05-07 05:10:50.015 849 849 D Launcher: bindAppWidget: AppWidget(id=3) 05-07 05:10:50.015 849 849 D Launcher: bindAppWidget: id=3 belongs to component ComponentInfo{com.android.deskclock/com.android.alarmclock.AnalogAppWidgetProvider} 05-07 05:10:50.016 579 892 W Telecom : : No account found for the calling user 05-07 05:10:50.027 849 849 D Launcher: bound widget id=3 in 12ms 05-07 05:10:50.028 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.030 579 592 D GpsLocationProvider: SIM MCC/MNC is still not available 05-07 05:10:50.030 579 707 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.043 1110 1353 V AlarmClock: AlarmInitReceiver - Reset timers and clear stopwatch data 05-07 05:10:50.048 820 820 D TelephonyProvider: subIdString = -2 subId = -2 05-07 05:10:50.061 1306 1346 D AlarmScheduler: No events found starting within 1 week. 05-07 05:10:50.075 1110 1353 V AlarmClock: AlarmInitReceiver finished 05-07 05:10:50.083 579 591 I ActivityManager: Start proc 1358:com.android.email/u0a34 for broadcast com.android.email/.service.EmailBroadcastReceiver 05-07 05:10:50.095 849 1032 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:10:50.095 849 1032 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xe9066aa0, error=EGL_SUCCESS 05-07 05:10:50.106 813 1229 V MediaScanner: pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@51e512f 05-07 05:10:50.106 813 1229 V MediaScanner: /pruneDeadThumbnailFiles... android.database.sqlite.SQLiteCursor@51e512f 05-07 05:10:50.114 820 820 V OtaStartupReceiver: onOtaspChanged: mOtaspMode=3 05-07 05:10:50.115 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.123 820 820 E PhoneInterfaceManager: [PhoneIntfMgr] getIccId: No UICC 05-07 05:10:50.124 1358 1358 E libprocessgroup: failed to make and chown /acct/uid_10034: Read-only file system 05-07 05:10:50.124 1358 1358 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:50.125 579 590 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.140 579 590 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.141 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0} 05-07 05:10:50.141 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.148 579 884 W Telecom : : No account found for the calling user 05-07 05:10:50.149 820 1071 E DcSwitchStateMachine-0: EVENT_DATA_DISALLOWED failed, com.android.internal.telephony.CommandException: REQUEST_NOT_SUPPORTED 05-07 05:10:50.151 579 598 I WindowManager: Screen frozen for +261ms due to Window{86735c8 u0 com.android.launcher3/com.android.launcher3.Launcher} 05-07 05:10:50.166 1358 1358 W System : ClassLoader referenced unknown path: /system/app/Email/lib/x86 05-07 05:10:50.174 820 820 D MccTable: updateMccMncConfiguration mccmnc='310270' fromServiceState=false 05-07 05:10:50.177 820 820 D MccTable: updateMccMncConfiguration defaultMccMnc=310270 05-07 05:10:50.177 820 820 D MccTable: updateMccMncConfiguration: mcc=310, mnc=270 05-07 05:10:50.177 820 820 D MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc270mnc ?locale ?layoutDir ?swdp?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?} 05-07 05:10:50.326 579 884 I ActivityManager: Start proc 1373:com.android.exchange/u0a35 for service com.android.exchange/.service.EasService 05-07 05:10:50.330 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.336 820 820 D MccTable: updateMccMncConfiguration mccmnc='310270' fromServiceState=false 05-07 05:10:50.341 579 592 D GpsLocationProvider: SIM MCC/MNC is available: 310270 05-07 05:10:50.344 579 592 D GpsLocationProvider: Reset GPS properties, previous size = 8 05-07 05:10:50.344 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com 05-07 05:10:50.344 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275 05-07 05:10:50.344 579 592 D GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org 05-07 05:10:50.344 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000 05-07 05:10:50.344 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_MODE=1 05-07 05:10:50.345 579 592 D GpsLocationProvider: GPS properties reloaded, size = 8 05-07 05:10:50.345 579 592 E GpsLocationProvider: no AGPS interface in set_agps_server 05-07 05:10:50.345 579 590 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.345 579 590 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.348 1358 1379 D ActivityThread: Loading provider com.android.email.provider;com.android.email.notifier: com.android.email.provider.EmailProvider 05-07 05:10:50.350 1358 1378 D ActivityThread: Loading provider com.android.email.provider;com.android.email.notifier: com.android.email.provider.EmailProvider 05-07 05:10:50.354 820 820 D MccTable: updateMccMncConfiguration defaultMccMnc=310270 05-07 05:10:50.354 820 820 D MccTable: updateMccMncConfiguration: mcc=310, mnc=270 05-07 05:10:50.354 820 820 D MccTable: updateMccMncConfiguration updateConfig config={1.0 310mcc270mnc ?locale ?layoutDir ?swdp?wdp ?hdp ?density ?lsize ?long ?orien ?uimode ?night ?touch ?keyb/?/? ?nav/?} 05-07 05:10:50.360 1373 1373 E libprocessgroup: failed to make and chown /acct/uid_10035: Read-only file system 05-07 05:10:50.360 1373 1373 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:50.363 1356 1356 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<< 05-07 05:10:50.370 1356 1356 D AndroidRuntime: CheckJNI is OFF 05-07 05:10:50.379 1358 1381 D ActivityThread: Loading provider com.android.email.provider;com.android.email.notifier: com.android.email.provider.EmailProvider 05-07 05:10:50.389 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.396 579 592 D GpsLocationProvider: SIM MCC/MNC is available: 310270 05-07 05:10:50.396 579 592 D GpsLocationProvider: Reset GPS properties, previous size = 8 05-07 05:10:50.396 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com 05-07 05:10:50.396 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275 05-07 05:10:50.396 579 592 D GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org 05-07 05:10:50.396 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000 05-07 05:10:50.396 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_MODE=1 05-07 05:10:50.397 1356 1356 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat 05-07 05:10:50.397 579 592 D GpsLocationProvider: GPS properties reloaded, size = 8 05-07 05:10:50.397 579 592 E GpsLocationProvider: no AGPS interface in set_agps_server 05-07 05:10:50.451 1356 1356 E memtrack: Couldn't load memtrack module (No such file or directory) 05-07 05:10:50.456 1356 1356 E android.os.Debug: failed to load memtrack module: -2 05-07 05:10:50.456 579 591 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.457 579 707 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.457 1356 1356 I Radio-JNI: register_android_hardware_Radio DONE 05-07 05:10:50.464 1373 1373 W System : ClassLoader referenced unknown path: /system/app/Exchange2/lib/x86 05-07 05:10:50.464 778 778 I SystemBroadcastReceiver: Boot has been completed 05-07 05:10:50.464 778 778 I SystemBroadcastReceiver: toggleAppIcon() : FLAG_SYSTEM = true 05-07 05:10:50.471 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.472 820 820 D CarrierConfigLoader: update config for phoneId: 0 simState: LOADED 05-07 05:10:50.472 820 820 D CarrierServiceBindHelper: update binding for phoneId: 0 simState: LOADED 05-07 05:10:50.474 1356 1356 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm 05-07 05:10:50.479 579 592 D GpsLocationProvider: SIM MCC/MNC is available: 310270 05-07 05:10:50.479 579 592 D GpsLocationProvider: Reset GPS properties, previous size = 8 05-07 05:10:50.479 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com 05-07 05:10:50.479 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275 05-07 05:10:50.479 579 592 D GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org 05-07 05:10:50.479 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000 05-07 05:10:50.479 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_MODE=1 05-07 05:10:50.479 579 592 D GpsLocationProvider: GPS properties reloaded, size = 8 05-07 05:10:50.479 579 592 E GpsLocationProvider: no AGPS interface in set_agps_server 05-07 05:10:50.480 579 884 W ActivityManager: Unable to start service Intent { cmp=com.android.email/.service.AttachmentService} U=0: not found 05-07 05:10:50.482 579 591 W ActivityManager: Unable to start service Intent { cmp=com.android.email/.service.AttachmentService} U=0: not found 05-07 05:10:50.497 579 591 I ActivityManager: Start proc 1404:com.genymotion.superuser/1000 for broadcast com.genymotion.superuser/com.koushikdutta.superuser.SuCheckerReceiver 05-07 05:10:50.501 579 892 W ActivityManager: Unable to start service Intent { cmp=com.android.email/.service.AttachmentService} U=0: not found 05-07 05:10:50.509 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.511 579 591 W ActivityManager: Unable to start service Intent { cmp=com.android.email/.service.AttachmentService} U=0: not found 05-07 05:10:50.520 579 811 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.521 579 884 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.521 1356 1356 I art : System.exit called, status: 0 05-07 05:10:50.521 1356 1356 I AndroidRuntime: VM exiting with result code 0. 05-07 05:10:50.529 1404 1404 E libprocessgroup: failed to make and chown /acct/uid_1000: Read-only file system 05-07 05:10:50.529 1404 1404 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:50.531 1358 1409 I Email : Observing account changes for notifications 05-07 05:10:50.546 820 820 I Telephony: AccountEntry: updateVideoPauseSupport -- mcc/mnc for sub: {id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@10cf11c mcc 310 mnc 270} 05-07 05:10:50.546 579 892 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.547 579 707 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.547 579 591 I Telecom : PhoneAccountRegistrar: New phone account registered: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] 05-07 05:10:50.547 1373 1373 I Exchange: EasService.onCreate 05-07 05:10:50.549 579 892 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.550 579 884 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.561 579 591 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.561 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} 05-07 05:10:50.561 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.565 1358 1358 E ActivityThread: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@b970c41 that was originally bound here 05-07 05:10:50.565 1358 1358 E ActivityThread: android.app.ServiceConnectionLeaked: Service com.android.email.service.EmailBroadcastProcessorService has leaked ServiceConnection com.android.emailcommon.service.ServiceProxy$ProxyConnection@b970c41 that was originally bound here 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.app.LoadedApk$ServiceDispatcher.(LoadedApk.java:1092) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:986) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1303) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.app.ContextImpl.bindService(ContextImpl.java:1286) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.content.ContextWrapper.bindService(ContextWrapper.java:604) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.emailcommon.service.ServiceProxy.setTask(ServiceProxy.java:181) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.emailcommon.service.ServiceProxy.test(ServiceProxy.java:224) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.service.EmailServiceUtils.isServiceAvailable(EmailServiceUtils.java:160) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.provider.AccountReconciler.reconcileAccountsInternal(AccountReconciler.java:171) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.provider.AccountReconciler.reconcileAccounts(AccountReconciler.java:115) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.service.EmailBroadcastProcessorService.reconcileAndStartServices(EmailBroadcastProcessorService.java:305) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.service.EmailBroadcastProcessorService.onBootCompleted(EmailBroadcastProcessorService.java:295) 05-07 05:10:50.565 1358 1358 E ActivityThread: at com.android.email.service.EmailBroadcastProcessorService.onHandleIntent(EmailBroadcastProcessorService.java:130) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:66) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:102) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.os.Looper.loop(Looper.java:148) 05-07 05:10:50.565 1358 1358 E ActivityThread: at android.os.HandlerThread.run(HandlerThread.java:61) 05-07 05:10:50.567 579 707 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.568 579 591 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true 05-07 05:10:50.568 1373 1418 I Exchange: RestartPingTask 05-07 05:10:50.570 820 820 I Telephony: TelecomAccountRegistry: Unregistering phone account ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e0184adedf913b076626646d3f52c3b49c39ad6d], UserHandle{0}. 05-07 05:10:50.577 579 591 W Telecom : : No account found for the calling user 05-07 05:10:50.581 1373 1373 I Exchange: RestartPingsTask did not start any pings. 05-07 05:10:50.581 1373 1373 I Exchange: PSS stopIfIdle 05-07 05:10:50.581 1373 1373 I Exchange: PSS has no active accounts; stopping service. 05-07 05:10:50.589 1404 1404 W System : ClassLoader referenced unknown path: /system/app/Superuser/lib/x86 05-07 05:10:50.591 1373 1373 I Exchange: onDestroy 05-07 05:10:50.615 1404 1423 I Superuser: Result: 16 com.genymotion.superuser 05-07 05:10:50.618 579 892 I ActivityManager: Start proc 1424:com.android.messaging/u0a56 for broadcast com.android.messaging/.receiver.BootAndPackageReplacedReceiver 05-07 05:10:50.628 1198 1198 I CalendarProvider2: Sending notification intent: Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar } 05-07 05:10:50.628 1198 1198 W ContentResolver: Failed to get type for: content://com.android.calendar (Unknown URL content://com.android.calendar) 05-07 05:10:50.644 1424 1424 E libprocessgroup: failed to make and chown /acct/uid_10056: Read-only file system 05-07 05:10:50.644 1424 1424 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:10:50.665 1424 1424 W System : ClassLoader referenced unknown path: /system/app/messaging/lib/x86 05-07 05:10:50.720 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.728 579 592 D GpsLocationProvider: SIM MCC/MNC is available: 310270 05-07 05:10:50.728 579 592 D GpsLocationProvider: Reset GPS properties, previous size = 8 05-07 05:10:50.728 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com 05-07 05:10:50.728 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275 05-07 05:10:50.728 579 592 D GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org 05-07 05:10:50.728 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000 05-07 05:10:50.728 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_MODE=1 05-07 05:10:50.730 579 592 D GpsLocationProvider: GPS properties reloaded, size = 8 05-07 05:10:50.730 579 592 E GpsLocationProvider: no AGPS interface in set_agps_server 05-07 05:10:50.777 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.784 820 820 I Telephony: AccountEntry: updateVideoPauseSupport -- mcc/mnc for sub: {id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@3271e49 mcc 310 mnc 270} 05-07 05:10:50.786 579 892 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.790 1424 1449 I MessagingAppDataModel: Fixup: Send failed - 0 Download failed - 0 05-07 05:10:50.797 1424 1448 W MessagingApp: canonicalizeMccMnc: invalid mccmnc:null ,null 05-07 05:10:50.804 579 591 D MmsServiceBroker: getCarrierConfigValues() by com.android.messaging 05-07 05:10:50.804 579 591 W MmsServiceBroker: MmsService not connected. Try connecting... 05-07 05:10:50.804 579 579 I MmsServiceBroker: Connecting to MmsService 05-07 05:10:50.804 579 579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1285 com.android.server.MmsServiceBroker.tryConnecting:240 com.android.server.MmsServiceBroker.-wrap3:-1 com.android.server.MmsServiceBroker$1.handleMessage:82 android.os.Handler.dispatchMessage:102 05-07 05:10:50.805 579 892 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.806 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} 05-07 05:10:50.806 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.808 579 811 W Telecom : : No account found for the calling user 05-07 05:10:50.815 579 592 D GpsLocationProvider: received SIM related action: 05-07 05:10:50.815 579 592 D GpsLocationProvider: SIM MCC/MNC is available: 310270 05-07 05:10:50.815 579 592 D GpsLocationProvider: Reset GPS properties, previous size = 8 05-07 05:10:50.815 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_HOST=supl.google.com 05-07 05:10:50.815 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_PORT=7275 05-07 05:10:50.815 579 592 D GpsLocationProvider: GpsParamsResource: NTP_SERVER=north-america.pool.ntp.org 05-07 05:10:50.816 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_VER=0x20000 05-07 05:10:50.816 579 592 D GpsLocationProvider: GpsParamsResource: SUPL_MODE=1 05-07 05:10:50.816 579 592 D GpsLocationProvider: GPS properties reloaded, size = 8 05-07 05:10:50.816 579 592 E GpsLocationProvider: no AGPS interface in set_agps_server 05-07 05:10:50.816 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.822 820 820 I Telephony: AccountEntry: updateVideoPauseSupport -- mcc/mnc for sub: {id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@53db014 mcc 310 mnc 270} 05-07 05:10:50.826 579 590 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.833 579 590 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.834 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} 05-07 05:10:50.834 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.838 579 811 W Telecom : : No account found for the calling user 05-07 05:10:50.839 820 820 D CarrierConfigLoader: mHandler: 7 phoneId: 0 05-07 05:10:50.841 820 820 D CarrierConfigLoader: Loaded config from XML. package=com.android.carrierconfig phoneId=0 05-07 05:10:50.842 1424 1455 I MessagingAppDataModel: SyncMessagesAction: Starting batch for messages from 1525683819328 to 1525684250738 (message update limit = 80, message scan limit = 4000) 05-07 05:10:50.843 820 820 D CarrierServiceBindHelper: mHandler: 0 05-07 05:10:50.843 820 820 D CarrierServiceBindHelper: Binding to phoneId: 0 05-07 05:10:50.850 820 820 D CarrierServiceBindHelper: No carrier app for: 0 05-07 05:10:50.853 579 707 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.857 579 707 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.889 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.895 820 820 I Telephony: AccountEntry: updateVideoPauseSupport -- mcc/mnc for sub: {id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@da1bcd6 mcc 310 mnc 270} 05-07 05:10:50.897 579 590 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.906 579 590 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.907 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} 05-07 05:10:50.907 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.911 579 811 W Telecom : : No account found for the calling user 05-07 05:10:50.917 820 820 I Telephony: PstnIncomingCallNotifier: Unregistering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.921 1424 1456 I MessagingAppDataModel: SyncMessagesAction: All messages now in sync 05-07 05:10:50.923 820 820 I Telephony: AccountEntry: updateVideoPauseSupport -- mcc/mnc for sub: {id=1, iccId=89014103211118510720 simSlotIndex=0 displayName=Android carrierName=Android nameSource=0 iconTint=-16746133 dataRoaming=0 iconBitmap=android.graphics.Bitmap@58482b0 mcc 310 mnc 270} 05-07 05:10:50.927 579 884 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.931 579 884 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.932 820 820 I Telephony: AccountEntry: Registered phoneAccount: [[ ] PhoneAccount: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} Capabilities: 54 Schemes: tel voicemail ] with handle: ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0} 05-07 05:10:50.932 820 820 I Telephony: PstnIncomingCallNotifier: Registering: Handler (com.android.internal.telephony.gsm.GSMPhone) {bcdddff} 05-07 05:10:50.935 579 707 W Telecom : : No account found for the calling user 05-07 05:10:50.935 820 820 I NotificationMgr: updateMwi(): subId 1 update to false 05-07 05:10:50.937 820 820 W System : ClassLoader referenced unknown path: /system/priv-app/MmsService/lib/x86 05-07 05:10:50.940 820 820 D MmsService: onCreate 05-07 05:10:50.941 579 579 I MmsServiceBroker: MmsService connected 05-07 05:10:50.942 820 864 D MmsService: getCarrierConfigValues 05-07 05:10:50.942 820 864 I MmsService: mms config for sub 1: null 05-07 05:10:50.943 1424 1448 I MessagingApp: Carrier configs loaded: Bundle[{smsToMmsTextThreshold=-1, maxMessageTextSize=-1, recipientLimit=-1, maxImageHeight=480, maxMessageSize=307200, maxImageWidth=640, enabledMMS=true, enableMultipartSMS=true}] from resources+system for subId=1 05-07 05:10:50.943 1424 1450 W art : Long monitor contention event with owner method=boolean android.os.BinderProxy.transactNative(int, android.os.Parcel, android.os.Parcel, int) from Binder.java:4294967294 waiters=0 for 159ms 05-07 05:10:50.944 579 892 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.949 579 892 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.952 579 811 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.964 579 811 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.965 820 820 D CarrierConfigLoader: mHandler: 5 phoneId: 0 05-07 05:10:50.968 1424 1424 I MessagingApp: Carrier config changed. Reloading MMS config. 05-07 05:10:50.976 579 579 I Telecom : PhoneAccountRegistrar: SimCallManager queried, returning: null 05-07 05:10:50.977 579 884 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.981 579 884 I Telecom : : Sending phone-account intent as user 05-07 05:10:50.987 579 590 I Telecom : PhoneAccountRegistrar: [ComponentInfo{com.android.phone/com.android.services.telephony.TelephonyConnectionService}, [e2f7d48dd2b5ca523e7313cf4ba0f6ea830b6281], UserHandle{0}(icon: Icon(typ=BITMAP size=76x96) -> Icon(typ=BITMAP size=76x96))] 05-07 05:10:50.991 1424 1450 W MessagingApp: canonicalizeMccMnc: invalid mccmnc:null ,null 05-07 05:10:50.992 579 590 I Telecom : : Sending phone-account intent as user 05-07 05:10:51.003 820 1458 I MmsService: MmsConfigManager loads in background mcc/mnc: 310/270 05-07 05:10:51.015 579 591 D MmsServiceBroker: getCarrierConfigValues() by com.android.messaging 05-07 05:10:51.015 820 864 D MmsService: getCarrierConfigValues 05-07 05:10:51.015 820 864 I MmsService: mms config for sub 1: null 05-07 05:10:51.016 1424 1450 I MessagingApp: Carrier configs loaded: Bundle[{smsToMmsTextThreshold=-1, maxMessageTextSize=-1, recipientLimit=-1, maxImageHeight=480, maxMessageSize=307200, maxImageWidth=640, enabledMMS=true, enableMultipartSMS=true}] from resources+system for subId=1 05-07 05:10:51.028 1306 1306 D AlertReceiver: onReceive: a=android.intent.action.PROVIDER_CHANGED Intent { act=android.intent.action.PROVIDER_CHANGED dat=content://com.android.calendar flg=0x10 cmp=com.android.calendar/.alerts.AlertReceiver } 05-07 05:10:51.030 1306 1461 D AlertService: 0 Action = android.intent.action.PROVIDER_CHANGED 05-07 05:10:51.040 579 892 D CountryDetector: The first listener is added 05-07 05:10:51.047 1424 1452 W MessagingApp: canonicalizeMccMnc: invalid mccmnc:null ,null 05-07 05:10:51.057 579 892 D MmsServiceBroker: getCarrierConfigValues() by com.android.messaging 05-07 05:10:51.057 820 1067 D MmsService: getCarrierConfigValues 05-07 05:10:51.057 820 1067 I MmsService: mms config for sub 1: Bundle[{httpSocketTimeout=60000, aliasMinChars=2, smsToMmsTextThreshold=-1, enableSMSDeliveryReports=true, maxMessageTextSize=-1, supportMmsContentDisposition=true, enabledTransID=false, aliasEnabled=false, supportHttpCharsetHeader=false, allowAttachAudio=true, smsToMmsTextLengthThreshold=-1, recipientLimit=2147483647, uaProfTagName=x-wap-profile, aliasMaxChars=48, maxImageHeight=480, enableMMSDeliveryReports=false, userAgent=, config_cellBroadcastAppLinks=true, maxSubjectLength=40, httpParams=, enableGroupMms=true, emailGatewayNumber=, maxMessageSize=307200, naiSuffix=, enableMMSReadReports=false, maxImageWidth=640, uaProfUrl=, enabledMMS=true, enabledNotifyWapMMSC=false, sendMultipartSmsAsSeparateMessages=false, enableMultipartSMS=true}] 05-07 05:10:51.057 1424 1452 I MessagingApp: Carrier configs loaded: Bundle[{httpSocketTimeout=60000, aliasMinChars=2, smsToMmsTextThreshold=-1, enableSMSDeliveryReports=true, maxMessageTextSize=-1, supportMmsContentDisposition=true, enabledTransID=false, aliasEnabled=false, supportHttpCharsetHeader=false, allowAttachAudio=true, smsToMmsTextLengthThreshold=-1, recipientLimit=2147483647, uaProfTagName=x-wap-profile, aliasMaxChars=48, maxImageHeight=480, enableMMSDeliveryReports=false, userAgent=, config_cellBroadcastAppLinks=true, maxSubjectLength=40, httpParams=, enableGroupMms=true, emailGatewayNumber=, maxMessageSize=307200, naiSuffix=, enableMMSReadReports=false, maxImageWidth=640, uaProfUrl=, enabledMMS=true, enabledNotifyWapMMSC=false, sendMultipartSmsAsSeparateMessages=false, enableMultipartSMS=true}] from resources+system for subId=1 05-07 05:10:51.073 1424 1457 W MessagingApp: canonicalizeMccMnc: invalid mccmnc:null ,null 05-07 05:10:51.080 579 811 D MmsServiceBroker: getCarrierConfigValues() by com.android.messaging 05-07 05:10:51.080 820 864 D MmsService: getCarrierConfigValues 05-07 05:10:51.080 820 864 I MmsService: mms config for sub 1: Bundle[{httpSocketTimeout=60000, aliasMinChars=2, smsToMmsTextThreshold=-1, enableSMSDeliveryReports=true, maxMessageTextSize=-1, supportMmsContentDisposition=true, enabledTransID=false, aliasEnabled=false, supportHttpCharsetHeader=false, allowAttachAudio=true, smsToMmsTextLengthThreshold=-1, recipientLimit=2147483647, uaProfTagName=x-wap-profile, aliasMaxChars=48, maxImageHeight=480, enableMMSDeliveryReports=false, userAgent=, config_cellBroadcastAppLinks=true, maxSubjectLength=40, httpParams=, enableGroupMms=true, emailGatewayNumber=, maxMessageSize=307200, naiSuffix=, enableMMSReadReports=false, maxImageWidth=640, uaProfUrl=, enabledMMS=true, enabledNotifyWapMMSC=false, sendMultipartSmsAsSeparateMessages=false, enableMultipartSMS=true}] 05-07 05:10:51.081 1424 1457 I MessagingApp: Carrier configs loaded: Bundle[{httpSocketTimeout=60000, aliasMinChars=2, smsToMmsTextThreshold=-1, enableSMSDeliveryReports=true, maxMessageTextSize=-1, supportMmsContentDisposition=true, enabledTransID=false, aliasEnabled=false, supportHttpCharsetHeader=false, allowAttachAudio=true, smsToMmsTextLengthThreshold=-1, recipientLimit=2147483647, uaProfTagName=x-wap-profile, aliasMaxChars=48, maxImageHeight=480, enableMMSDeliveryReports=false, userAgent=, config_cellBroadcastAppLinks=true, maxSubjectLength=40, httpParams=, enableGroupMms=true, emailGatewayNumber=, maxMessageSize=307200, naiSuffix=, enableMMSReadReports=false, maxImageWidth=640, uaProfUrl=, enabledMMS=true, enabledNotifyWapMMSC=false, sendMultipartSmsAsSeparateMessages=false, enableMultipartSMS=true}] from resources+system for subId=1 05-07 05:10:52.177 579 598 I art : Starting a blocking GC Explicit 05-07 05:10:52.186 579 598 I art : Explicit concurrent mark sweep GC freed 5271(487KB) AllocSpace objects, 3(60KB) LOS objects, 33% free, 5MB/8MB, paused 194us total 8.268ms 05-07 05:10:56.032 1306 1461 I GlobalDismissManager: no sender configured 05-07 05:10:56.032 1306 1461 D AlertService: Beginning updateAlertNotification 05-07 05:10:56.042 1306 1461 D AlertService: No fired or scheduled alerts 05-07 05:10:56.047 1306 1461 D AlertService: Scheduling next alarm with AlarmScheduler. sEventReminderReceived: null 05-07 05:10:56.049 1306 1461 D AlarmScheduler: No events found starting within 1 week. 05-07 05:11:02.133 579 624 D WifiStateMachine: shouldSwitchNetwork txSuccessRate=0.00 rxSuccessRate=0.00 delta 1000 -> 1000 05-07 05:11:02.133 579 624 D WifiStateMachine: CMD_AUTO_CONNECT sup state ScanState my state DisconnectedState nid=0 roam=3 05-07 05:11:02.133 579 624 E WifiConfigStore: saveWifiConfigBSSID Setting BSSID for "WiredSSID"NONE to any 05-07 05:11:02.136 579 624 D WifiStateMachine: CMD_AUTO_CONNECT will save config -> "WiredSSID" nid=0 05-07 05:11:02.145 579 624 D WifiStateMachine: CMD_AUTO_CONNECT did save config -> nid=0 05-07 05:11:02.145 810 810 I wpa_supplicant: eth1: Trying to associate with SSID 'WiredSSID' 05-07 05:11:02.145 810 810 I wpa_supplicant: eth1: Associated with 01:80:c2:00:00:03 05-07 05:11:02.146 810 810 I wpa_supplicant: eth1: CTRL-EVENT-CONNECTED - Connection to 01:80:c2:00:00:03 completed [id=0 id_str=] 05-07 05:11:02.149 579 624 D ConnectivityService: registerNetworkAgent NetworkAgentInfo{ ni{[type: WIFI[], state: CONNECTING/CONNECTING, reason: (unspecified), extra: "WiredSSID", roaming: false, failover: false, isAvailable: true]} network{100} lp{{InterfaceName: eth1 LinkAddresses: [] Routes: [] DnsAddresses: [] Domains: null MTU: 0 TcpBufferSizes: 524288,1048576,2097152,262144,524288,1048576}} nc{[ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps]} Score{20} everValidated{false} lastValidated{false} created{false} lingering{false} explicitlySelected{false} acceptUnvalidated{false} everCaptivePortalDetected{false} lastCaptivePortalDetected{false} } 05-07 05:11:02.149 579 624 E WifiConfigStore: saveWifiConfigBSSID Setting BSSID for "WiredSSID"NONE to any 05-07 05:11:02.150 579 626 D ConnectivityService: NetworkAgentInfo [WIFI () - 100] EVENT_NETWORK_INFO_CHANGED, going from null to CONNECTING 05-07 05:11:02.153 579 624 E WifiConfigStore: saveWifiConfigBSSID Setting BSSID for "WiredSSID"NONE to any 05-07 05:11:02.155 239 571 D CommandListener: Setting iface cfg 05-07 05:11:02.157 579 624 D WifiStateMachine: Start Dhcp Watchdog 1 05-07 05:11:02.161 579 626 D ConnectivityService: updateNetworkScore for NetworkAgentInfo [WIFI () - 100] to 60 05-07 05:11:02.162 579 624 D IpReachabilityMonitor: watch: iface{eth1/5}, v{1}, ntable=[] 05-07 05:11:02.169 579 624 E native : do suspend false 05-07 05:11:02.169 579 1474 D DhcpClient: Receive thread started 05-07 05:11:02.170 579 1473 D DhcpClient: Broadcasting DHCPDISCOVER 05-07 05:11:02.172 579 1474 D DhcpClient: Received packet: 08:00:27:2d:82:f9 OFFER, ip /10.0.3.15, mask /255.255.255.0, DNS servers: /10.99.0.10 /10.99.0.11 /168.95.1.1 , gateway /10.0.3.2 lease time 86400, domain ntue.edu.tw 05-07 05:11:02.172 579 1473 D DhcpClient: Got pending lease: IP address 10.0.3.15/24 Gateway 10.0.3.2 DNS servers: [ 10.99.0.1010.99.0.11 168.95.1.1 ] Domainsntue.edu.tw DHCP server /10.0.3.2 Vendor info null lease 86400 seconds 05-07 05:11:02.172 579 1473 D DhcpClient: Broadcasting DHCPREQUEST ciaddr=0.0.0.0 request=10.0.3.15 to=10.0.3.2 05-07 05:11:02.174 579 1474 D DhcpClient: Received packet: 08:00:27:2d:82:f9 ACK: your new IP /10.0.3.15, netmask /255.255.255.0, gateway /10.0.3.2 DNS servers: /10.99.0.10 /10.99.0.11 /168.95.1.1 , lease time 86400 05-07 05:11:02.174 579 1473 D DhcpClient: Confirmed lease: IP address 10.0.3.15/24 Gateway 10.0.3.2 DNS servers: [ 10.99.0.10 10.99.0.11 168.95.1.1 ] Domainsntue.edu.tw DHCP server /10.0.3.2 Vendor info null lease 86400 seconds 05-07 05:11:02.175 239 571 D CommandListener: Setting iface cfg 05-07 05:11:02.175 239 564 E Netd : ifc_reset_connections failed on iface eth1 for address 10.0.3.15/8 (Unknown error -1) 05-07 05:11:02.175 579 1473 D DhcpClient: Configured IP address 10.0.3.15/24 05-07 05:11:02.175 579 1473 D DhcpClient: Scheduling renewal in 43199s 05-07 05:11:02.176 579 624 D IpReachabilityMonitor: watch: iface{eth1/5}, v{2}, ntable=[] 05-07 05:11:02.177 579 624 D IpReachabilityMonitor: watch: iface{eth1/5}, v{3}, ntable=[10.0.3.2/NUD_NONE] 05-07 05:11:02.178 579 624 D WifiConfigStore: No blacklist allowed without epno enabled 05-07 05:11:02.178 579 626 D ConnectivityService: NetworkAgentInfo [WIFI () - 100] EVENT_NETWORK_INFO_CHANGED, going from CONNECTING to CONNECTED 05-07 05:11:02.178 579 624 E WifiStateMachine: Did not find remoteAddress {10.0.3.2} in /proc/net/arp 05-07 05:11:02.179 579 626 D ConnectivityService: Adding iface eth1 to network 100 05-07 05:11:02.179 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=26179, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_REACHABLE} 05-07 05:11:02.185 579 626 E ConnectivityService: Unexpected mtu value: 0, eth1 05-07 05:11:02.185 579 626 D ConnectivityService: Adding Route [fe80::/64 -> :: eth1] to network 100 05-07 05:11:02.186 579 626 D ConnectivityService: Adding Route [10.0.3.0/24 -> 0.0.0.0 eth1] to network 100 05-07 05:11:02.186 579 626 D ConnectivityService: Adding Route [0.0.0.0/0 -> 10.0.3.2 eth1] to network 100 05-07 05:11:02.186 579 626 D ConnectivityService: Setting Dns servers for network 100 to [/10.99.0.10, /10.99.0.11, /168.95.1.1] 05-07 05:11:02.191 579 626 D ConnectivityService: notifyType IP_CHANGED for NetworkAgentInfo [WIFI () - 100] 05-07 05:11:02.192 579 626 D ConnectivityService: scheduleUnvalidatedPrompt 100 05-07 05:11:02.192 579 626 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 100] 05-07 05:11:02.192 579 626 D ConnectivityService: accepting network in place of null 05-07 05:11:02.193 579 626 D ConnectivityService: Switching to new default network: NetworkAgentInfo{ ni{[type: WIFI[], state: CONNECTED/CONNECTED, reason: (unspecified), extra: "WiredSSID", roaming: false, failover: false, isAvailable: true]} network{100} lp{{InterfaceName: eth1 LinkAddresses: [fe80::a00:27ff:fe2d:82f9/64,10.0.3.15/24,] Routes: [fe80::/64 -> :: eth1,10.0.3.0/24 -> 0.0.0.0 eth1,0.0.0.0/0 -> 10.0.3.2 eth1,] DnsAddresses: [10.99.0.10,10.99.0.11,168.95.1.1,] Domains: ntue.edu.tw MTU: 0 TcpBufferSizes:524288,1048576,2097152,262144,524288,1048576}} nc{[ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps]} Score{20} everValidated{false} lastValidated{false} created{true} lingering{false} explicitlySelected{false} acceptUnvalidated{false} everCaptivePortalDetected{false} lastCaptivePortalDetected{false} } 05-07 05:11:02.214 239 571 V IdletimerController: runCmd(/system/bin/ip6tables -w -t raw -A idletimer_raw_PREROUTING -i eth1 -jIDLETIMER --timeout 15 --label 1 --send_nl_msg 1) res_ipv4=0, res_ipv6=0 05-07 05:11:02.226 239 571 V IdletimerController: runCmd(/system/bin/ip6tables -w -t mangle -A idletimer_mangle_POSTROUTING -o eth1 -j IDLETIMER --timeout 15 --label 1 --send_nl_msg 1) res_ipv4=0, res_ipv6=0 05-07 05:11:02.230 579 626 D ConnectivityService: Setting tx/rx TCP buffers to 524288,1048576,2097152,262144,524288,1048576 05-07 05:11:02.231 579 626 D CSLegacyTypeTracker: Sending CONNECTED broadcast for type 1 NetworkAgentInfo [WIFI () - 100] isDefaultNetwork=true 05-07 05:11:02.231 579 626 D ConnectivityService: sendStickyBroadcast: action=android.net.conn.CONNECTIVITY_CHANGE 05-07 05:11:02.231 668 1048 D ConnectivityManager.CallbackHandler: CM callback handler got msg 524290 05-07 05:11:02.232 579 626 D ConnectivityService: notifyType PRECHECK for NetworkAgentInfo [WIFI () - 100] 05-07 05:11:02.233 668 1048 D ConnectivityManager.CallbackHandler: CM callback handler got msg 524289 05-07 05:11:02.233 579 597 D Tethering: MasterInitialState.processMessage what=3 05-07 05:11:02.357 579 1471 D NetworkMonitor/NetworkAgentInfo [WIFI () - 100]: Checking http://connectivitycheck.gstatic.com/generate_204 on "WiredSSID", connectivitycheck.gstatic.com=216.58.200.227,2404:6800:4008:802::2003 05-07 05:11:02.374 579 795 D AlarmManagerService: Setting time of day to sec=1525684265 05-07 05:11:05.605 579 795 W AlarmManagerService: Unable to set rtc to 1525684265: No such device 05-07 05:11:05.609 1110 1110 V AlarmClock: AlarmInitReceiver android.intent.action.TIME_SET 05-07 05:11:05.618 579 1484 D GpsLocationProvider: NTP server returned: 1525684265612 (Mon May 07 05:11:05 EDT 2018) reference: 26387 certainty: 16 system time offset: -6 05-07 05:11:05.618 579 1484 D gps_vbox86: gps_inject_time not implemented 05-07 05:11:05.624 1110 1353 V AlarmClock: AlarmInitReceiver finished 05-07 05:11:05.682 579 1471 D NetworkMonitor/NetworkAgentInfo [WIFI () - 100]: isCaptivePortal: ret=204 headers={null=[HTTP/1.1 204 No Content], Content-Length=[0], Date=[Mon, 07 May 2018 09:11:05 GMT], X-Android-Received-Millis=[1525684265681], X-Android-Response-Source=[NETWORK 204], X-Android-Selected-Protocol=[http/1.1], X-Android-Sent-Millis=[1525684262373]} 05-07 05:11:05.682 579 626 D ConnectivityService: setProvNotificationVisibleIntent null visible=false networkType=MOBILE extraInfo=null highPriority=false 05-07 05:11:05.682 579 626 D ConnectivityService: NetworkAgentInfo [WIFI () - 100] validation passed 05-07 05:11:05.682 579 626 D ConnectivityService: rematching NetworkAgentInfo [WIFI () - 100] 05-07 05:11:05.682 579 626 D ConnectivityService: notifyType CAP_CHANGED for NetworkAgentInfo [WIFI () - 100] 05-07 05:11:05.691 579 626 D ConnectivityService: sendStickyBroadcast: action=android.net.conn.INET_CONDITION_ACTION 05-07 05:11:05.693 668 1048 D ConnectivityManager.CallbackHandler: CM callback handler got msg 524294 05-07 05:11:08.240 579 593 I ActivityManager: Waited long enough for: ServiceRecord{1e4192d u0 com.android.calendar/.alerts.InitAlarmsService} 05-07 05:11:13.431 579 626 D ConnectivityService: handlePromptUnvalidated 100 05-07 05:11:19.359 579 624 D WifiStateMachine: L2Connected CMD_START_SCAN source -2 4, 5 -> obsolete 05-07 05:11:19.443 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=40212, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_STALE} 05-07 05:11:23.243 1306 1349 D InitAlarmsService: Clearing and rescheduling alarms. 05-07 05:11:23.248 579 590 I ActivityManager: Killing 676:com.android.externalstorage/u0a7 (adj 15): empty #17 05-07 05:11:23.249 579 590 W libprocessgroup: failed to open /acct/uid_10007/pid_676/cgroup.procs: No such file or directory 05-07 05:11:43.768 579 892 I ActivityManager: START u0 {flg=0x10000000 cmp=com.android.deskclock/.DeskClock bnds=[400,400][1040,1224]} from uid 10030 on display 0 05-07 05:11:43.771 579 631 W AudioTrack: AUDIO_OUTPUT_FLAG_FAST denied by client; transfer 4, track 48000 Hz, output 44100 Hz 05-07 05:11:43.775 579 592 I UsageStatsService: User[0] Flushing usage stats to disk 05-07 05:11:43.791 579 592 I UsageStatsDatabase: Time changed by +3s231ms. files deleted: 0 files moved: 7 05-07 05:11:43.867 579 592 I UsageStatsService: User[0] Rollover scheduled @ 2018-05-07 20:00:00(1525737600000) 05-07 05:11:43.934 243 639 D AudioFlinger: mixer(0xf1dc0000) throttle end: throttle time(11) 05-07 05:11:43.961 1110 1496 D OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true 05-07 05:11:43.963 1110 1110 D : HostConnection::get() New Host Connection established 0xe905e300, tid 1110 05-07 05:11:44.393 1110 1496 D libEGL : loaded /system/lib/egl/libEGL_emulation.so 05-07 05:11:44.393 1110 1496 D libEGL : loaded /system/lib/egl/libGLESv1_CM_emulation.so 05-07 05:11:44.398 1110 1496 D libEGL : loaded /system/lib/egl/libGLESv2_emulation.so 05-07 05:11:44.401 1110 1496 D : HostConnection::get() New Host Connection established 0xee9d2810, tid 1496 05-07 05:11:44.758 1110 1496 I OpenGLRenderer: Initialized EGL, version 1.4 05-07 05:11:44.999 1110 1496 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:11:44.999 1110 1496 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xee9d3960, error=EGL_SUCCESS 05-07 05:11:45.118 1110 1110 V TimerReceiver: Received intent Intent { act=notif_in_use_cancel flg=0x10 cmp=com.android.deskclock/.timer.TimerReceiver } 05-07 05:11:45.125 1110 1110 I Choreographer: Skipped 65 frames! The application may be doing too much work on its main thread. 05-07 05:11:46.295 579 598 I Choreographer: Skipped 139 frames! The application may be doing too much work on its main thread. 05-07 05:11:46.324 849 1032 E Surface : getSlotFromBufferLocked: unknown buffer: 0xf2bb5480 05-07 05:11:46.600 1110 1110 I Choreographer: Skipped 86 frames! The application may be doing too much work on its main thread. 05-07 05:11:46.685 579 598 I ActivityManager: Displayed com.android.deskclock/.DeskClock: +2s909ms 05-07 05:11:49.602 579 892 I MediaFocusControl: AudioFocus abandonAudioFocus() from android.media.AudioManager@cc399com.android.music.MediaPlaybackService$3@a5e165e 05-07 05:11:49.611 579 593 I ActivityManager: Start proc 1503:com.android.musicfx/u0a10 for broadcast com.android.musicfx/.ControlPanelReceiver 05-07 05:11:49.640 1503 1503 E libprocessgroup: failed to make and chown /acct/uid_10010: Read-only file system 05-07 05:11:49.640 1503 1503 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:11:49.656 1503 1503 W System : ClassLoader referenced unknown path: /system/priv-app/MusicFX/lib/x86 05-07 05:11:49.657 1503 1503 V MusicFXControlPanelReceiver: onReceive 05-07 05:11:49.657 1503 1503 V MusicFXControlPanelReceiver: Action: android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION 05-07 05:11:49.657 1503 1503 V MusicFXControlPanelReceiver: Package name: com.android.music 05-07 05:11:49.657 1503 1503 V MusicFXControlPanelReceiver: Audio session: 8 05-07 05:11:49.657 1503 1503 V MusicFXControlPanelEffect: closeSession(android.app.ReceiverRestrictedContext@559fc86, com.android.music, 8) 05-07 05:11:49.658 579 811 I ActivityManager: Killing 1022:com.android.music/u0a44 (adj 15): empty #17 05-07 05:11:49.658 579 811 W libprocessgroup: failed to open /acct/uid_10044/pid_1022/cgroup.procs: No such file or directory 05-07 05:12:01.160 1519 1519 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<< 05-07 05:12:01.161 1519 1519 D AndroidRuntime: CheckJNI is OFF 05-07 05:12:01.173 1519 1519 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat 05-07 05:12:01.185 1519 1519 E memtrack: Couldn't load memtrack module (No such file or directory) 05-07 05:12:01.185 1519 1519 E android.os.Debug: failed to load memtrack module: -2 05-07 05:12:01.186 1519 1519 I Radio-JNI: register_android_hardware_Radio DONE 05-07 05:12:01.191 1519 1519 D AndroidRuntime: Calling main entry com.android.commands.am.Am 05-07 05:12:01.194 1519 1519 D AndroidRuntime: Shutting down VM 05-07 05:12:01.738 1531 1531 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<< 05-07 05:12:01.739 1531 1531 D AndroidRuntime: CheckJNI is OFF 05-07 05:12:01.748 1531 1531 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat 05-07 05:12:01.763 1531 1531 E memtrack: Couldn't load memtrack module (No such file or directory) 05-07 05:12:01.763 1531 1531 E android.os.Debug: failed to load memtrack module: -2 05-07 05:12:01.764 1531 1531 I Radio-JNI: register_android_hardware_Radio DONE 05-07 05:12:01.770 1531 1531 D AndroidRuntime: Calling main entry com.android.commands.pm.Pm 05-07 05:12:01.783 579 602 I ActivityManager: Start proc 1539:com.android.defcontainer/u0a4 for service com.android.defcontainer/.DefaultContainerService 05-07 05:12:01.816 1539 1539 E libprocessgroup: failed to make and chown /acct/uid_10004: Read-only file system 05-07 05:12:01.816 1539 1539 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:12:01.840 1539 1550 D DefContainer: Copying /data/local/tmp/app-debug.apk to base.apk 05-07 05:12:02.313 579 602 I PackageManager.DexOptimizer: Running dexopt (dex2oat) on: /data/app/vmdl296980954.tmp/base.apk pkg=com.dougo isa=x86 vmSafeMode=false debuggable=true oatDir = /data/app/vmdl296980954.tmp/oat 05-07 05:12:02.348 1553 1553 W dex2oat : Unexpected CPU variant for X86 using defaults: x86 05-07 05:12:02.349 1553 1553 I dex2oat : /system/bin/dex2oat --debuggable 05-07 05:12:02.349 1553 1553 E cutils-trace: Error opening trace file: Permission denied (13) 05-07 05:12:02.772 1553 1553 W dex2oat : Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView 05-07 05:12:02.846 1553 1555 W dex2oat : Before Android 4.1, method boolean com.facebook.share.widget.ShareButtonBase.canShare() would have incorrectly overridden the package-private method in android.widget.TextView 05-07 05:12:02.858 1553 1555 W dex2oat : Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable 05-07 05:12:06.485 1553 1553 I dex2oat : dex2oat took 4.136s (threads: 4) arena alloc=1134KB java alloc=14MB native alloc=77MB free=4MB 05-07 05:12:06.705 579 593 I ActivityManager: Force stopping com.dougo appid=10060 user=-1: uninstall pkg 05-07 05:12:06.715 579 602 I PackageManager: Package com.dougo codePath changed from /data/app/com.dougo-2 to /data/app/com.dougo-1; Retaining data and using new 05-07 05:12:06.715 579 602 W PackageManager: Code path for com.dougo changing from /data/app/com.dougo-2 to /data/app/com.dougo-1 05-07 05:12:06.715 579 602 W PackageManager: Resource path for com.dougo changing from /data/app/com.dougo-2 to /data/app/com.dougo-1 05-07 05:12:06.715 579 593 I ActivityManager: Force stopping com.dougo appid=10060 user=-1: replace pkg 05-07 05:12:06.725 579 602 W PackageManager: Unknown permission com.google.android.providers.gsf.permission.READ_GSERVICES in package com.dougo 05-07 05:12:06.725 579 602 W PackageManager: Unknown permission com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE in package com.dougo 05-07 05:12:06.725 579 602 W PackageManager: Unknown permission com.google.android.c2dm.permission.RECEIVE in package com.dougo 05-07 05:12:06.735 579 602 W Settings: Setting install_non_market_apps has moved from android.provider.Settings.Global to android.provider.Settings.Secure, returning read-only value. 05-07 05:12:06.735 579 602 I art : Starting a blocking GC Explicit 05-07 05:12:06.745 579 602 I art : Explicit concurrent mark sweep GC freed 21252(1229KB) AllocSpace objects, 7(140KB) LOS objects, 33% free, 5MB/8MB, paused 153us total 10.214ms 05-07 05:12:06.749 579 602 W PackageManager: Couldn't remove dex file for package: at location /data/app/com.dougo-2/base.apk,retcode=-1 05-07 05:12:06.749 579 602 I ActivityManager: Force stopping com.dougo appid=10060 user=0: pkg removed 05-07 05:12:06.750 1531 1531 I art : System.exit called, status: 0 05-07 05:12:06.750 1531 1531 I AndroidRuntime: VM exiting with result code 0. 05-07 05:12:06.751 579 579 D JobSchedulerService: Receieved: android.intent.action.PACKAGE_REMOVED 05-07 05:12:06.753 579 616 I InputReader: Reconfiguring input devices. changes=0x00000010 05-07 05:12:06.755 579 616 I InputReader: Reconfiguring input devices. changes=0x00000010 05-07 05:12:06.762 579 616 I InputReader: Reconfiguring input devices. changes=0x00000010 05-07 05:12:06.766 579 892 I ActivityManager: Start proc 1560:com.android.gallery3d/u0a37 for broadcast com.android.gallery3d/.app.PackagesMonitor 05-07 05:12:06.768 579 579 V WebViewFactory: webViewPackageName: com.android.webview 05-07 05:12:06.772 579 592 W VoiceInteractionManagerService: no available voice recognition services found for user 0 05-07 05:12:06.779 820 820 D CarrierServiceBindHelper: Receive action: android.intent.action.PACKAGE_REMOVED 05-07 05:12:06.794 1560 1560 E libprocessgroup: failed to make and chown /acct/uid_10037: Read-only file system 05-07 05:12:06.795 1560 1560 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:12:06.801 820 820 D CarrierServiceBindHelper: Receive action: android.intent.action.PACKAGE_ADDED 05-07 05:12:06.801 820 820 D CarrierServiceBindHelper: Receive action: android.intent.action.PACKAGE_REPLACED 05-07 05:12:06.802 820 820 D CarrierServiceBindHelper: mHandler: 3 05-07 05:12:06.802 820 820 D CarrierServiceBindHelper: mHandler: 3 05-07 05:12:06.802 820 820 D CarrierServiceBindHelper: mHandler: 3 05-07 05:12:06.802 820 820 D CarrierConfigLoader: mHandler: 9 phoneId: 0 05-07 05:12:06.850 1163 1163 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1221 android.content.ContextWrapper.startService:581 android.content.ContextWrapper.startService:581 com.android.keychain.KeyChainBroadcastReceiver.onReceive:12 android.app.ActivityThread.handleReceiver:2725 05-07 05:12:06.873 579 884 I ActivityManager: Start proc 1583:com.svox.pico/u0a50 for broadcast com.svox.pico/.VoiceDataInstallerReceiver 05-07 05:12:06.877 579 892 I ActivityManager: Killing 1171:com.android.dialer/u0a5 (adj 15): empty #17 05-07 05:12:06.877 579 892 W libprocessgroup: failed to open /acct/uid_10005/pid_1171/cgroup.procs: No such file or directory 05-07 05:12:06.894 1583 1583 E libprocessgroup: failed to make and chown /acct/uid_10050: Read-only file system 05-07 05:12:06.895 1583 1583 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:12:06.915 579 884 I ActivityManager: Killing 1214:com.android.managedprovisioning/u0a9 (adj 15): empty #17 05-07 05:12:06.915 579 884 W libprocessgroup: failed to open /acct/uid_10009/pid_1214/cgroup.procs: No such file or directory 05-07 05:12:07.590 1599 1599 D AndroidRuntime: >>>>>> START com.android.internal.os.RuntimeInit uid 0 <<<<<< 05-07 05:12:07.591 1599 1599 D AndroidRuntime: CheckJNI is OFF 05-07 05:12:07.602 1599 1599 D ICU : No timezone override file found: /data/misc/zoneinfo/current/icu/icu_tzdata.dat 05-07 05:12:07.613 1599 1599 E memtrack: Couldn't load memtrack module (No such file or directory) 05-07 05:12:07.613 1599 1599 E android.os.Debug: failed to load memtrack module: -2 05-07 05:12:07.614 1599 1599 I Radio-JNI: register_android_hardware_Radio DONE 05-07 05:12:07.620 1599 1599 D AndroidRuntime: Calling main entry com.android.commands.am.Am 05-07 05:12:07.622 579 892 I ActivityManager: START u0 {flg=0x10000000 cmp=com.dougo/.MainActivity} from uid 0 on display 0 05-07 05:12:07.630 579 892 D : HostConnection::get() New Host Connection established 0xdc832b60, tid 892 05-07 05:12:07.645 326 326 E EGL_emulation: tid 326: eglCreateSyncKHR(1215): error 0x3004 (EGL_BAD_ATTRIBUTE) 05-07 05:12:07.717 1599 1599 D AndroidRuntime: Shutting down VM 05-07 05:12:07.733 579 707 I ActivityManager: Start proc 1609:com.dougo/u0a60 for activity com.dougo/.MainActivity 05-07 05:12:07.734 1110 1110 V TimerReceiver: Received intent Intent { act=notif_in_use_show flg=0x10 cmp=com.android.deskclock/.timer.TimerReceiver } 05-07 05:12:07.761 1609 1609 E libprocessgroup: failed to make and chown /acct/uid_10060: Read-only file system 05-07 05:12:07.761 1609 1609 W Zygote : createProcessGroup failed, kernel missing CONFIG_CGROUP_CPUACCT? 05-07 05:12:07.761 1609 1609 I art : Late-enabling -Xcheck:jni 05-07 05:12:07.911 1609 1609 I CrashlyticsCore: Initializing Crashlytics 2.6.1.23 05-07 05:12:07.919 1609 1629 W GooglePlayServicesUtil: Google Play Store is missing. 05-07 05:12:07.920 1609 1609 E ActivityThread: Failed to find provider info for com.google.android.gms.phenotype 05-07 05:12:07.935 1609 1609 I CrashlyticsInitProvider: CrashlyticsInitProvider initialization successful 05-07 05:12:07.945 1609 1633 I FA : App measurement is starting up, version: 12451 05-07 05:12:07.945 1609 1633 I FA : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE 05-07 05:12:07.945 1609 1633 I FA : To enable faster debug mode event logging run: 05-07 05:12:07.945 1609 1633 I FA : adb shell setprop debug.firebase.analytics.app com.dougo 05-07 05:12:07.955 1609 1640 E FirebaseInstanceId: Google Play services missing or without correct permission. 05-07 05:12:07.957 1609 1609 D FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization. 05-07 05:12:07.957 1609 1609 I FirebaseInitProvider: FirebaseApp initialization successful 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: Failed to auto initialize the Facebook SDK 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: A valid Facebook app id must be set in the AndroidManifest.xml or set by calling FacebookSdk.setApplicationId before initializing the sdk. 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at com.facebook.FacebookSdk.sdkInitialize(FacebookSdk.java:275) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at com.facebook.FacebookSdk.sdkInitialize(FacebookSdk.java:231) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at com.facebook.internal.FacebookInitProvider.onCreate(FacebookInitProvider.java:20) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.content.ContentProvider.attachInfo(ContentProvider.java:1748) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.content.ContentProvider.attachInfo(ContentProvider.java:1723) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread.installProvider(ActivityThread.java:5153) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread.installContentProviders(ActivityThread.java:4748) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4688) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread.-wrap1(ActivityThread.java) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.os.Handler.dispatchMessage(Handler.java:102) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.os.Looper.loop(Looper.java:148) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at android.app.ActivityThread.main(ActivityThread.java:5417) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at java.lang.reflect.Method.invoke(Native Method) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 05-07 05:12:07.960 1609 1609 I FacebookInitProvider: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 05-07 05:12:07.964 1609 1609 V fb-UnpackingSoSource: locked dso store /data/user/0/com.dougo/lib-main 05-07 05:12:07.965 1609 1609 V fb-UnpackingSoSource: deps mismatch on deps store: regenerating 05-07 05:12:07.965 1609 1609 V fb-UnpackingSoSource: so store dirty: regenerating 05-07 05:12:07.985 1609 1640 E FirebaseInstanceId: Google Play services missing or without correct permission. 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libfb.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libfolly_json.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libglog.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libglog_init.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libgnustl_shared.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libicu_common.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libimagepipeline.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libjsc.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libprivatedata.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libreactnativejni.so: deferring to libdir 05-07 05:12:07.986 1609 1609 D ApkSoSource: not allowing consideration of lib/x86/libyoga.so: deferring to libdir 05-07 05:12:07.986 1609 1609 V fb-UnpackingSoSource: regenerating DSO store com.facebook.soloader.ApkSoSource 05-07 05:12:07.986 1609 1609 V fb-UnpackingSoSource: starting syncer worker 05-07 05:12:08.000 1609 1633 W GooglePlayServicesUtil: Google Play Store is missing. 05-07 05:12:08.000 1609 1633 W FA : Service invalid 05-07 05:12:08.003 1609 1609 V fb-UnpackingSoSource: releasing dso store lock for /data/user/0/com.dougo/lib-main (from syncer thread) 05-07 05:12:08.003 1609 1609 V fb-UnpackingSoSource: not releasing dso store lock for /data/user/0/com.dougo/lib-main (syncer thread started) 05-07 05:12:08.004 1609 1609 D AndroidRuntime: Shutting down VM 05-07 05:12:08.008 1609 1640 E FirebaseInstanceId: Google Play services missing or without correct permission. 05-07 05:12:08.952 1110 1496 E Surface : getSlotFromBufferLocked: unknown buffer: 0xf2bb9310 05-07 05:12:09.926 1609 1622 E Fabric : Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/com.dougo/settings 05-07 05:12:09.928 1609 1625 E Answers : Failed to retrieve settings 05-07 05:12:09.929 1609 1633 I FA : Tag Manager is not found and thus will not be used 05-07 05:12:09.933 1609 1634 W CrashlyticsCore: Cannot send reports. Settings are unavailable. --------- beginning of crash 05-07 05:12:09.933 1609 1609 E AndroidRuntime: FATAL EXCEPTION: main 05-07 05:12:09.933 1609 1609 E AndroidRuntime: Process: com.dougo, PID: 1609 05-07 05:12:09.933 1609 1609 E AndroidRuntime: java.lang.RuntimeException: Unable to create application com.dougo.MainApplication: The Facebook sdk must be initialized before calling activateApp 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4710) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.ActivityThread.-wrap1(ActivityThread.java) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:102) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.os.Looper.loop(Looper.java:148) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:5417) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: Caused by: The Facebook sdk must be initialized before calling activateApp 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at com.facebook.appevents.AppEventsLogger.activateApp(AppEventsLogger.java:225) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at com.facebook.appevents.AppEventsLogger.activateApp(AppEventsLogger.java:207) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at com.dougo.MainApplication.onCreate(MainApplication.java:58) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1013) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4707) 05-07 05:12:09.933 1609 1609 E AndroidRuntime: ... 8 more 05-07 05:12:09.934 579 892 W ActivityManager: Force finishing activity com.dougo/.MainActivity 05-07 05:12:09.939 1609 1640 E FirebaseInstanceId: Google Play services missing or without correct permission. 05-07 05:12:10.237 579 892 I WindowManager: Screenshot max retries 4 of Token{1c7f74d ActivityRecord{d04e6e4 u0 com.dougo/.MainActivity t11 f}} appWin=Window{eb42e7c u0 Starting com.dougo} drawState=4 05-07 05:12:10.238 579 892 W ActivityManager: Force finishing activity com.android.deskclock/.DeskClock 05-07 05:12:10.239 579 892 I ActivityManager: Killing 1264:com.android.onetimeinitializer/u0a11 (adj 15): empty #17 05-07 05:12:10.240 579 892 W libprocessgroup: failed to open /acct/uid_10011/pid_1264/cgroup.procs: No such file or directory 05-07 05:12:10.240 579 884 W art : Long monitor contention event with owner method=void com.android.server.am.ActivityManagerService.crashApplication(com.android.server.am.ProcessRecord, android.app.ApplicationErrorReport$CrashInfo) from ActivityManagerService.java:12568 waiters=0 for 306ms 05-07 05:12:10.246 579 1643 D OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true 05-07 05:12:10.248 1609 1626 W CrashlyticsCore: Received null settings, skipping report submission! 05-07 05:12:10.266 579 1643 I OpenGLRenderer: Initialized EGL, version 1.4 05-07 05:12:10.266 579 1643 D : HostConnection::get() New Host Connection established 0xee9d2e30, tid 1643 05-07 05:12:10.316 579 1643 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:12:10.316 579 1643 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xdacd5520, error=EGL_SUCCESS 05-07 05:12:10.739 579 593 W ActivityManager: Activity pause timeout for ActivityRecord{d04e6e4 u0 com.dougo/.MainActivity t11 f} 05-07 05:12:10.789 849 1032 W EGL_emulation: eglSurfaceAttrib not implemented 05-07 05:12:10.789 849 1032 W OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xee9e8580, error=EGL_SUCCESS 05-07 05:12:11.348 849 1032 W OpenGLRenderer: Incorrectly called buildLayer on View: ShortcutAndWidgetContainer, destroying layer... 05-07 05:12:11.990 579 707 I ActivityManager: Killing 1373:com.android.exchange/u0a35 (adj 15): empty #17 05-07 05:12:11.990 579 707 W libprocessgroup: failed to open /acct/uid_10035/pid_1373/cgroup.procs: No such file or directory 05-07 05:12:12.960 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=93729, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_REACHABLE} 05-07 05:12:13.217 1609 1609 I Process : Sending signal. PID: 1609 SIG: 9 05-07 05:12:13.220 579 1643 E Surface : getSlotFromBufferLocked: unknown buffer: 0xf2bf5870 05-07 05:12:13.279 579 707 W libprocessgroup: failed to open /acct/uid_10060/pid_1609/cgroup.procs: No such file or directory 05-07 05:12:13.280 579 707 I ActivityManager: Process com.dougo (pid 1609) has died 05-07 05:12:13.345 243 639 D AudioFlinger: mixer(0xf1dc0000) throttle end: throttle time(11) 05-07 05:12:13.614 579 598 W AppOps : Finishing op nesting under-run: uid 1000 pkg android code 24 time=0 duration=0 nesting=0 05-07 05:12:23.455 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=104224, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_STALE} 05-07 05:15:10.783 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=271552, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_PROBE} 05-07 05:15:10.783 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=271552, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_REACHABLE} 05-07 05:15:24.320 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=285089, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_STALE} 05-07 05:16:05.479 579 624 D WifiStateMachine: L2Connected CMD_START_SCAN source -2 19, 21 -> obsolete 05-07 05:16:10.687 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=331457, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_PROBE} 05-07 05:16:10.688 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=331457, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_REACHABLE} 05-07 05:16:24.226 579 1472 D NetlinkSocketObserver: NeighborEvent{elapsedMs=344995, 10.0.3.2, [525400123502], RTM_NEWNEIGH, NUD_STALE}

`

chrisbianca commented 6 years ago
05-07 05:12:07.985 1609 1640 E FirebaseInstanceId: Google Play services missing or without correct permission.

You need to make sure Google Play Services are installed and updated on the device.

steverob commented 6 years ago

@chrisbianca Can you point me to where the updated instructions are available?

I'm getting these same errors when building on AppCenter. Here are my gradle files - https://gist.github.com/steverob/950bbb752e3af5b8fc6c63f4715dd8eb

Hope we can get some help here.

chrisbianca commented 6 years ago

All our release notes have upgrade instructions where there are changes that need to be made

steverob commented 6 years ago

Are you talking about the v3 to v4 upgrade guide?

I’ve done that already. Can you check my grade files please?

-- Regards Steve Robinson

On 24-May-2018, at 5:50 PM, Chris Bianca notifications@github.com wrote:

All our release notes have upgrade instructions where there are changes that need to be made

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or mute the thread.

jindada commented 6 years ago

I configured according to the document But still an error

com.android.build.api.transform.TransformException: Error while generating the main dex list.

version: 4.1.0 rn version: 0.55.4

// <root>/build.gradle

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:3.2.1'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        maven { url "https://maven.google.com" }
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
        google()
        configurations.all {
            resolutionStrategy {
                force 'com.facebook.android:facebook-android-sdk:4.28.0'
            }
        }
    }
}

// <root>/app/build.gradle
android {
    dexOptions {
        javaMaxHeapSize "4g"
    }
    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        applicationId "com.myproject"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0.0"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
        multiDexEnabled true
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86"
        }
    }
    buildTypes {
        release {
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    implementation(project(':react-native-firebase')) {
        transitive = false
    }
    // RNFirebase required dependencies
    implementation "com.google.firebase:firebase-core:15.0.2"
    implementation "com.google.android.gms:play-services-base:15.0.0"

    implementation "com.google.firebase:firebase-messaging:15.0.2"

    implementation project(':react-native-fast-image')
    implementation project(':react-native-google-analytics-bridge')
    implementation project(':react-native-zendesk-zopimchat')
    implementation project(':react-native-paypal-wrapper')
    implementation project(':react-native-fbsdk')
    implementation project(':react-native-imei')
    implementation project(':react-native-device-info')
    implementation project(':react-native-picker')
    implementation project(':react-native-splash-screen')
    implementation project(':react-native-i18n')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.android.support:appcompat-v7:23.0.1"
    implementation "com.android.support:multidex:1.0.1"
    implementation "com.facebook.react:react-native:+"  // From node_modules
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

apply plugin: 'com.google.gms.google-services'
ValeryP commented 6 years ago

I've been fighting the issue but didn't want to decrease the libs version as a solution. In order to overcome it, I just changed the minor version of the libs. Once I did it the Gradle fetched them and the issue was gone.

It makes me think that the problem was using the old version of Gradle global cache that was broken in some way. The solution that worked is no changing exactly to the 15.0.2 as was suggested but even minor change to any version.

In my case it was the change:

mablejohn commented 6 years ago

I don't using any of the google cloud API's like fire-base, play-services. But still an error.

Error Details

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':Platform:transformClassesWithMultidexlistForPlatformDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org
tal987 commented 6 years ago

any solution?

mrisek commented 6 years ago

You can fix this issue by adding a project ext property googlePlayServicesVersion to  app/App_Resources/Android/app.gradle file like this:

project.ext {
    googlePlayServicesVersion = "+"
}
mablejohn commented 6 years ago

I don't using any of the google cloud API's like fire-base, play-services. But still an error.

Error Details

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':Platform:transformClassesWithMultidexlistForPlatformDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

In my case the issue went away by updating Google Guava version to 26.0-android from 25.1-android

tannera commented 6 years ago

With react-native-firebase version 5.0.0, Removing

implementation "com.google.firebase:firebase-crash:16.0.1"

and only keeping

  implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
        transitive = true
    }

fixed this issue for me

Salakar commented 6 years ago

@tannera implementation "com.google.firebase:firebase-crash:16.0.1" is for the old firebase crash reporting (firebase.crash()) this has been removed and replaced with crashlytics - so that line definitely shouldn't be there :)

Cam000 commented 6 years ago

Go to android/build.gradle buildscript{ ext { googlePlayServicesVersion = "+"

built for me after this...

AhmadSadiq0 commented 5 years ago

Paste this in app.gradle below defaultConfig{}.It worked for me compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 }

shaunsaker commented 5 years ago

Had a similar issue with react-native-firebase (5.2.0) and react-native (57.8).

Adding com.android.support:design:27.1.0 to ./android/app/build.gradle worked for me:

dependencies {
  ...
  implementation 'com.android.support:multidex:1.0.3'
  implementation 'com.android.support:design:27.1.0'
}

Link.

linnett commented 5 years ago

@shaunsaker Thank you!! That fixed my problem. Should this not be in the docs?!

rohit75 commented 5 years ago

Facing this issue:

AathmikaM commented 5 years ago

Execution failed for task ':app:transformClassesWithMultidexlistForDebug'. > com.android.build.api.transform.TransformException: Error while generating the main dex list.

I got this error ...How can I resolve this...I just did frontend for login,signup,forgot Password

AkioUnity commented 5 years ago

Hello I have same error

* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.
ddthuan87 commented 5 years ago

Hello I have same error

* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list.

me too, anyone help?

minhnhattonthat commented 5 years ago

Hi, I experienced this error today, but also before. I was able to fix by lower the version of the firebase module version, such as firebase-messaging. The error occurred on latest version - 17.5.0, but when I changed to lower one - 15.0.2, the app was able to compile.

NomanGul commented 5 years ago

Any solution for this? :confused: I'm so sad :disappointed:

mikehardy commented 5 years ago

I added a comment on another issue https://github.com/invertase/react-native-firebase/issues/752#issuecomment-480371637 which contains links to the firebase starter app updated on a fork and working correctly on Android API16+ and iOS with MLKit and MultiDex and RN0.59 and everything in debug and release. It is possible

mikehardy commented 5 years ago

@NativLouie you are probably victim to Google releasing AndroidX versions of all of their dependencies, and you are not pinning your dependencies correctly in android/build.gradle ext{} block.

It affects the whole react-native ecosystem, but is a project-specific problem

https://github.com/facebook/react-native/issues/25293

Yathousen commented 5 years ago

I recently made an article to address this AndroidX situation, you may find it useful.

https://medium.com/@yathousen/the-day-google-decided-to-shake-the-react-native-community-4ba5cdd33388

mikehardy commented 5 years ago

@Yathousen interesting article - pretty good summary. As the maintainer of jetifier though, I have 2 thoughts:

1- the current version of jetifier is nearly instant, the core transformer was rewritten and released just yesterday, you should retest and if you confirm the 1.5.0 release is faster you could remove the performance notices perhaps, so as not to scare people off

2- I am unaware of transforms that don’t work. If react-native-navigation doesn’t work directly with nothing more than a call to npx jetify in your package.json postinstall, please open a bug on jetifier or (even better) make a PR for rn-androidx-demo (the test suite for jetifier) to add react-native-navigation so we can see it break and figure out why

basically, npx jetify should work and should be pretty blazing right now, lending more weight to the “DIY” solution and actually transforming it (since it should be easy) to “the community recommendation” vs “DIY” since it is what the community developed https://github.com/react-native-community/discussions-and-proposals/issues/129

x107 commented 4 years ago

try in android/build.gradle

buildscript {
 ext {
    minSdkVersion = 21
 }
}
mikehardy commented 4 years ago

@x107 that is not sound advice. That avoids the problem at the cost of dropping support for API16-20. No reason to do that. Just have to integrate multidex correctly.

nicoara commented 4 years ago

hi. I have the same problem, working to debug it for past hours with no success.

Can you please provide a solution?

> Task :app:transformClassesWithMultidexlistForDebug FAILED
D8: Program type already present: android.support.design.widget.CoordinatorLayout$1
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:transformClassesWithMultidexlistForDebug'.
> com.android.build.api.transform.TransformException: Error while generating the main dex list:
  Error while merging dex archives: 
  Learn how to resolve the issue at https://developer.android.com/studio/build/dependencies#duplicate_classes.
  Program type already present: android.support.design.widget.CoordinatorLayout$1

react-native-info: info React Native Environment Info: System: OS: macOS High Sierra 10.13.6 CPU: (8) x64 Intel(R) Core(TM) i7-3615QM CPU @ 2.30GHz Memory: 64.17 MB / 8.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 8.10.0 - /usr/local/bin/node Yarn: 1.5.1 - /usr/local/bin/yarn npm: 5.6.0 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman SDKs: iOS SDK: Platforms: iOS 11.4, macOS 10.13, tvOS 11.4, watchOS 4.3 Android SDK: API Levels: 21, 23, 25, 26, 27, 28, 29 Build Tools: 23.0.1, 25.0.1, 25.0.3, 26.0.2, 27.0.3, 28.0.3, 29.0.2 System Images: android-25 | Google Play Intel x86 Atom, android-27 | Google Play Intel x86 Atom IDEs: Android Studio: 3.5 AI-191.8026.42.35.5977832 Xcode: 9.4.1/9F2000 - /usr/bin/xcodebuild npmPackages: react: 16.2.0 => 16.2.0 react-native: 0.59.0 => 0.59.0 npmGlobalPackages: react-native-cli: 2.0.1 react-native-create-library: 3.1.2

in app/build.gradle: (following https://rnfirebase.io/docs/v5.x.x/releases/v5.3.x )

    api 'com.google.android.gms:play-services-base:16.1.0'
    //compile 'com.google.android.gms:play-services-places:11.8.0'
    //compile 'com.google.android.gms:play-services-location:11.8.0'
    api 'com.google.firebase:firebase-core:16.0.9'
    api "com.google.firebase:firebase-ads:17.2.1"
    api "com.google.firebase:firebase-auth:17.0.0"
    api "com.google.firebase:firebase-config:17.0.0"
    api "com.google.firebase:firebase-database:17.0.0"
    api "com.google.firebase:firebase-functions:17.0.0"
    api "com.google.firebase:firebase-invites:17.0.0"
    api "com.google.firebase:firebase-firestore:19.0.0"
    api "com.google.firebase:firebase-messaging:18.0.0"
    api "com.google.firebase:firebase-perf:17.0.2"
    api "com.google.firebase:firebase-storage:17.0.0"
    api "com.crashlytics.sdk.android:crashlytics:2.9.9"

(i am not using invites, firestore, ads - can I not put them ?)

my react-native-firebase build:

buildscript {
  repositories {
    google()
    jcenter()
    maven {
      url 'https://maven.fabric.io/public'
    }
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:3.3.2'
  }
}

apply plugin: 'com.android.library'

def DEFAULT_COMPILE_SDK_VERSION = 28
def DEFAULT_TARGET_SDK_VERSION = 28
def DEFAULT_SUPPORT_LIB_VERSION = "28.0.0"

android {
  compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
  defaultConfig {
    minSdkVersion 16
    targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
  }
  buildTypes {
    release {
      minifyEnabled false
    }
  }
  productFlavors {
  }
  lintOptions {
    disable 'GradleCompatible'
  }
  compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
  }
}

rootProject.gradle.buildFinished { buildResult ->
  if (buildResult.getFailure() != null) {
    //noinspection GroovyUnusedCatchParameter
    try {
      String message = buildResult.getFailure().properties.get("reportableCauses").toString()
      if (message.contains("com.android.dex.DexException: Multiple dex files define Lcom/google/") ||
        message.contains("java.util.zip.ZipException: duplicate entry: com/google/android/gms/")) {
        logger.log(LogLevel.ERROR, "")
        logger.log(LogLevel.ERROR, " -----------------------------------------------------------")
        logger.log(LogLevel.ERROR, "|                    REACT NATIVE FIREBASE                  |")
        logger.log(LogLevel.ERROR, " ----------------------------------------------------------- ")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|  This is a common build error when using libraries that   |")
        logger.log(LogLevel.ERROR, "|  require google play services.                            |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|  This error occurs because different versions of google   |")
        logger.log(LogLevel.ERROR, "|  play services or google play services modules are being  |")
        logger.log(LogLevel.ERROR, "|  required by different libraries.                         |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|  A temporary fix would be to set:                         |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|             android { multiDexEnabled true }              |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|  inside your build gradle, however it is recommended for  |")
        logger.log(LogLevel.ERROR, "|  your prod build that you de-duplicate these to minimize  |")
        logger.log(LogLevel.ERROR, "|  bundle size.                                             |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, "|  See http://invertase.link/dupe-dex for how to do this.   |")
        logger.log(LogLevel.ERROR, "|                                                           |")
        logger.log(LogLevel.ERROR, " ----------------------------------------------------------- ")
      }
    } catch (Exception exception) {
    }
  }
}

repositories {
  google()
  jcenter()

  def found = false
  def parentDir = rootProject.projectDir
  def androidSourcesName = 'React Native sources'
  def androidPrebuiltBinaryName = 'React Native prebuilt binary'

  1.upto(4, {
    if (found) return true
    parentDir = parentDir.parentFile

    // Running React Native from sources locally or for ExpoKit
    def androidSourcesDir = new File(
      parentDir,
      'node_modules/react-native'
    )

    // Official releases of React Native come with a prebuilt version of Android sources
    // in ./android, e.g. react-native/android/**/react-native-0.57.1.aar
    def androidPrebuiltBinaryDir = new File(
      parentDir,
      'node_modules/react-native/android'
    )

    if (androidPrebuiltBinaryDir.exists()) {
      maven {
        url androidPrebuiltBinaryDir.toString()
        name androidPrebuiltBinaryName
      }

      println "${project.name}: using ${androidPrebuiltBinaryName} from ${androidPrebuiltBinaryDir.toString()}"
      found = true
    } else if (androidSourcesDir.exists()) {
      maven {
        url androidSourcesDir.toString()
        name androidSourcesName
      }

      println "${project.name}: using ${androidSourcesName} from ${androidSourcesDir.toString()}"
      found = true
    }
  })

  if (!found) {
    throw new GradleException(
      "${project.name}: unable to locate React Native android sources or prebuilt binary. " +
        "Ensure you have you installed React Native as a dependency in your project and try again."
    )
  }
}

def supportVersion = rootProject.hasProperty('supportLibVersion') ? rootProject.supportLibVersion : DEFAULT_SUPPORT_LIB_VERSION

dependencies {
  //noinspection GradleDynamicVersion
  api "com.facebook.react:react-native:+"
  // implementation "com.google.firebase:firebase-common:16.1.0"

  /* ----------------------------
   *    REACT NATIVE FIREBASE
   * ---------------------------- */

  // Required dependencies
  //noinspection GradleCompatible
  compileOnly "com.google.firebase:firebase-core:16.0.8"
  compileOnly "com.google.android.gms:play-services-base:16.1.0"

  /* -------------------------
   *   OPTIONAL FIREBASE SDKS
   * ------------------------- */

  // Ads
  compileOnly('com.google.firebase:firebase-ads:15.0.1') {
    // exclude `customtabs` as the support lib version is out of date
    // we manually add it as a dependency below with a custom version
    exclude group: 'com.android.support', module: 'customtabs'
  }
  // Authentication
  compileOnly "com.google.firebase:firebase-auth:16.2.1"
  // Analytics
  compileOnly "com.google.firebase:firebase-analytics:16.4.0"
  // Performance Monitoring
  compileOnly "com.google.firebase:firebase-perf:16.2.5"
  // Remote Config
  compileOnly "com.google.firebase:firebase-config:16.5.0"
  // Cloud Storage
  compileOnly "com.google.firebase:firebase-storage:16.1.0"
  // Invites
  compileOnly "com.google.firebase:firebase-invites:16.1.1"
  // Dynamic Links
  compileOnly "com.google.firebase:firebase-dynamic-links:16.1.8"
  // Real-time Database
  compileOnly "com.google.firebase:firebase-database:16.1.0"
  // Cloud Functions
  compileOnly "com.google.firebase:firebase-functions:16.3.0"
  // Cloud Firestore
  compileOnly "com.google.firebase:firebase-firestore:18.2.0"
  // Cloud Messaging / FCM
  compileOnly "com.google.firebase:firebase-messaging:17.5.0"
  // Crashlytics
  compileOnly('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
    transitive = true
  }
  /* --------------------------------
   *  OPTIONAL SUPPORT LIBS
   * -------------------------------- */

  // For Firebase Ads
  compileOnly "com.android.support:customtabs:$supportVersion"

  // For React Native Firebase Notifications
  api "com.android.support:support-v4:$supportVersion"

  // For React Native Firebase Notifications
  compileOnly 'me.leolin:ShortcutBadger:1.1.21@aar'
}
mikehardy commented 4 years ago

This is a closed issue, open a new one following the whole template. As a guess in android/build.gradle you don't have library versions pinned correctly, so something is using v27 and something using v28 of the support or design libraries, meaning they include twice. Also you can look at cd android && ./gradlew :app:dependencies to see who is including the library with the symbol, and at what versions. You can also try https://github.com/mikehardy/rnfbdemo/blob/master/make-demo-rn59.sh to generate a complete demo react-native-firebase app in just a few minutes. It successfully compiles debug and release with multidex enabled and can be useful to look at side-by-side with your project to see what's going on

nicoara commented 4 years ago

This is a closed issue, open a new one following the whole template. As a guess in android/build.gradle you don't have library versions pinned correctly, so something is using v27 and something using v28 of the support or design libraries, meaning they include twice. Also you can look at cd android && ./gradlew :app:dependencies to see who is including the library with the symbol, and at what versions. You can also try https://github.com/mikehardy/rnfbdemo/blob/master/make-demo-rn59.sh to generate a complete demo react-native-firebase app in just a few minutes. It successfully compiles debug and release with multidex enabled and can be useful to look at side-by-side with your project to see what's going on

Hello, Thanks for replying, I have created the issue here, since I could not solve it thus far with your kind feedback: https://github.com/invertase/react-native-firebase/issues/2857

animeshpaul123 commented 4 years ago

@yosa I thought I was going insane! its kicking my butt! Any ideas?

hey, I had the same problem.

My previous code in project.properties before I got the solution:

Project target.

target=android-28 android.library.reference.1=CordovaLib android.library.reference.2=app cordova.system.library.1=com.android.support:support-v4:27.+ cordova.system.library.2=com.android.support:support-v4:27+ cordova.system.library.3=com.android.support:support-v4:27.+ cordova.system.library.4=com.android.support:support-annotations:27.+ cordova.system.library.5=com.mixpanel.android:mixpanel-android:5.6.5 cordova.system.library.6=com.google.android.gms:play-services-base cordova.system.library.7=com.google.firebase:firebase-messaging cordova.system.library.8=com.android.support:support-v4:24.1.1+0 cordova.gradle.include.1=cordova-support-google-services/coliving-build.gradle cordova.gradle.include.2=phonegap-plugin-multidex/coliving-multidex.gradle

my solution:

Project target.

target=android-28 android.library.reference.1=CordovaLib android.library.reference.2=app cordova.system.library.1=com.android.support:support-v4:27.+ cordova.system.library.2=com.android.support:support-v4:27+ cordova.system.library.3=com.android.support:support-v4:27.+ cordova.system.library.4=com.android.support:support-annotations:27.+ cordova.system.library.5=com.mixpanel.android:mixpanel-android:5.6.5 cordova.system.library.6=com.google.android.gms:play-services-base:11.8.0 cordova.system.library.7=com.google.firebase:firebase-messaging:11.8.0 cordova.system.library.8=com.android.support:support-v4:24.1.1+0 cordova.gradle.include.1=cordova-support-google-services/coliving-build.gradle cordova.gradle.include.2=phonegap-plugin-multidex/coliving-multidex.gradle

Hope it will help your problem.