Version: 5.5
Configuración para tienda Tizen
Codeless IAP

Configuring for CloudMoolah Moo Store

Introducción

This guide describes the process of establishing the digital records and relationships necessary for a Unity game to interact with an In-App Purchase Store. The Unity IAP purchasing API is targeted.

In-App Purchase (IAP) is the process of transacting money for digital goods. A platform’s Store allows purchase of Products, representing digital goods. These Products have an Identifier, typically of string data type. Products have Types to represent their durability: subscription, consumable (capable of being rebought), and non-consumable (capable of being bought only once) are the most common.

CloudMoolah Moo Store

CloudMoolah Developer Portal website: dev.cloudmoolah.com

Empezando

  1. Write a game implementing Unity IAP. See Unity IAP Initialization and Integrating Unity IAP with your game.
  2. Keep the game’s product identifiers to hand for use in the Moo Store later. Note that the appKey and hashKey are discussed later in this document.
  3. Configure the Android target to CloudMoolah to ensure that store is accessed when a purchase is attempted. Alternatively, call the Editor API: UnityPurchasingEditor.TargetAndroidStore(AndroidStore.CloudMoolah);
  4. After initialization of Unity IAP, inside the game’s IStoreListener.OnInitialized implementation, add digital wallet integration. Do this by adding calls to IMoolahExtensions. Register prototyping the password with Unity’s SystemInfo.deviceUniqueIdentifier, collecting the username result string and passing that as well as the password into IMoolahExtensions.Login. See the scripting documentation in the CloudMoolah Store for further discussion of registration and login.
  5. Build a signed non-Development Build Android APK from your game. See documentation on getting started with Android development to learn more.

Tip: Take special precautions to safely store your keystore file. The original keystore is always required to update a published application.

Registre la aplicación

Register the application at the CloudMoolah Developer Portal website: http://dev.cloudmoolah.com/

  1. Choose Add New App

  2. Input game server information if defining an “Online” connected game.

Propiedad: Función:
DataFeedURL_Stage URL for redemption - test environment.
DataFeedURL_Prod URL for redemption - production environment.
Testing Account Account name for test environment.
Testing Password Password for test environment.
  1. Copy the appKey and hashKey into your application

Add In-App Purchases (IAP)

Add in-app purchases for this application at the CloudMoolah Developer Portal (dev.cloudmoolah.com).

  1. Choose Add New Item

Pruebe IAP

The CloudMoolah Game Store supports testing via enabling a “Developer mode” in the app before making purchases. This special build of the game provides a fake offline store which performs performs fake purchases. This does not incur real-world monetary costs related to the product, and allows you to test the app’s purchasing logic.

Modify the game’s Unity IAP integration, adding the following line after creating the ConfigurationBuilder instance, then build and run the app, testing its in-app purchasing logic:

builder.Configure<IMoolahConfiguration>().SetMode(CloudMoolahMode.AlwaysSucceed); // TESTING: auto-approves all transactions

You can also configure this to fail all transactions for testing error handling via the CloudMoolahMode.AlwaysFailed enumeration.

Note: When testing is complete, make sure you remove the SetMode line disable Developer mode by using the CloudMoolahMode.Production enumeration. This ensures users pay real-world money when the app is in use.

Configuración para tienda Tizen
Codeless IAP