GithubHelp home page GithubHelp logo

hms-core / hms-iap-clientdemo-android-studio Goto Github PK

View Code? Open in Web Editor NEW
42.0 17.0 15.0 2.28 MB

This demo app provides all 3 types of product to demonstrate the procedure and capability of Huawei IAP.

Home Page: https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides/introduction-0000001050033062?ha_source=hms1

License: Apache License 2.0

Java 100.00%
hms huawei purchase pay in-app-purchase android

hms-iap-clientdemo-android-studio's Introduction

Huawei In-App Purchases (IAP) Demo

English | 中文

The iap_demo App demonstrates Huawei In-App Purchases (IAP) client APIs and usages.

Documentation can be found at this link.

Table of Content

Introduction

Huawei In-App Purchases provides 3 types of product: consumable, non-consumable and auto-renewable subscription.

  • Consumable : Consumables are product that can be consumed once. When consumed, it's depleted and can be purchased again.

  • Non-consumable : Non-consumables can be only purchased once and do not expire.

  • Auto-renewable subscription : Once purchased, Users can access to value-added functions or content in a specified period of time. The subscriptions will automatically renew on a recurring basis until users decide to cancel.

This demo app provides all 3 types of product to demonstrate the procedure and capability of Huawei IAP.

Disclaimer: The demo only demonstrates the purchase procedure, and it does not have a real use of purchased products.

You also can use HMS Toolkit to quickly integrate the kit and run the demo project, as well as debug the app using a remote device for free. For details, please visit https://developer.huawei.com/consumer/en/doc/development/Tools-Guides/getting-started-0000001077381096.

Getting Started

  1. Check whether the Android studio development environment is ready. Open the sample code project directory with file "build.gradle" in Android Studio.

  2. Finish the configuration in AppGallery Connect. See details: Configuring AppGallery Connect

  3. Add your products on the AppGallery Connect. See details: Configuring In-App Product Information

  4. To build this demo, please first import the demo in the Android Studio.

  5. Configure the sample code:

    • Download the file "agconnect-services.json" of the app on AGC, and add the file to the app root directory(\app) of the demo.
    • Add the certificate file to the project and add your configuration to in the app-level build.gradle file.
    • Open the app-level build.gradle file, and change the value of applicationId to your app package name.
    • Replace the PUBLIC_KEY in the CipherUtil class with the public key of your app. For details about how to obtain the public key, please refer to Querying IAP Information.
    • Replace products in the demo with your products.
  6. Run the sample on your Android device or emulator.

Supported Environments

  • JDK version: 1.8 or later
  • Android Studio version: 3.6.1 or later

Result

Once you start the demo, you should be able to see the following page.

demo home page

Purchasing consumable product

The demo provides gem as an example of consumable product.

  1. Tap Consumable products, you should be able to see the home page for consumable demo. The demo will call the obtainProductInfo API, to query the detail of managed products. (And also retries consumeOwnedPurchase, see below.)

    consumable demo page
  2. Tap 5 gems, the demo will call the createPurchaseIntent API, and jump to the checkout page which is provided by IAP Service.

    consumable payment selection
  3. Once payment finishes, the consumable demo will increase user's gems counter and call consumeOwnedPurchase API to notify Huawei IAP Service that user has consumed the purchase.

    gem purchase result

    Note: If an exception (such as network error or process termination) occurs after a successful payment, the demo app will attempt to update the gem count when you re-enter the page. (Using obtainOwnedPurchases API to obtain consumable purchases and consumeOwnedPurchase to retry consuming purchases)

    Note: In production you should validate the result on server side (deliver the purchase) before calling consumeOwnedPurchase.

  4. Tap History, the demo will call the obtainOwnedPurchaseRecord API to obtain the purchase history.

    consumable purchase history

Purchasing non-consumable product

The demo provides hidden level as an example of non-consumable product.

  1. Tap the Non-consumable product, you should be able to see the home page for non-consumable demo. The demo will call the obtainOwnedPurchases API to obtain purchased non-consumable product.

  2. Assuming you have not purchased the hidden level, you will see the following screenshot. Tap hidden level to start the purchase procedure (which is the same as purchasing consumable product).

    hidden level not purchased
  3. After the purchase finishes (Or you have purchased the hidden level before), the demo will display the hidden level as purchased.

    hidden level have been purchased

Purchasing auto-renewable subscription service

The demo provides Service-One and Service-Two as examples of subscription group, each contains 2 options of auto-renewable subscription.

(For more detail of subscription and subscription group, see related documentation.)

  1. Tap the Auto-renewable subscription, you should be able to see the home page for auto-renewable subscription demo. The demo will call the obtainOwnedPurchase API to obtain purchased subscription product. Active subscription will be displayed as ACTIVE.

    subscription homepage with active subscription
  2. Tap one of BUY buttons, the demo will start the purchase procedure by calling createPurchaseIntent.

    subscription payment selection

    Note: currently we only support Alipay for subscription payment.

  3. You will be prompted to authorize automatic fee deduction agreement. Once purchase succeed, IAP Service will display the purchase result.

    subscription payment selection
  4. Tap Manage Subscription, the demo will jump to subscription manage page. The page will list all subscribed products, including expired subscriptions.

    subscription manage
  5. Tap Happy Subscribe on Subscription manage page, you will be able to edit subscription and choose other subscription options in same subscription group, or tap UNSUBSCRIBE to cancel the subscription. The subscription will remain valid until the expire date.

    edit subscription

Question or issues

If you want to evaluate more about HMS Core, r/HMSCore on Reddit is for you to keep up with latest news about HMS Core, and to exchange insights with other developers.

If you have questions about how to use HMS samples, try the following options:

  • Stack Overflow is the best place for any programming questions. Be sure to tag your question with huawei-mobile-services.
  • Huawei Developer Forum HMS Core Module is great for general questions, or seeking recommendations and opinions.

If you run into a bug in our samples, please submit an issue to the Repository. Even better you can submit a Pull Request with a fix.

Licensing

This demo is licensed under the Apache License, version 2.0.

hms-iap-clientdemo-android-studio's People

Contributors

fqyuan avatar iap-git avatar jl202209 avatar mike-mei avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

hms-iap-clientdemo-android-studio's Issues

obtainProductInfo() returns empty list

I'm requesting product info and getting empty result.getProductInfoList():

Снимок экрана 2021-01-14 в 1 07 49

In the logs i can see:

E/hms_pay: AgreementHelper inconsistent countries -> signCountry = , currentCountry =

Here is the full log for "hms_pay" tag:
productinfo.txt.zip

Merchant service agreement is signed.
IAP service agreement is signed and IAP products are added in Huawei console.
IAP service API is enabled, Analytics service API is also enabled.
The test user is logged to Huawei account on the device and isEnvReady() and obtainOwnedPurchaseRecord() succeed.
Requested price type is set according to what is set in feature in the console (non_consumable).

What's wrong?

I'm sure i request for the right productID, but just out of curiosity i've also tried for inexisting productID and got the same "success" response.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.