I want to integrate In-App billing in the free version of my game, to allow user purchase the full version from the free version itself. I already got In-App billing working and I could easily make additional items in game available. The problem is I don't know what to do to start download of full version of the game and to actually purchase the full version from the market.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Handling ffmpeg library interface change when upgr
To the best of my understanding, you can't use IAB to purchase a different application (full vs free). It's only used for purchasing 'items' for that particular application. What you could do is use it to:
I'm guessing 1 and 3 will be most popular. 2 requires separate server for content, but once you have a server you can also better secure your purchases (have the server run the verify step, so your public key doesn't exist inside the app), and the content could be 'server-signed' for just that device/user-account (or something similar, so can't just copy content to another device).