Posts

Showing posts from July, 2017

My Privacy Policy for Google Play Developer Console

Privacy Policy Vishal Jogiya built the In App Purchase Sample app as an Open Source app. This SERVICE is provided by Vishal Jogiya at no cost and is intended for use as is. This page is used to inform website visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at In App Purchase Sample unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable inf

Implementing In-app Billing Android

Image
Implementing In-app Billing SRC : https://developer.android.com/google/play/billing/billing_integrate.html#billing-service Demo App:   https://play.google.com/store/apps/details?id=vjs.inapppurchasessample Code Available at Github: https://github.com/VishalJogiya/InAppExample/tree/master An Important page to implement in-app purchases in your android app. Many tutorial in google documentation itself makes it confusing, which one to follow. So I, Framed this page here which include everthing you want. In this document Adding the AIDL file Updating your manifest Creating a ServiceConnection Making In-app Billing requests Querying items available for purchase Purchasing an item Querying purchased items Consuming a purchase Implementing subscriptions Securing your app Reference In-app Billing Reference (V3) Related Samples Sample Application (V3) See also Selling In-app Products Note:  To see a complete implementa

Create New Repo. with Existing Project in Android Studio

Image
Simple Steps to create new Repo in Bitbucket Android Studio's Existing Project. 1. login to bitbucket 2. Create New Repo say myExample 3. Open your project VCS option in tool bar. 4. Enable Git version Contol. 5. Open Project Panel and select android option. 6. selcet App module, right click--> Git --> Add 7. selcet App module, right click--> Git --> Commit Directory. 8. state your comment --> commit. 9. Once Commit done it will ask you for remote origin , click remote origin--> go to your repo webpage you'll   https:\\some_url_with_repo_name   copy > paste > ok > push. 10. Done!!! refresh your repo page and check your code. By default you're on Master Branch.