Skip to content

Commit

Permalink
Update version to 4.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Dozor committed Dec 13, 2017
1 parent 566761c commit 3f9367d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You can grab the Core SDK via Maven Central. Please reference the badge above an

```groovy
dependencies {
compile 'com.mparticle:android-core:4.16.12'
compile 'com.mparticle:android-core:4.17.0'
}
```

Expand All @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit
```groovy
dependencies {
compile (
'com.mparticle:android-example-kit:4.16.12',
'com.mparticle:android-another-kit:4.16.12'
'com.mparticle:android-example-kit:4.17.0',
'com.mparticle:android-another-kit:4.17.0'
)
}
```
Expand Down Expand Up @@ -71,15 +71,15 @@ Kit | Maven Artifact
The Google Play Services Ads framework is necessary to collect the Android Advertisting ID. AAID collection is required by all attribution and audience integrations, and many other integrations. Include the `-ads` artifact, a subset of [Google Play Services](https://developers.google.com/android/guides/setup):

```groovy
compile 'com.google.android.gms:play-services-ads:9.0.0'
implementation 'com.google.android.gms:play-services-ads:11.6.2'
```

##### Google Cloud Messaging

mParticle supports several marketing automation and push messaging integrations. These require that mParticle register for an instance id (formely known as a push registration token) using the Google Play Services Cloud Messaging framework. Include the `-gcm` artifact, a subset of [Google Play Services](https://developers.google.com/android/guides/setup):
mParticle supports several marketing automation and push messaging integrations. These require that mParticle register for an Instance Id using the Firebase Cloud Messaging framework:

```groovy
compile 'com.google.android.gms:play-services-gcm:9.0.0'
implementation 'com.google.firebase:firebase-messaging:11.6.2'
```

### Google Play Install Referrer
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {

allprojects {
group = 'com.mparticle'
version = '4.16.12-SNAPSHOT'
version = '4.17.0-SNAPSHOT'
if (project.hasProperty('isRelease') && project.isRelease) {
version = version.toString().replace("-SNAPSHOT", "")
}
Expand Down

0 comments on commit 3f9367d

Please sign in to comment.