0.0.7 • Published 11 months ago

emi-indo-cordova-plugin-iap v0.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

emi-indo-cordova-plugin-iap

Cordova Plugin cordova plugin In App Purchase

Support ( Consumable | Non-consumable | Subscriptions )

SDK (billing_version = 6.0.0) Release Notes:

Note

  • It's Not a fork, it's purely rewritten, clean of 3rd party code.

💰Sponsor this project

PayPal

Features

As per original sample:

  • SDK Initialize a BillingClient
  • Show products available to buy
  • Launch the purchase flow
  • Processing purchases
  • Fetching purchases
  • Fetching purchase history

Plugin Installation

cordova plugin add emi-indo-cordova-plugin-iap

Or

cordova plugin add https://github.com/EMI-INDO/emi-indo-cordova-plugin-iap

Remove

cordova plugin rm emi-indo-cordova-plugin-iap

Tabel Response Code = number

CodeDescription
0OK
1USER_CANCELED
2SERVICE_UNAVAILABLE
3BILLING_UNAVAILABLE
4ITEM_UNAVAILABLE
5DEVELOPER_ERROR
6ERROR
7ITEM_ALREADY_OWNED
8ITEM_NOT_OWNED
-1SERVICE_DISCONNECTED
-2FEATURE_NOT_SUPPORTED
12NETWORK_ERROR

Initialize

cordova.plugins.emiInAppPurchase.initialize(

(result) => { 

  alert(result) // = 0
  
},
 (error) => { 
 
 alert(error) // = Check the table

)

purchase Products

Note

  • isConsumable = boolean
  • if true (consumable) Products can be bought back, productType must be Non-consumable
  • if false Product cannot be repurchased, productType: Non-consumable | Subscriptions
    cordova.plugins.emiInAppPurchase.purchaseProducts(
    
    productType = "Non-consumable", // string (Non-consumable | Subscriptions)
    productId = "id",
    isConsumable = true, // boolean
    title = "title",
    description = "description",
    
    (result) => { 
    
    if (result === 0){
    console.log("Give content to the user.")
    }
    alert(result) // = 0
    }
    },
    (error) => { 
    // 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -1 | -2 | 12 
   
     switch (error) {
      case 1:
      console.log("Check the table Description")
      break
      case 2:
      console.log("Check the table Description")
      break
      case 7:
      console.log("Call Restore purchase")
      break
      // and so on
     }
    // alert(error)
    
    })

Get Product Detail

Note

  • position = String
  • value = ProductId | Title | Description | Item_Price | Any
cordova.plugins.emiInAppPurchase.getProductDetail(

    productType = "Non-consumable", // string (Non-consumable | Subscriptions)
    productId = "id",
    position = "ProductId", 
    (result) => { alert(result) },
    (error) => { alert(error)

    });

Get Purchase History

Note

  • position = String
  • value = Purchase_Token | Original_Json | Quantity | Signature | Developer_Payload | Products | Purchase_Time | Any
cordova.plugins.emiInAppPurchase.getPurchaseHistory(

    productType = "Non-consumable", // string (Non-consumable | Subscriptions)
    position = "Purchase_Token", 
    (result) => { alert(result) },
    (error) => { alert(error)

    });

Restore Purchases

Note

  • position = String
  • value = OrderId | Purchase_Token | Package_Name | Purchase_Time | Purchase_State | Quantity | Signature | Original_Json | ProductId | Any
cordova.plugins.emiInAppPurchase.restorePurchases(

    productType = "Non-consumable", // string (Non-consumable | Subscriptions)
    position = "OrderId", 
    (result) => { alert(result) },
    (error) => { alert(error)

    });

Support Platform ( Android )

Coming soon Plugin ( Store user purchase data )

  • Firebase Authentication
  • Firebase Realtime Database

💰Sponsor this project

PayPal