stripe-payments
Stripe – How to handle subscription with a free plan and no credit card required at sign up time
In part 2 where you do this: We set up a webhook to receive stripe events so after 30 days our webhook should receive a customer.subscription.updated event with a object.status == active am I right? You might also consider implementing the customer.subscription.trial_will_end webhook, this webhook will be sent three days before the customers trial is … Read more
Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.15
Changing this in file build.gradle solved my problem. From ext.kotlin_version = ‘1.3.50’ to ext.kotlin_version = ‘1.6.0’ Or whatever the latest version of Kotlin available and make sure to update Kotlin version on Android Studio as well.
cURL error 60: SSL certificate: unable to get local issuer certificate
How to solve this problem: download and extract cacert.pem following the instructions at https://curl.se/docs/caextract.html save it on your filesystem somewhere (for example, XAMPP users might use C:\xampp\php\extras\ssl\cacert.pem) in your php.ini, put this file location in the [curl] section (putting it in the [openssl] section is also a good idea): [curl] curl.cainfo = “C:\xampp\php\extras\ssl\cacert.pem” [openssl] openssl.cafile … Read more