6

I have seen the RevMob SDK and a few other things that I have gotten to work, but I want to use Admob so that I can get paid directly through Google. I know that Kivy uses Python for Android, so is there a way I could use Admob in Kivy?

Also, I saw this question, but it had no answers, and was poorly written.

Community
  • 1
  • 1
Pip
  • 4,387
  • 4
  • 23
  • 31
  • I see you tagged this as python-3.x. You should be aware that python-for-android does not yet work with Python3+. – brousch Feb 14 '14 at 19:19
  • Thank you @brousch! I usually develop in python 3, but am currently using Python 2 for this project, the tag was a mistake. – Pip Feb 17 '14 at 22:01
  • Some one already has implemented it but hasn't (yet) published the source code. https://play.google.com/store/apps/details?id=fr.alborini.admob4kivy – Wally Dec 04 '15 at 15:34
  • 2
    I found a Step by step tutorial at http://www.theseusmedia.com/blogs/code . I'm currently testing it. I'll post it as an answer if it works. – Wally Feb 24 '16 at 04:52
  • @Wally good to know, thanks! – Pip Feb 24 '16 at 18:29

1 Answers1

1

The answer right now is "maybe". As far as I know, no one has tried it yet. You would have to use pyjnius to access the Android/Admob API.

brousch
  • 1,064
  • 5
  • 10
  • I am working on this now, actually. When I saw the new Kivy Crash Course (#12), I thought of the same thing, as Alexander Taylor shows how to use pyjnius in it. – Pip Feb 17 '14 at 22:02
  • Cool. Let us know how it went. – brousch Feb 20 '14 at 15:32