Last active
May 2, 2024 05:35
-
-
Save raquelhortab/60ebd50ead5aa820c34bc271a09e94b7 to your computer and use it in GitHub Desktop.
Crashlytics migration errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def versionMajor = 1 | |
def versionMinor = 1 | |
def versionPatch = 3 | |
def versionBuild = 0 | |
buildscript { | |
repositories { | |
mavenCentral() | |
// maven { url 'https://maven.fabric.io/public' } | |
} | |
dependencies { | |
// classpath 'me.tatarka:gradle-retrolambda:3.2.4' | |
// classpath 'io.fabric.tools:gradle:1.27.1' | |
} | |
} | |
repositories { | |
mavenCentral() | |
// maven { url 'https://maven.fabric.io/public' } | |
} | |
apply plugin: 'com.android.application' | |
//apply plugin: 'io.fabric' | |
//apply plugin: 'me.tatarka.retrolambda' | |
//apply plugin: 'android-apt' | |
android { | |
compileSdkVersion 28 | |
buildToolsVersion '28.0.3' | |
defaultConfig { | |
applicationId "..." | |
minSdkVersion 16 | |
targetSdkVersion 28 | |
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch * 10 + versionBuild | |
versionName "${versionMajor}.${versionMinor}.${versionPatch}" | |
vectorDrawables.useSupportLibrary = true | |
} | |
buildTypes { | |
debug { | |
applicationIdSuffix ".dev" | |
versionNameSuffix " DEV" | |
} | |
release { | |
signingConfig signingConfigs.release | |
} | |
} | |
buildTypes { | |
release { | |
minifyEnabled false | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} | |
compileOptions { | |
sourceCompatibility JavaVersion.VERSION_1_8 | |
targetCompatibility JavaVersion.VERSION_1_8 | |
} | |
} | |
dependencies { | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | |
implementation 'androidx.core:core:1.0.0' | |
implementation 'androidx.vectordrawable:vectordrawable-animated:1.0.0' | |
implementation 'androidx.appcompat:appcompat:1.0.0' | |
implementation 'androidx.legacy:legacy-support-v13:1.0.0' | |
implementation 'androidx.cardview:cardview:1.0.0' | |
implementation 'androidx.recyclerview:recyclerview:1.0.0' | |
implementation 'com.google.android.material:material:1.0.0' | |
implementation 'androidx.annotation:annotation:1.0.0' | |
implementation 'com.squareup.retrofit2:retrofit:2.1.0' | |
implementation 'com.squareup.retrofit2:converter-gson:2.1.0' | |
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0' | |
implementation 'com.squareup.okhttp3:logging-interceptor:3.3.1' | |
implementation 'io.reactivex:rxandroid:1.1.0' | |
implementation 'com.github.bumptech.glide:glide:3.7.0' | |
implementation 'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar' | |
implementation 'com.squareup.okhttp3:okhttp:3.0.1' | |
implementation 'com.jakewharton:butterknife:8.2.1' | |
annotationProcessor 'com.jakewharton:butterknife-compiler:8.2.1' | |
implementation 'io.swagger:swagger-annotations:1.5.3' | |
testImplementation 'junit:junit:4.12' | |
testImplementation "org.mockito:mockito-core:1.10.19" | |
implementation('com.mikepenz:materialdrawer:5.8.0@aar') { | |
transitive = true | |
} | |
// implementation('com.crashlytics.sdk.android:crashlytics:2.6.5@aar') { | |
// transitive = true; | |
// } | |
implementation 'com.google.firebase:firebase-core:16.0.8' | |
implementation 'com.google.firebase:firebase-messaging:21.0.0' | |
implementation 'com.android.volley:volley:1.1.1' | |
implementation 'com.google.android.play:core:1.7.1' | |
implementation 'com.google.firebase:firebase-crashlytics:17.0.0' | |
implementation 'com.google.firebase:firebase-analytics:17.4.2' | |
} | |
apply plugin: 'com.google.gms.google-services' | |
apply plugin: 'com.google.firebase.crashlytics' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
jcenter() | |
maven { | |
url 'https://maven.google.com' | |
} | |
google() | |
} | |
dependencies { | |
classpath 'com.android.tools.build:gradle:3.5.3' | |
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' | |
classpath 'com.google.gms:google-services:4.2.0' | |
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1' | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} | |
allprojects { | |
repositories { | |
jcenter() | |
maven { | |
url 'https://maven.google.com' | |
} | |
google() | |
} | |
apply plugin: 'checkstyle' | |
//for java modules | |
checkstyle { | |
toolVersion = "6.7" | |
configFile = '../../checkstyle/checkstyle.xml' as File | |
} | |
//for android module | |
task checkstyle(type: Checkstyle) { | |
configFile file('../checkstyle/checkstyle.xml') | |
source 'src' | |
include '**/*.java' | |
exclude '**/gen/**' | |
classpath = files() | |
} | |
} | |
task clean(type: Delete) { | |
delete rootProject.buildDir | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10/29 09:01:02: Launching 'app' on bq Aquaris V. | |
$ adb shell am start -n "cat.codelearn.android.dev/cat.codelearn.android.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -D | |
Waiting for application to come online: cat.codelearn.android.dev | cat.codelearn.android.dev.test | |
Waiting for application to come online: cat.codelearn.android.dev | cat.codelearn.android.dev.test | |
Connecting to cat.codelearn.android.dev | |
Capturing and displaying logcat messages from application. This behavior can be disabled in the "Logcat output" section of the "Debugger" settings page. | |
I/zygote: Debugger is active | |
I/System.out: Debugger has connected | |
waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
Connected to the target VM, address: 'localhost:8600', transport: 'socket' | |
I/chatty: uid=10279(cat.codelearn.android.dev) identical 1 line | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: debugger has settled (1367) | |
I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:13 and remote module com.google.android.gms.measurement.dynamite:0 | |
I/DynamiteModule: Selected local version of com.google.android.gms.measurement.dynamite | |
W/zygote: Unsupported class loader | |
W/zygote: Skipping duplicate class check due to unsupported classloader | |
I/FirebaseCrashlytics: Initializing Crashlytics 17.0.0 | |
I/FirebaseInitProvider: FirebaseApp initialization successful | |
V/FA: App measurement collection enabled | |
V/FA: App measurement enabled for app package, google app id: cat.codelearn.android.dev, 1:167827156212:android:4a656624fc6c0588 | |
I/FA: App measurement initialized, version: 28000 | |
To enable debug logging run: adb shell setprop log.tag.FA VERBOSE | |
To enable faster debug mode event logging run: | |
adb shell setprop debug.firebase.analytics.app cat.codelearn.android.dev | |
D/FA: Debug-level message logging enabled | |
V/FA: onActivityCreated | |
D/NetworkSecurityConfig: No Network Security Config specified, using platform default | |
V/FA: Connecting to remote service | |
V/FA: Connection attempt already in progress | |
D/DEBUG: startFcmService | |
I/zygote: Do partial code cache collection, code=31KB, data=28KB | |
I/zygote: After code cache collection, code=31KB, data=28KB | |
Increasing code cache capacity to 128KB | |
V/FA: Activity resumed, time: 1585025789 | |
D/OpenGLRenderer: HWUI GL Pipeline | |
I/FA: Tag Manager is not found and thus will not be used | |
D/FCM: FirebaseMessagingService created | |
V/FA: Connection attempt already in progress | |
I/Adreno: QUALCOMM build : d916c72, I7663a5f222 | |
Build Date : 10/27/18 | |
OpenGL ES Shader Compiler Version: EV031.22.00.01_06_07 | |
Local Branch : | |
Remote Branch : | |
Remote Branch : | |
Reconstruct Branch : | |
D/vndksupport: Loading /vendor/lib/hw/gralloc.msm8937.so from current namespace instead of sphal namespace. | |
I/Adreno: PFP: 0x005ff087, ME: 0x005ff063 | |
I/zygote: android::hardware::configstore::V1_0::ISurfaceFlingerConfigs::hasWideColorDisplay retrieved: 0 | |
I/OpenGLRenderer: Initialized EGL, version 1.4 | |
D/OpenGLRenderer: Swap behavior 2 | |
V/FA: Connection attempt already in progress | |
V/FA: Recording user engagement, ms: 725 | |
V/FA: Recording user engagement, ms: -393 | |
V/FA: Connection attempt already in progress | |
Activity paused, time: 1585025975 | |
I/zygote: Do partial code cache collection, code=56KB, data=61KB | |
I/zygote: After code cache collection, code=56KB, data=61KB | |
Increasing code cache capacity to 256KB | |
I/zygote: Compiler allocated 4MB to compile void android.widget.TextView.<init>(android.content.Context, android.util.AttributeSet, int, int) | |
V/FA: Activity resumed, time: 1585026085 | |
V/FA: Connection attempt already in progress | |
I/zygote: Do full code cache collection, code=101KB, data=88KB | |
I/zygote: After code cache collection, code=79KB, data=55KB | |
I/Choreographer: Skipped 39 frames! The application may be doing too much work on its main thread. | |
V/FA: Connection attempt already in progress | |
D/vndksupport: Loading /vendor/lib/hw/[email protected] from current namespace instead of sphal namespace. | |
D/vndksupport: Loading /vendor/lib/hw/gralloc.msm8937.so from current namespace instead of sphal namespace. | |
V/FA: Connection attempt already in progress | |
D/FA: Connected to remote service | |
V/FA: Processing queued up service tasks: 9 | |
D/FCM: Token: fk1A3jW0vfQ:APA91bFLLIX427W7N9Mqd-Py77NgkaWQJUYcC0hPFYhn3t1rIHINRSojmL_J8FJ9DmpStErU8pky0tUOhHSTY2bryZZJICNa1nEi3CwGfP3coQ3DSTaFYFhcLRzKeE7KbQ0LjyXa3SPu | |
sendRegistration | |
I/zygote: Do partial code cache collection, code=125KB, data=77KB | |
I/zygote: After code cache collection, code=123KB, data=76KB | |
Increasing code cache capacity to 512KB | |
D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
D/TransportRuntime.JobInfoScheduler: Scheduling upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) with jobId=-519359591 in 1000ms(Backend next call timestamp 1603956872316). Attempt 1 | |
D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
D/TransportRuntime.JobInfoScheduler: Upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) is already scheduled. Returning... | |
I/zygote: Background concurrent copying GC freed 20224(939KB) AllocSpace objects, 36(2MB) LOS objects, 50% free, 3MB/7MB, paused 5.259ms total 136.385ms | |
D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
D/TransportRuntime.JobInfoScheduler: Upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) is already scheduled. Returning... | |
D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
D/TransportRuntime.JobInfoScheduler: Upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) is already scheduled. Returning... | |
V/FA: Recording user engagement, ms: 2260 | |
V/FA: Recording user engagement, ms: -67 | |
V/FA: Activity paused, time: 1585028029 | |
I/Process: Sending signal. PID: 2338 SIG: 9 | |
Disconnected from the target VM, address: 'localhost:8600', transport: 'socket' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10/29 10:17:51: Launching 'app' on Nexus 5 API 24. | |
$ adb shell am start -n "cat.codelearn.android.dev/cat.codelearn.android.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER -D | |
Waiting for application to come online: cat.codelearn.android.dev | cat.codelearn.android.dev.test | |
Waiting for application to come online: cat.codelearn.android.dev | cat.codelearn.android.dev.test | |
Connected to process 24197 on device 'emulator-5554'. | |
Connecting to cat.codelearn.android.dev | |
Connected to the target VM, address: 'localhost:8602', transport: 'socket' | |
Capturing and displaying logcat messages from application. This behavior can be disabled in the "Logcat output" section of the "Debugger" settings page. | |
I/art: Debugger is active | |
I/System.out: Debugger has connected | |
waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: waiting for debugger to settle... | |
I/System.out: debugger has settled (1459) | |
W/System: ClassLoader referenced unknown path: /data/app/cat.codelearn.android.dev-1/lib/x86 | |
I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:13 and remote module com.google.android.gms.measurement.dynamite:0 | |
Selected local version of com.google.android.gms.measurement.dynamite | |
I/FirebaseCrashlytics: Initializing Crashlytics 17.0.0 | |
I/FirebaseInitProvider: FirebaseApp initialization successful | |
V/FA: App measurement collection enabled | |
V/FA: App measurement enabled for app package, google app id: cat.codelearn.android.dev, 1:167827156212:android:4a656624fc6c0588 | |
I/FA: App measurement initialized, version: 28000 | |
To enable debug logging run: adb shell setprop log.tag.FA VERBOSE | |
I/FA: To enable faster debug mode event logging run: | |
adb shell setprop debug.firebase.analytics.app cat.codelearn.android.dev | |
D/FA: Debug-level message logging enabled | |
W/art: Before Android 4.1, method android.graphics.PorterDuffColorFilter androidx.vectordrawable.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 | |
V/FA: onActivityCreated | |
D/NetworkSecurityConfig: No Network Security Config specified, using platform default | |
V/FA: Checking service availability | |
W/GooglePlayServicesUtil: Google Play services out of date. Requires 12451000 but found 11743470 | |
D/FA: Service container out of date | |
V/FA: Using local app measurement service | |
V/FA: Connection attempt already in progress | |
I/art: Do partial code cache collection, code=30KB, data=24KB | |
After code cache collection, code=24KB, data=22KB | |
Increasing code cache capacity to 128KB | |
V/FA: Activity resumed, time: 34536499 | |
I/FA: Tag Manager is not found and thus will not be used | |
D/: HostConnection::get() New Host Connection established 0x936c5280, tid 24197 | |
V/FA: Local AppMeasurementService is starting up | |
I/art: Do partial code cache collection, code=60KB, data=58KB | |
After code cache collection, code=58KB, data=57KB | |
Increasing code cache capacity to 256KB | |
V/FA: Connection attempt already in progress | |
V/FA: Connection attempt already in progress | |
D/: HostConnection::get() New Host Connection established 0xa0d461c0, tid 24249 | |
I/OpenGLRenderer: Initialized EGL, version 1.4 | |
D/OpenGLRenderer: Swap behavior 1 | |
W/OpenGLRenderer: Failed to choose config with EGL_SWAP_BEHAVIOR_PRESERVED, retrying without... | |
D/OpenGLRenderer: Swap behavior 0 | |
V/FA: Nothing to upload or uploading impossible | |
V/FA: Unscheduling upload | |
D/EGL_emulation: eglCreateContext: 0x93fb57e0: maj 2 min 0 rcv 2 | |
D/EGL_emulation: eglMakeCurrent: 0x93fb57e0: ver 2 0 (tinfo 0x93fce0b0) | |
V/FA: Connection attempt already in progress | |
V/FA: Bound to IMeasurementService interface | |
V/FA: Recording user engagement, ms: 152 | |
V/FA: Connected to service | |
V/FA: Processing queued up service tasks: 5 | |
V/FA: Storage concurrent access okay | |
D/EGL_emulation: eglMakeCurrent: 0x93fb57e0: ver 2 0 (tinfo 0x93fce0b0) | |
V/FA: Parsed config. version, gmp_app_id: 1586466467853324, 1:167827156212:android:4a656624fc6c0588 | |
W/System: ClassLoader referenced unknown path: /system/priv-app/PrebuiltGmsCore/lib/x86 | |
W/GooglePlayServicesUtil: Google Play services out of date. Requires 12451000 but found 11743470 | |
V/FA: Logging event: origin=auto,name=screen_view(_vs),params=Bundle[{ga_event_origin(_o)=auto, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=8898653539399910298}] | |
I/art: Do full code cache collection, code=123KB, data=100KB | |
I/art: After code cache collection, code=100KB, data=57KB | |
V/FA: Upload scheduled in approximately ms: 2796613 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 2796613 | |
V/FA: Background event processing time, ms: 86 | |
E/AndroidRuntime: FATAL EXCEPTION: RxIoScheduler-2 | |
Process: cat.codelearn.android.dev, PID: 24197 | |
java.lang.IllegalStateException: Fatal Exception thrown on Scheduler.Worker thread. | |
at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:62) | |
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:428) | |
at java.util.concurrent.FutureTask.run(FutureTask.java:237) | |
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:272) | |
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) | |
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) | |
at java.lang.Thread.run(Thread.java:761) | |
Caused by: java.lang.NoClassDefFoundError: Failed resolution of: Lokhttp3/internal/Platform; | |
at okhttp3.logging.HttpLoggingInterceptor$Logger$1.log(HttpLoggingInterceptor.java:112) | |
at okhttp3.logging.HttpLoggingInterceptor.intercept(HttpLoggingInterceptor.java:160) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.java:45) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) | |
at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.java:93) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) | |
at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.java:93) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.java:126) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) | |
at cat.codelearn.android.common.interceptor.LoggedUserInterceptor.intercept(LoggedUserInterceptor.java:19) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:147) | |
at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.java:121) | |
at okhttp3.RealCall.getResponseWithInterceptorChain(RealCall.java:254) | |
at okhttp3.RealCall.execute(RealCall.java:92) | |
at retrofit2.OkHttpCall.execute(OkHttpCall.java:174) | |
at retrofit2.adapter.rxjava.RxJavaCallAdapterFactory$RequestArbiter.request(RxJavaCallAdapterFactory.java:171) | |
at rx.internal.operators.OperatorSubscribeOn$1$1$1.request(OperatorSubscribeOn.java:80) | |
at rx.Subscriber.setProducer(Subscriber.java:211) | |
at rx.internal.operators.OperatorSubscribeOn$1$1.setProducer(OperatorSubscribeOn.java:76) | |
at rx.internal.operators.OperatorMap$MapSubscriber.setProducer(OperatorMap.java:99) | |
at rx.Subscriber.setProducer(Subscriber.java:205) | |
at retrofit2.adapter.rxjava.RxJavaCallAdapterFactory$CallOnSubscribe.call(RxJavaCallAdapterFactory.java:152) | |
at retrofit2.adapter.rxjava.RxJavaCallAdapterFactory$CallOnSubscribe.call(RxJavaCallAdapterFactory.java:138) | |
at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:50) | |
at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) | |
at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:50) | |
at rx.internal.operators.OnSubscribeLift.call(OnSubscribeLift.java:30) | |
at rx.Observable.unsafeSubscribe(Observable.java:8460) | |
at rx.internal.operators.OperatorSubscribeOn$1.call(OperatorSubscribeOn.java:94) | |
at rx.internal.schedulers.CachedThreadScheduler$EventLoopWorker$1.call(CachedThreadScheduler.java:222) | |
at rx.internal.schedulers.ScheduledAction.run(ScheduledAction.java:55) | |
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:428) | |
at java.util.concurrent.FutureTask.run(FutureTask.java:237) | |
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:272) | |
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133) | |
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607) | |
at java.lang.Thread.run(Thread.java:761) | |
Caused by: java.lang.ClassNotFoundException: Didn't find class "okhttp3.internal.Platform" on path: DexPathList[[zip file "/data/app/cat.codelearn.android.dev-1/base.apk"],nativeLibraryDirectories=[/data/app/cat.codelearn.android.dev-1/lib/x86, /system/lib, /vendor/lib]] | |
at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:380) | |
at java.lang.ClassLoader.loadClass(ClassLoader.java:312) | |
... 42 more | |
D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
V/FA: Logging event: origin=clx,name=app_exception(_ae),params=Bundle[{ga_event_origin(_o)=clx, _r=1, engagement_time_msec(_et)=108, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=8898653539399910298, timestamp=1603963077134, fatal=1}] | |
D/TransportRuntime.JobInfoScheduler: Scheduling upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) with jobId=-519359591 in 1000ms(Backend next call timestamp 1603962296548). Attempt 1 | |
V/FA: Upload scheduled in approximately ms: 500 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 500 | |
V/FA: Background event processing time, ms: 116 | |
W/FA: Callable skipped the worker queue. | |
W/IInputConnectionWrapper: reportFullscreenMode on inexistent InputConnection | |
finishComposingText on inactive InputConnection | |
D/EGL_emulation: eglMakeCurrent: 0x93fb57e0: ver 2 0 (tinfo 0x93fce0b0) | |
V/FA: Logging event: origin=auto,name=user_engagement(_e),params=Bundle[{ga_event_origin(_o)=auto, engagement_time_msec(_et)=152, _fr=1, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=8898653539399910298}] | |
I/art: Do partial code cache collection, code=113KB, data=69KB | |
After code cache collection, code=111KB, data=68KB | |
Increasing code cache capacity to 512KB | |
V/FA: Upload scheduled in approximately ms: 9760 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 9760 | |
V/FA: Background event processing time, ms: 61 | |
V/FA: Recording user engagement, ms: 388 | |
V/FA: Activity paused, time: 34536995 | |
V/FA: Logging event: origin=auto,name=user_engagement(_e),params=Bundle[{ga_event_origin(_o)=auto, engagement_time_msec(_et)=388, ga_screen_class(_sc)=MainActivity, ga_screen_id(_si)=8898653539399910298}] | |
V/FA: Upload scheduled in approximately ms: 9580 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 9580 | |
V/FA: Background event processing time, ms: 66 | |
D/TransportRuntime.CctTransportBackend: Making request to: https://crashlyticsreports-pa.googleapis.com/v1/firelog/legacy/batchlog | |
D/FA: Application going to the background | |
V/FA: Logging event: origin=auto,name=app_background(_ab),params=Bundle[{ga_event_origin(_o)=auto}] | |
V/FA: Upload scheduled in approximately ms: 7560 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 7560 | |
V/FA: Background event processing time, ms: 48 | |
I/TransportRuntime.CctTransportBackend: Status Code: 200 | |
Content-Type: application/json; charset=UTF-8 | |
Content-Encoding: gzip | |
V/FA: Inactivity, disconnecting from the service | |
V/FA: onUnbind called for intent. action: com.google.android.gms.measurement.START | |
Local AppMeasurementService is shutting down | |
V/FA: Unscheduling upload | |
V/FA: Local AppMeasurementService is starting up | |
V/FA: Starting upload from DelayedRunnable | |
V/FA: onUnbind called for intent. action | |
Local AppMeasurementService is shutting down | |
V/FA: Updated engagement user property. scope, value: lifetime, 1119 | |
V/FA: Updated engagement user property. scope, value: session-scoped, 1118 | |
Checking account type status for ad personalization signals | |
V/FA: Saving bundle, size: 582 | |
D/FA: Uploading events. Elapsed time since last upload attempt (ms): 10049 | |
V/FA: Not stopping services. fetch, network, upload: false, true, false | |
V/FA: Uploading data. size: 595 | |
I/art: JIT allocated 52KB for compiled code of int com.google.android.gms.internal.measurement.zzgx.zzb(java.lang.Object) | |
Compiler allocated 10MB to compile int com.google.android.gms.internal.measurement.zzgx.zzb(java.lang.Object) | |
V/FA: Upload scheduled in approximately ms: 3599994 | |
V/FA: Unscheduling upload | |
V/FA: Scheduling upload, millis: 3599994 | |
V/FA: Successful upload. Got network response. code, size: 204, 0 | |
V/FA: Nothing to upload or uploading impossible | |
Unscheduling upload | |
V/FA: Stopping uploading service(s) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2020-10-29 09:01:11.825 2805-2805/? I/zygote: Late-enabling -Xcheck:jni | |
2020-10-29 09:01:12.161 2805-2845/cat.codelearn.android.dev I/DynamiteModule: Considering local module com.google.android.gms.measurement.dynamite:13 and remote module com.google.android.gms.measurement.dynamite:0 | |
2020-10-29 09:01:12.161 2805-2845/cat.codelearn.android.dev I/DynamiteModule: Selected local version of com.google.android.gms.measurement.dynamite | |
2020-10-29 09:01:12.187 2805-2845/cat.codelearn.android.dev W/zygote: Unsupported class loader | |
2020-10-29 09:01:12.194 2805-2845/cat.codelearn.android.dev W/zygote: Skipping duplicate class check due to unsupported classloader | |
2020-10-29 09:01:12.327 2805-2805/cat.codelearn.android.dev I/FirebaseCrashlytics: Initializing Crashlytics 17.0.0 | |
2020-10-29 09:01:12.406 2805-2805/cat.codelearn.android.dev I/FirebaseInitProvider: FirebaseApp initialization successful | |
2020-10-29 09:01:12.414 2805-2868/cat.codelearn.android.dev D/TransportRuntime.JobInfoScheduler: Upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) is already scheduled. Returning... | |
2020-10-29 09:01:12.442 2805-2850/cat.codelearn.android.dev V/FA: App measurement collection enabled | |
2020-10-29 09:01:12.461 2805-2850/cat.codelearn.android.dev V/FA: App measurement enabled for app package, google app id: cat.codelearn.android.dev, 1:167827156212:android:4a656624fc6c0588 | |
2020-10-29 09:01:12.471 2805-2850/cat.codelearn.android.dev I/FA: App measurement initialized, version: 28000 | |
2020-10-29 09:01:12.472 2805-2850/cat.codelearn.android.dev I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE | |
2020-10-29 09:01:12.472 2805-2850/cat.codelearn.android.dev I/FA: To enable faster debug mode event logging run: | |
adb shell setprop debug.firebase.analytics.app cat.codelearn.android.dev | |
2020-10-29 09:01:12.472 2805-2850/cat.codelearn.android.dev D/FA: Debug-level message logging enabled | |
2020-10-29 09:01:12.531 2805-2868/cat.codelearn.android.dev D/TransportRuntime.CctTransportBackend: Making request to: https://crashlyticsreports-pa.googleapis.com/v1/firelog/legacy/batchlog | |
2020-10-29 09:01:12.538 2805-2868/cat.codelearn.android.dev D/NetworkSecurityConfig: No Network Security Config specified, using platform default | |
2020-10-29 09:01:12.637 2805-2850/cat.codelearn.android.dev V/FA: Connecting to remote service | |
2020-10-29 09:01:12.716 2805-2850/cat.codelearn.android.dev V/FA: Connection attempt already in progress | |
2020-10-29 09:01:12.732 2805-2850/cat.codelearn.android.dev D/FA: Connected to remote service | |
2020-10-29 09:01:12.739 2805-2850/cat.codelearn.android.dev V/FA: Processing queued up service tasks: 2 | |
2020-10-29 09:01:13.181 2805-2812/cat.codelearn.android.dev I/zygote: Do partial code cache collection, code=29KB, data=19KB | |
2020-10-29 09:01:13.183 2805-2812/cat.codelearn.android.dev I/zygote: After code cache collection, code=26KB, data=17KB | |
2020-10-29 09:01:13.183 2805-2812/cat.codelearn.android.dev I/zygote: Increasing code cache capacity to 128KB | |
2020-10-29 09:01:14.880 2805-2868/cat.codelearn.android.dev I/TransportRuntime.CctTransportBackend: Status Code: 200 | |
2020-10-29 09:01:14.881 2805-2868/cat.codelearn.android.dev I/TransportRuntime.CctTransportBackend: Content-Type: application/json; charset=UTF-8 | |
2020-10-29 09:01:14.882 2805-2868/cat.codelearn.android.dev I/TransportRuntime.CctTransportBackend: Content-Encoding: gzip | |
2020-10-29 09:01:14.972 2805-2868/cat.codelearn.android.dev D/TransportRuntime.SQLiteEventStore: Storing event with priority=HIGHEST, name=FIREBASE_CRASHLYTICS_REPORT for destination cct | |
2020-10-29 09:01:15.021 2805-2868/cat.codelearn.android.dev D/TransportRuntime.JobInfoScheduler: Scheduling upload for context TransportContext(cct, HIGHEST, MSRodHRwczovL2NyYXNobHl0aWNzcmVwb3J0cy1wYS5nb29nbGVhcGlzLmNvbS92MS9maXJlbG9nL2xlZ2FjeS9iYXRjaGxvZ1xBSXphU3lCcnBTWVQ0RkZMMDlyZUhKaTZIOUZZZGVpU25VVE92Mk0=) with jobId=-519359591 in 29883ms(Backend next call timestamp 1603958504897). Attempt 1 | |
2020-10-29 09:01:17.981 2805-2850/cat.codelearn.android.dev V/FA: Inactivity, disconnecting from the service | |
2020-10-29 09:01:44.970 2805-2868/cat.codelearn.android.dev D/TransportRuntime.CctTransportBackend: Making request to: https://crashlyticsreports-pa.googleapis.com/v1/firelog/legacy/batchlog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment