Ricerca…


Consumabili acquisti in-app

I prodotti gestiti consumabili sono prodotti che possono essere acquistati più volte, ad esempio valuta del gioco, vite del gioco, power-up, ecc.

In questo esempio, implementeremo 4 diversi prodotti gestiti consumabili "item1", "item2", "item3", "item4" .

Passaggi in sintesi:

  1. Aggiungi la libreria di fatturazione in-app al tuo progetto (file AIDL).
  2. Aggiungi l'autorizzazione richiesta nel file AndroidManifest.xml .
  3. Distribuisci un apk firmato a Google Developers Console.
  4. Definisci i tuoi prodotti.
  5. Implementa il codice.
  6. Prova la fatturazione in-app (opzionale).

Passo 1:

Prima di tutto, dovremo aggiungere il file AIDL al tuo progetto come spiegato chiaramente nella documentazione di Google qui .

IInAppBillingService.aidl è un file AIDL (Android Interface Definition Language) che definisce l'interfaccia al servizio di fatturazione in-app versione 3. Utilizzerai questa interfaccia per fare richieste di fatturazione invocando le chiamate al metodo IPC.

Passo 2:

Dopo aver aggiunto il file AIDL, aggiungi l'autorizzazione BILLING in AndroidManifest.xml :

<!-- Required permission for implementing In-app Billing -->
<uses-permission android:name="com.android.vending.BILLING" />

Passaggio 3:

Genera un apk firmato e caricalo su Google Developers Console. Questo è necessario per iniziare a definire i nostri prodotti in-app.

Passaggio 4:

Definisci tutti i tuoi prodotti con ID prodotto diverso e imposta un prezzo per ognuno di essi. Esistono 2 tipi di prodotti (Prodotti gestiti e Abbonamenti). Come già detto, implementeremo 4 diversi prodotti gestibili consumabili "item1", "item2", "item3", "item4" .

Passaggio 5:

Dopo aver eseguito tutti i passaggi precedenti, sei pronto per iniziare a implementare il codice stesso nella tua attività.

Attività principale:

public class MainActivity extends Activity {

    IInAppBillingService inAppBillingService;
    ServiceConnection serviceConnection;

    // productID for each item. You should define them in the Google Developers Console.
    final String item1 = "item1";
    final String item2 = "item2";
    final String item3 = "item3";
    final String item4 = "item4";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Instantiate the views according to your layout file.
        final Button buy1 = (Button) findViewById(R.id.buy1);
        final Button buy2 = (Button) findViewById(R.id.buy2);
        final Button buy3 = (Button) findViewById(R.id.buy3);
        final Button buy4 = (Button) findViewById(R.id.buy4);

        // setOnClickListener() for each button.
        // buyItem() here is the method that we will implement to launch the PurchaseFlow.
        buy1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                buyItem(item1);
            }
        });

        buy2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                buyItem(item2);
            }
        });

        buy3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                buyItem(item3);
            }
        });

        buy4.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                buyItem(item4);
            }
        });

        // Attach the service connection.
        serviceConnection = new ServiceConnection() {
            @Override
            public void onServiceDisconnected(ComponentName name) {
                inAppBillingService = null;
            }

            @Override
            public void onServiceConnected(ComponentName name, IBinder service) {
                inAppBillingService = IInAppBillingService.Stub.asInterface(service);
            }
        };

        // Bind the service.
        Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
        serviceIntent.setPackage("com.android.vending");
        bindService(serviceIntent, serviceConnection, BIND_AUTO_CREATE);

        // Get the price of each product, and set the price as text to
        // each button so that the user knows the price of each item.
        if (inAppBillingService != null) {
            // Attention: You need to create a new thread here because
            // getSkuDetails() triggers a network request, which can
            // cause lag to your app if it was called from the main thread.
            Thread thread = new Thread(new Runnable() {
                @Override
                public void run() {
                    ArrayList<String> skuList = new ArrayList<>();
                    skuList.add(item1);
                    skuList.add(item2);
                    skuList.add(item3);
                    skuList.add(item4);
                    Bundle querySkus = new Bundle();
                    querySkus.putStringArrayList("ITEM_ID_LIST", skuList);

                    try {
                        Bundle skuDetails = inAppBillingService.getSkuDetails(3, getPackageName(), "inapp", querySkus);
                        int response = skuDetails.getInt("RESPONSE_CODE");

                        if (response == 0) {
                            ArrayList<String> responseList = skuDetails.getStringArrayList("DETAILS_LIST");

                            for (String thisResponse : responseList) {
                                JSONObject object = new JSONObject(thisResponse);
                                String sku = object.getString("productId");
                                String price = object.getString("price");

                                switch (sku) {
                                    case item1:
                                        buy1.setText(price);
                                        break;
                                    case item2:
                                        buy2.setText(price);
                                        break;
                                    case item3:
                                        buy3.setText(price);
                                        break;
                                    case item4:
                                        buy4.setText(price);
                                        break;
                                }
                            }
                        }
                    } catch (RemoteException | JSONException e) {
                        e.printStackTrace();
                    }
                }
            });
            thread.start();
        }
    }

    // Launch the PurchaseFlow passing the productID of the item the user wants to buy as a parameter.
    private void buyItem(String productID) {
        if (inAppBillingService != null) {
            try {
                Bundle buyIntentBundle = inAppBillingService.getBuyIntent(3, getPackageName(), productID, "inapp", "bGoa+V7g/yqDXvKRqq+JTFn4uQZbPiQJo4pf9RzJ");
                PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
                startIntentSenderForResult(pendingIntent.getIntentSender(), 1003, new Intent(), 0, 0, 0);
            } catch (RemoteException | IntentSender.SendIntentException e) {
                e.printStackTrace();
            }
        }
    }

    // Unbind the service in onDestroy(). If you don’t unbind, the open
    // service connection could cause your device’s performance to degrade.
    @Override
    public void onDestroy() {
        super.onDestroy();
        if (inAppBillingService != null) {
            unbindService(serviceConnection);
        }
    }

    // Check here if the in-app purchase was successful or not. If it was successful,
    // then consume the product, and let the app make the required changes.
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == 1003 && resultCode == RESULT_OK) {

            final String purchaseData = data.getStringExtra("INAPP_PURCHASE_DATA");

            // Attention: You need to create a new thread here because
            // consumePurchase() triggers a network request, which can
            // cause lag to your app if it was called from the main thread.
            Thread thread = new Thread(new Runnable() {
                @Override
                public void run() {
                    try {
                        JSONObject jo = new JSONObject(purchaseData);
                        // Get the productID of the purchased item.
                        String sku = jo.getString("productId");
                        String productName = null;

                        // increaseCoins() here is a method used as an example in a game to
                        // increase the in-game currency if the purchase was successful.
                        // You should implement your own code here, and let the app apply
                        // the required changes after the purchase was successful.
                        switch (sku) {
                            case item1:
                                productName = "Item 1";
                                increaseCoins(2000);
                                break;
                            case item2:
                                productName = "Item 2";
                                increaseCoins(8000);
                                break;
                            case item3:
                                productName = "Item 3";
                                increaseCoins(18000);
                                break;
                            case item4:
                                productName = "Item 4";
                                increaseCoins(30000);
                                break;
                        }

                        // Consume the purchase so that the user is able to purchase the same product again.
                        inAppBillingService.consumePurchase(3, getPackageName(), jo.getString("purchaseToken"));
                        Toast.makeText(MainActivity.this, productName + " is successfully purchased. Excellent choice, master!", Toast.LENGTH_LONG).show();
                    } catch (JSONException | RemoteException e) {
                        Toast.makeText(MainActivity.this, "Failed to parse purchase data.", Toast.LENGTH_LONG).show();
                        e.printStackTrace();
                    }
                }
            });
            thread.start();
        }
    }
}

Passaggio 6:

Dopo aver implementato il codice, puoi testarlo distribuendo l'apk al canale beta / alfa e consentire ad altri utenti di testare il codice per te. Tuttavia, non è possibile effettuare veri acquisti in-app mentre ci si trova in modalità di test. Devi pubblicare la tua app / gioco prima su Play Store in modo che tutti i prodotti siano completamente attivati.

Maggiori informazioni sulla verifica della fatturazione in-app possono essere trovate qui .

(Terze parti) Libreria in-app v3

Passaggio 1: Prima di tutto, segui questi due passaggi per aggiungere funzionalità dell'app:

1. Aggiungi la libreria usando:

 repositories {
            mavenCentral()
        }
        dependencies {
           compile 'com.anjlab.android.iab.v3:library:1.0.+'
        }

2. Aggiungi permesso nel file manifest.

<uses-permission android:name="com.android.vending.BILLING" />

Passaggio 2: inizializza il tuo processore di fatturazione:

BillingProcessor bp = new BillingProcessor(this, "YOUR LICENSE KEY FROM GOOGLE PLAY CONSOLE HERE", this);

e implementare Billing Handler: BillingProcessor.IBillingHandler che contiene 4 metodi: a. onBillingInitialized (); b. onProductPurchased (String productId, TransactionDetails details): qui è dove devi gestire le azioni da eseguire dopo l'acquisto riuscito c. onBillingError (int errorCode, Throwable error): gestisce qualsiasi errore si è verificato durante il processo di acquisto d. onPurchaseHistoryRestored (): per ripristinare gli acquisti di app

Passaggio 3: come acquistare un prodotto.

Per acquistare un prodotto gestito:

bp.purchase(YOUR_ACTIVITY, "YOUR PRODUCT ID FROM GOOGLE PLAY CONSOLE HERE");

E per acquistare un abbonamento:

bp.subscribe(YOUR_ACTIVITY, "YOUR SUBSCRIPTION ID FROM GOOGLE PLAY CONSOLE HERE");

Passaggio 4: consumo di un prodotto.

Per consumare un prodotto è sufficiente chiamare il metodo consumePurchase.

bp.consumePurchase ("IL TUO ID PRODOTTO DALLA CONSOLE DI GOOGLE PLAY QUI");

Per altri metodi relativi a in github visita app



Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow