📄 Instructions for Android

📋 Two step process to start selling your own game merchandise

Version: 3
Date: 01/12/2019
Process:

ℹ️ About

Monetizr is a monetization engine for mobile games. Our mission is to help game developers increase player retention, loyalty and create an additional revenue stream. Monetizr will help you to monetize your games by selling custom merchandise inside your game.

For games developed on Unity +page facing up Instructions for Unity SDK we offer a multi-platform plugin that supports both iOS and Android. However, if you have developed game on Android platform, please use the following instructions.

👨‍💻 Step 1. Create “Merch Store” view


1.1. Create a new view for the merch store. See the wireframe on the right.

1.2. For each product, create a block that consists of both, a product image and a button with the price.

1.3. Link the buttons to the correct product as described in 
Step 2.







📱 Vertical and horizontal

The merch store view can be created in both vertical and horizontal arrangements. See examples:

👨‍🚀 Step 2. Link products

2.1. Link each product section with a specific product ID. 

2.2. For each button, link the products to the price buttons by attaching the Product ID to the following URL: 


2.3. Enable user to open the link in a WebView, or send the user to the default browser when he clicks the buy button:
Intent browserIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("https://shop.themonetizr.com/products/9363636426"));
startActivity(browserIntent);