Skip to content
This repository was archived by the owner on May 30, 2023. It is now read-only.
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Login on Android will use the accounts signed in on the user's device.

#### Integrating Google Play Services

To set up Google Play Services version, you can use PLAY_SERVICES_VERSION parameter (with 11.8.0 value by default). It is useful in order to avoid conflicts with another plugins which use any other different version of Google Play Service, because they MUST be the same version.
To set up Google Play Services versions, you can use PLAY_SERVICES_AUTH_VERSION and PLAY_SERVICES_IDENTITY_VERSION parameters (with 15.0.1 value by default). It is useful in order to avoid conflicts with another plugin which use any other different version of Google Play Service, because they MUST be the same version.

#### Publishing your app in Google Play Store

Expand Down
7 changes: 4 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
<!-- android -->
<platform name="android">

<preference name="PLAY_SERVICES_VERSION" default="15.0.1"/>
<framework src="com.google.android.gms:play-services-auth:$PLAY_SERVICES_VERSION" />
<framework src="com.google.android.gms:play-services-identity:$PLAY_SERVICES_VERSION" />
<preference name="PLAY_SERVICES_AUTH_VERSION" default="15.0.1"/>
<preference name="PLAY_SERVICES_IDENTITY_VERSION" default="15.0.1"/>
<framework src="com.google.android.gms:play-services-auth:$PLAY_SERVICES_AUTH_VERSION" />
<framework src="com.google.android.gms:play-services-identity:$PLAY_SERVICES_IDENTITY_VERSION" />

<config-file target="res/xml/config.xml" parent="/*">
<feature name="GooglePlus">
Expand Down