I need to use APK Expansion Files on Google Play. Is it possible to test the functionality of this mechanism in my program without publication of the application?
You can test some functionality without uploading it to Google Play, while the downloading part requires you to upload a draft application to Google Play, as specified and explained in great detail in this part of the documentation (which Google lead me to in a few seconds).
Related
I'm trying to fully automate the entire process of app publishing/updating to the play store by using google's API's.
So far I have found Fastlane tool which allows me to upload apk's files to any line (alpha, beta, production, etc.) but only upload them. There i don't have any other option than accessing the Google play console by web browser and review and publish them manually.
I have also looked at the google play developer API documentation and i haven't found any API related specifically to review and publish of the apps, all i have found are the API's for apk's uploads (via edits).
So my question is: is there any way to automate the process of review and launch of the app through API's?
Thanks in advance
I've got an internal corporate application that I need to have published in my company's Android for work EMM.
Do I need to first publish the application publicly on Google Play Store or is there a way to upload just to EMM. I'm really reluctant to publish publicly.
The app had not been published on Google Play so there's no problem with the apps package already being used.
The Play Developer Console allows you to restrict the visibility of your app to your enterprise by publishing your app as "private", see their very good help center article.
I have developed a game using Unity and I have used Google Play Games in it. It works good for testers and also for public users when I publish it on Google Play Games. The problem is I want to publish it on a local app store (and not Google Play Games) and it does not work this way! Is there any trick about it?
Yes, this is possible. It does even work if you sell your app through google play and on another platform. But the device needs to have the google play games app installed, so it does not work on Amazon devices.
Let’s assume your app is called “TheGame”.
Go to the Google Play Developer Console to “All application”:
Add another app name call it “TheGame (DRM-free)”
Create an empty APK that signed with a keystore and a different bundle identifier (if you already sell it on Google Play)
Upload the APK to alpha or beta testing, but not production.
Complete the Store Listing and Content Rating
Set pricing to free
Publish your app. (no worries it will not appear on Google Play)
Then go Google Play Developer Console to "Game Services:
If you not already have that add new game
Link your app “TheGame (DRM-free)” to you game services under “linked apps”
Make sure you set the “Enable anti-piracy” option to “OFF”
Publish your changes
This work with achievement, leaderboards and multiplayer.
The users don’t need to be testers anymore.
Also multiplayer between your DRM-free and your Google Play app is possible.
You may want to check this document- Alternative Distribution Options
As an open platform, Android offers choice. You can distribute your Android apps to users in any way you want, using any distribution approach or combination of approaches that meets your needs. From publishing in an app marketplace to serving your apps from a web site or emailing them directly users, you’re never locked into any particular distribution platform.
Distributing Through an App Marketplace
Distributing Your Apps by Email
Distributing Through a Website
User Opt-In for Apps from Unknown Sources
Android protects users from inadvertent download and install of apps from locations other than Google Play (which is trusted). It blocks such installs until the user opts-in Unknown sources in Settings > Security, shown in image below. Users need to make this configuration change before they download your apps to their devices.
Users must enable the Unknown sources setting before they can install apps not downloaded from Google Play.
Note that some network providers don’t allow users to install applications from unknown sources.
Also you can check this SO question about : What is the fall back plan for devices without Google Play Services, this may add information to ensure your app should run.
Hope it helps!
I've published an app and I have a theoric doubt. In my google play administrator page, it shows me that my app was downloaded by 18 devices, but when I look at the google analytics, on the same period, I have over 100 devices.
I've looked for other links on Google, but every link that I found redirects to Google Play, so Google Play should count it. Is there any way to download the app from google play, and then, get the apk?
The funniest part is that I didn't spread this app and when I look at the place of the users, it's from India, Sudan, etc..(I'm from Brazil, the other side of the world)..
Yes there is a way. Apk can be downloaded from Google Play and than shared as file somewhere else. These downloaded apks are disributed commonly in these countries like India etc.
For example there is an extension to it for chrome https://lekensteyn.nl/apk-downloader/.
So I would say your Google Analytics data are valid.
Is there any way to download the app from google play, and then, get the apk?
Sure. Copying the APK off of a device is not that difficult. In addition, software pirates bulk download pretty much everything uploaded to the Play Store and make it available from their own sites.
I want to publish a paid-for app on Amazon app store as well as Google Play. I plan on doing two separate builds for my app, one with the Google Play Licensing library incorporated and enabled (for submitting to Google Play) and one with the Licensing library disabled (for submitting to Amazon app store; Amazon has its own Licensing facility). Other than this, the two builds will be identical (same package name etc). Does anyone know whether or not this strategy is a feasible way to go?
A worry I have in particular is app updates. If a user purchases my app from Amazon app store and I publish an update to Google Play, would the user receive a notification telling them that an update is available for them from Google Play?
I currently have apps on both the google play market and Amazon market and have not come across any of the issues you have mentioned above. I am using ecplise and created the apk file using a certificate and used the same apk file for both Android markets.
As they are seperate markets and as you mentioend Amazon has its own authentication meaning google play updates are not an issue and therefore need to be done on both Markets.
Google Play vs Amazon Appstore
Finally, things to look out for is if you have any links referencing the play market you need to change these to the Amazon market, as Amazon will fail it otherwise (upload to Amazon market can take several days), hope this helps.
When you submit the android apk file to the Amazon app store it signs itself and publishes the app.
I uploaded by debug build (not even any signed apk) and amazon accepted it and the app is now in their app store. Amazon might have some sort of automated signing the application.
Make sure you've not implemented anything related to Google play
store.
Good luck!
I am writing an app and face the same situation, I found the best solution was to make your app into a library project and import it into two separate projects for release.
These separate projects would have any changes necessary for launching from a specific store but the bulk of your code would be in one library. That way any updates you do to the library will be carried across to both releases automatically on the next build.