dsemelianov
dsemelianov
This also appears to be happening during onMessageReceived: Fatal Exception: java.lang.IllegalAccessErrorIllegal class access ('com.parse.fcm.ParseFirebaseMessagingService' attempting to access 'com.parse.PLog') in attempt to invoke static method void com.parse.PLog.d(java.lang.String, java.lang.String) (declaration of 'com.parse.fcm.ParseFirebaseMessagingService'...
@Jawnnypoo yep, looks like it. Here's what I've got in my build.gradle: ``` compile "com.github.parse-community.Parse-SDK-Android:parse:1.18.5" compile "com.github.parse-community.Parse-SDK-Android:fcm:1.18.5" compile 'com.google.firebase:firebase-core:16.0.1' } apply plugin: 'com.google.gms.google-services' ``` and then up top under buildscript...
Also added these 2 things to my AndroidManifest.xml ``` ``` and removed the old com.parse.PushService, com.parse.GcmBroadcastReceiver, and com.parse.push.gcm_sender_id
@Jawnnypoo sorry for the late response. When I debug the app locally on my device, I can not reproduce the crash However, when I download the production version of the...
Hey @Jawnnypoo, there are no instances of Parse.setLogLevel anywhere in the project. I am using proguard in my release build, here's what the configuration looks like in my build.gradle: ```...
Not a fix but a workaround -- I ended up putting the CircleImageView inside of a RelativeLayout and changed the opacity by doing this: mRelativeLayout.setAlpha(0.5f);