Re: [mono-android] Code for people to download for in-app billing

2012-11-07 Thread Mark Eaton
've set up an unpublished app on my Google Console and was able to use real money for purchasing/refunding managed apps. I think the Monodroid version I used back then was 4.0.6. Kind regards Mark Eaton -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Cod

Re: [mono-android] What are the supported in-app purchase markets?

2012-09-07 Thread Mark Eaton
I have created another post which has links to the code in GitHub. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/What-are-the-supported-in-app-purchase-markets-tp5711633p5711736.html Sent from the Mono for Android mailing list archive at Nabble.com.

[mono-android] Code for people to download for in-app billing

2012-09-07 Thread Mark Eaton
rough and can certainly be made more elegant and user friendly. I don't much spare time on my hands, but if you can make the code more elegant and user friendly please feel free to do so. In fact doing so will be great for the MonoDroid community!! Kind regards Mark Eaton -- View this me

Re: [mono-android] What are the supported in-app purchase markets?

2012-09-01 Thread Mark Eaton
I'm currently in the process of doing in-app billing myself. I translated all the billing Java code into C#. So far it works well for the static responses I need to test as Google suggests here: http://developer.android.com/guide/google/play/billing/billing_testing.html As such it can handle billi

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-30 Thread Mark Eaton
Thanks to that Java file my C# function now works perfectly. Thanks for that!! As such I don't need to plug in the jar file. I can't believe I had to do a _data.WriteInt(1) to make it work. public Bundle SendBillingRequest(Bundle bundle) { Parcel _data = Pa

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-29 Thread Mark Eaton
Thanks Dan, I got the files. I'm looking forward trying them out tonight after work. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Binding-Services-casting-interface-on-service-connection-fails-tp5711549p5711650.html Sent from the Mono for Android mailing list a

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-28 Thread Mark Eaton
Happy that you're making progress. I too won't have a chance until tomorrow night to do more testing. Is it ok for you to send me the jar file and java file that is generated? Never tried sending files through this forum so if not possible can you please send to betterapps.markea...@gmail.com Al

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-27 Thread Mark Eaton
Damn, I was hoping you would get further :-) It surprises me that so little is talked about in-app billing. I remember reading that out of the top 20 Android apps, 18 of them use in-app billing to generate their sales. Now with subscriptions it would indicate that this is a vital revenue stream fo

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-27 Thread Mark Eaton
Well I've made some progress. The below function replaces my existing one: public Bundle SendBillingRequest(Bundle bundle) { Parcel _data = Parcel.Obtain(); Parcel reply = Parcel.Obtain(); bool bRes = false; t

Re: [mono-android] Binding Services - casting interface on service connection fails

2012-08-26 Thread Mark Eaton
Hi Dan I too am having a similar problem. I've converted all the java files to C# and am now testing. People on this forum can correct me here, but I believe you are oversimplifying the casting like I initially did. I'm using license checking code that I got back in January and a stub was created

[mono-android] Surprised that there is still no support for licensing and in-app billing

2012-08-18 Thread Mark Eaton
the-net-powered-version-of-android/ Sure this would be a simple and easy exercise for Xamarin? (or am I over simplifying this?) Kind regards Mark Eaton -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Surprised-that-there-is-still-no-support-for-licensing-and-

Re: [mono-android] New Binding Generator

2012-04-28 Thread Mark Eaton
Thanks Matt (and Nick) Installing Visual Studio 11 Beta worked! :-) -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/New-Binding-Generator-tp5623432p5673598.html Sent from the Mono for Android mailing list archive at Nabble.com.

Re: [mono-android] New Binding Generator

2012-04-28 Thread Mark Eaton
I'm using Visual Studio 2010 Professional service pack 1 (sorry should have mentioned that in my previous post) and is all up to date. Doesn't the binding generator work for this version? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/New-Binding-Generator-tp5623

Re: [mono-android] New Binding Generator

2012-04-28 Thread Mark Eaton
Hi, I'm still getting this issue with Google Analytics after the new Alpha download: 4.1.1. I'm using the JAR from this link: https://developers.google.com/analytics/devguides/collection/android/ Is there something I'm doing wrong here? The error is: BINDINGSGENERATOR : warning : failed to pars

Re: [mono-android] New Binding Generator

2012-04-24 Thread Mark Eaton
Hi Just wondering if there are any updates on this. My alpha version is still 4.1. I'm getting the same issue when using the libGoogleAnalytics.jar Regards Mark Eaton -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/New-Binding-Generator-tp5623432p5663779

Re: [mono-android] Does anyone have a code example for using Google Market Licensing with MonoDroid?

2012-01-21 Thread Mark Eaton
Thanks Jon and Tsukrov Jon I tried your example first (and I want to learn it) but it is slow going and maybe I'm out of league here :-) I am make slow progress though. Ultimately it is your example I want to come to grips with. I appreciate that you may not have time to do this (or see the releva

Re: [mono-android] Does anyone have a code example for using Google Market Licensing with MonoDroid?

2012-01-19 Thread Mark Eaton
Well I have made some progress here. I can get a pointer to a valid market license instance. Surprising I am enjoying this. Now I need to implement the call back based on a Java interface: "com/android/vending/licensing/LicenseCheckerCallback" Below is my code example. Basically I am trying to c

Re: [mono-android] Does anyone have a code example for using Google Market Licensing with MonoDroid?

2012-01-16 Thread Mark Eaton
I've started creating a C# helper class. Using JNIEnv I can get the Android Device Id. But I can't create an instance of ABESObfuscator. The signature looks right, it's just when I create the instance. The code below is more where I am up to. using System; using System.Collections.Generic; us

Re: [mono-android] Does anyone have a code example for using Google Market Licensing with MonoDroid?

2012-01-14 Thread Mark Eaton
Do you have a code example of how you did this? I would appreciate any help you can give me. -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Does-anyone-have-a-code-example-for-using-Google-Market-Licensing-with-MonoDroid-tp5144555p5145582.html Sent from the Mono fo

[mono-android] Does anyone have a code example for using Google Market Licensing with MonoDroid?

2012-01-14 Thread Mark Eaton
his into their apps? Any help would be appreciated. Kind regards Mark Eaton -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Does-anyone-have-a-code-example-for-using-Google-Market-Licensing-with-MonoDroid-tp5144555p5144555.html Sent from the Mono for Android mail

Re: [mono-android] How to Initialize text-to-speech for monodroid

2011-12-13 Thread Mark Eaton
Thanks Chris, that worked beautifully :-) ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid

Re: [mono-android] How to Initialize text-to-speech for monodroid

2011-12-13 Thread Mark Eaton
: "I wonder if monodroid TextToSpeech works, please confirm before I decide to buy the professional license". Kind regards Mark Eaton ___ Monodroid mailing list Monodroid@lists.ximian.com UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid