[Docs] Google Transactions


#1

Learn how to sell digital and physical goods in your Google Actions by using Google Transactions.


This is a companion discussion topic for the original entry at https://www.jovo.tech/docs/google-assistant/transactions

#2

Is Integrating with Android SDK still required? The Jovo documentation contains the following line:

* Add <uses-permission android:name="com.android.vending.BILLING" /> to the AndroidManifest.xml file

image

However, I see no mention of Android Manifest in Google Documentation:

https://developers.google.com/actions/transactions/digital/dev-guide-digital

Does anyone from the Jovo team have clarity on this?


#3

Getting an error when I try to pull the subscription using this.$googleAction.$transaction.getSubscriptions(“sku”)

"Error: getSkus needs the Android App package name"

Looks like I’m getting caught in

if (!this.googleAssistant.config.transactions || !this.googleAssistant.config.transactions.androidPackageName) {
        throw new jovo_core_1.JovoError('getSkus needs the Android App package name', jovo_core_1.ErrorCode.ERR, 'jovo-platform-googleassistant');
    }

Seems like I need to include something in the config file but not exactly sure what or where. I can make a separate post about this if need be but seemed relevant


#4

hello, did you find a solution to config problem? I’m trying to implement Digital Goods transactions too, and got stuck here as well.