gaishimo
gaishimo
I have the same problem on android. The Expo SDK version is 45. (expo-in-app-purchase: 13.0.0)
Perhaps I found the reason. It is because the `details` argument for Android in expo-in-app-purchase v13. https://docs.expo.dev/versions/latest/sdk/in-app-purchases/#inapppurchasespurchaseitemasyncitemid-details > Note: both ids must be provided for payments to work on Google...
The following explanation of obfuscatedAccountid and obfuscatedProfileId is helpful. https://developer.android.com/reference/com/android/billingclient/api/BillingFlowParams.Builder?hl=ja#setObfuscatedAccountId(java.lang.String) This is a mechanism to prevent fraud, but I don't think this setting should be mandatory because it is unnecessary...
In 13.1.0, you can avoid this error by passing `details` argument forcibly. ```ts await purchaseItemAsync(productId, { accountIdentifiers: { obfuscatedAccountId: null, obfuscatedProfileId: null, } as any, }); ```
Currently, you cannot add spacing betweeen circles manually. The circle sizes are calculated by values automatically. So if you want to add spacing, please set the values like below. ```...
Glad the repository was helpful to you. I have no plans to make it an npm package at this time because the contents of the widget folder vary so much...
Sounds nice! It would be great if it could be a generic config plugin.
Do you mean you want to share data with your app by App Groups? This example repository does not include that, but the following article may be helpful. https://medium.com/macoclock/data-sharing-between-app-and-app-extensions-4ffd95bf87e0 If...