Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fcm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Add dependency to the application level `build.gradle` file.
```groovy
dependencies {
implementation 'com.parse:parse-android:latest.version.here'
implementation 'com.parse:parse-android-fcm:latest.version.here'
implementation 'com.parse:parse-fcm-android:latest.version.here'
}
```
Then, follow Google's docs for [setting up an Firebase app](https://firebase.google.com/docs/android/setup). Although the steps are different for setting up FCM with Parse, it is also a good idea to read over the [Firebase FCM Setup](https://firebase.google.com/docs/cloud-messaging/android/client).
Expand Down
2 changes: 1 addition & 1 deletion gcm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add dependency to the application level `build.gradle` file.
```groovy
dependencies {
implementation 'com.parse:parse-android:latest.version.here'
implementation 'com.parse:parse-android-gcm:latest.version.here'
implementation 'com.parse:parse-gcm-android:latest.version.here'
}
```
You will then need to register some things in your manifest, firstly, the GCM sender ID:
Expand Down
2 changes: 1 addition & 1 deletion gcm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ group = 'com.parse'

ext {
projDescription = 'Parse Android GCM support.'
artifact = 'parse-android-gcm'
artifact = 'parse-gcm-android'
projName = 'Parse-Android'
gitLink = 'https://github.com/parse-community/Parse-SDK-Android'
}
Expand Down