Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation - Replace deprecated gradle compile with implementation #254

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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ Add the following dependencies:

*core:*

compile "com.badlogicgames.gdxpay:gdx-pay-client:$gdxPayVersion"
implementation "com.badlogicgames.gdxpay:gdx-pay-client:$gdxPayVersion"

*html:*

compile "com.badlogicgames.gdxpay:gdx-pay:$gdxPayVersion:sources"
compile "com.badlogicgames.gdxpay:gdx-pay-client:$gdxPayVersion:sources"
implementation "com.badlogicgames.gdxpay:gdx-pay:$gdxPayVersion:sources"
implementation "com.badlogicgames.gdxpay:gdx-pay-client:$gdxPayVersion:sources"

You also need to add the following file to your GdxDefinition.gwt.xml in your html project:

Expand Down
2 changes: 1 addition & 1 deletion gdx-pay-android-amazon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Handles purchases and restores for non-consumable and consumable products, will

*android:*

compile "com.badlogicgames.gdxpay:gdx-pay-android-amazon:$gdxPayVersion"
implementation "com.badlogicgames.gdxpay:gdx-pay-android-amazon:$gdxPayVersion"


### ProGuard configuration
Expand Down
2 changes: 1 addition & 1 deletion gdx-pay-android-googlebilling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Subscriptions are supported with some limitations: the first `SubscriptionOfferD

*android:*

compile "com.badlogicgames.gdxpay:gdx-pay-android-googlebilling:$gdxPayVersion"
implementation "com.badlogicgames.gdxpay:gdx-pay-android-googlebilling:$gdxPayVersion"


### ProGuard configuration
Expand Down
2 changes: 1 addition & 1 deletion gdx-pay-android-huawei/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ It manages purchases, restores and consumption for consumable, non-consumable an

*android:*

compile "com.badlogicgames.gdxpay:gdx-pay-android-huawei:$gdxPayVersion"
implementation "com.badlogicgames.gdxpay:gdx-pay-android-huawei:$gdxPayVersion"


### ProGuard configuration
Expand Down
2 changes: 1 addition & 1 deletion gdx-pay-iosrobovm-apple/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Dependencies

compile "com.badlogicgames.gdxpay:gdx-pay-iosrobovm-apple:$gdxPayVersion"
implementation "com.badlogicgames.gdxpay:gdx-pay-iosrobovm-apple:$gdxPayVersion"

### Instantiation

Expand Down
Loading