-
How would a Skip app handle in-app purchases? I couldn't find any information about this on https://skip.tools/ |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
We don't (yet) have any framework that abstracts the in-app purchase functionality on iOS (StoreKit) and Android (Google Play Billing Library). This would be a great addition to the Skip ecosystem, and we're hoping that a community effort will get underway to implement this (it would probably be similar to Flutter's high-level in_app_purchase library, which delegates to the respective low-level store_kit_wrappers and billing_client_wrappers libraries). In the meantime, you can implement this yourself by branching your platform-specific logic inside |
Beta Was this translation helpful? Give feedback.
-
@marcprux even a step before implementing the native In App Purchase API, I would suggest wrapping the Revenue Cat SDK in the same way that SkipFirebase has been, given Revenue Cat is the leading In App Library for iOS and Android and the APIs are the same (I believe). I personally use it and find the abstraction on top of In App Purchases very easy to use. |
Beta Was this translation helpful? Give feedback.
We don't (yet) have any framework that abstracts the in-app purchase functionality on iOS (StoreKit) and Android (Google Play Billing Library). This would be a great addition to the Skip ecosystem, and we're hoping that a community effort will get underway to implement this (it would probably be similar to Flutter's high-level in_app_purchase library, which delegates to the respective low-level store_kit_wrappers and billing_client_wrappers libraries).
In the meantime, you can implement this yourself by branching your platform-specific logic inside
#if SKIP
blocks, as per our Platform Customization guide. We'd be happy to help you along with this process, and be even happier to collaborat…