We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c853113 commit afb4182Copy full SHA for afb4182
fcm/build.gradle
@@ -23,7 +23,7 @@ android {
23
}
24
25
dependencies {
26
- implementation project(':Parse')
+ compileOnly project(':Parse')
27
api 'com.google.firebase:firebase-messaging:12.0.1'
28
api 'com.firebase:firebase-jobdispatcher:0.8.5'
29
fcm/src/main/java/com/parse/fcm/ParseFirebaseJobService.java
@@ -32,6 +32,7 @@ public boolean onStartJob(final JobParameters job) {
32
@Override
33
public void done(ParseException e) {
34
if (e == null) {
35
+ ParseFCMParseAccess.logVerbose("FCM token saved to installation");
36
jobFinished(job, false);
37
} else {
38
ParseFCMParseAccess.logError("FCM token upload failed", e);
0 commit comments