... | ... | @@ -5,6 +5,17 @@ Please refer to each individual version step when migrating to a newer SDK. .x r |
|
|
|
|
|
The [[main integration document|Integration-guide]] always describes the most up-to-date integration requirements.
|
|
|
|
|
|
## Upgrade to 1.6.1
|
|
|
|
|
|
When using the .JAR release with manual declarations in your `AndroidManifest.xml`, ensure that the GCM `permission` and `uses-permission` include your unique package name (instead of the placeholder `<YOUR-PACKAGE-NAME>`):
|
|
|
```
|
|
|
<permission
|
|
|
android:name="<YOUR-PACKAGE-NAME>.permission.C2D_MESSAGE"
|
|
|
android:protectionLevel="signature" />
|
|
|
<uses-permission android:name="<YOUR-PACKAGE-NAME>.permission.C2D_MESSAGE" />
|
|
|
````
|
|
|
The .AAR version (with Gradle) automatically injects the proper application id in the permission name, starting with this release.
|
|
|
|
|
|
## Upgrade to 1.6.0
|
|
|
|
|
|
The SDK was split into a core part and a connection part specific to the Play Services library that the application wants to use. This allows, for example, to stay at Play Services 6.5 while still upgrading to the latest B4S version.
|
... | ... | |