Currently debating on using Xamarin for a project, anybody got any ideas on android billing system? ideally on the subscription service. Is it all done through play store?
Asked
Active
Viewed 1,076 times
0
-
I don't see what this has to do with Xamarin and MonoDroid. Also, FYI, they bumped up the price recently from $399 to $999 per SDK -- unless your app compiles to under 32kb of CIL (good luck with *that* requirement ...) – ashes999 Mar 14 '13 at 14:44
-
Looks like it's still $299 on the website: https://store.xamarin.com/ – cdmckay Mar 14 '13 at 14:57
-
its 299 for individuals. On the android dev site there is code samples for billing info where as on xamarins site i couldnt find any, this is what im getting at. – Jesson Atherton Mar 14 '13 at 17:32
1 Answers
1
In-app billing requires sending requests from your app to IInAppBillingService
. This requires using an AIDL file to invoke IPC method calls, but it is currently not supported by Mono for Android. However, it is still possible use AIDL in Mono for Android, but need some workarounds. Take a look at this answer.
Also, I heard there are some existing solutions to do in-app billing, check this or this.