google-play

app not showing up on android market

你说的曾经没有我的故事 提交于 2019-12-13 01:51:33
问题 I finished uploading my app to android market an hour ago. I did all the steps recommended here. I also have my copy off. Its paid and and I set up a merchant account too. My app is not showing on the market. How long does it take to show up? And why is not showing up? Is there any setting I am missing that I should do? 回答1: Could be one of several reasons: Delay - Market does sometimes take a little while to show new or updated apps. Manifest - your AndroidManifest.xml may be too restrictive

How can I silently push an apk and get it installed by android device policy using android management api?

给你一囗甜甜゛ 提交于 2019-12-13 01:29:32
问题 I am trying to push an APK to the device and get it installed by Android device policy (Device owner) rather than pushing application from play store. I am able to push applications that are available on play store using device policy { "packageName": string, "installType": enum(InstallType), "lockTaskAllowed": boolean, "defaultPermissionPolicy": enum(PermissionPolicy), "permissionGrants": [ { object(PermissionGrant) } ], "managedConfiguration": { object }, "disabled": boolean,

Android App is not visible on Google Play store for tablets

天大地大妈咪最大 提交于 2019-12-13 00:09:26
问题 Can anyone suggest me why this app is not visible for tablets on google play store. I am using GCM, Gmap, Camera and storing files on sdcard. It is not visible for major tablets on google play store, sim and simless. I do know that google play store mask app from device which not match with manifest permissions however I believe that there no any permission which is not exist on major samsung devices. Please find below manifest. <manifest xmlns:android="http://schemas.android.com/apk/res

Android TV published app not visible in sony bravia android tv

跟風遠走 提交于 2019-12-12 22:31:17
问题 I have developed an app using Leanback Library . The app is working fine on Sony Android TV . But when I have published the app successfully on play store then when i am searching app on my Sony Android TV store it is showing No Results Found message. Here is Manifest of my TV app. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.test.app" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:maxSdkVersion=

Soomla IAB error while purchasing in Game on Android

瘦欲@ 提交于 2019-12-12 22:04:46
问题 im using unity 3d to make a simple game just for testing Google services, for Google play games services i use googleplayplugin and for iab the soomla plugin. i think all is configured rightly, i install and start the game on my nexus4 and login successfully . when i try to buy the thing i configured ("correctly"?) the play store popup comes up but there is my problem the popup comes with this message "Error Authentication is required. You must log in with your Google Account". what am i

Do I need to use the same certificate for all my Android Apps?

守給你的承諾、 提交于 2019-12-12 17:42:08
问题 Do I need to use different certificates to sign different apps if they are all published under the same Google Play account or can I use always the same? If there is no particular requirement, what is the best practice? 回答1: You don't need to publish all your applications on the same Developper Accout with the same certificate, and can use one certificate per application. But you must publish updates of an application using the same certificate it has first been published with. This mean that

LicenseChecker is slow in emulator

十年热恋 提交于 2019-12-12 17:27:10
问题 When the emulator hits the line below it takes 10 seconds + to complete. Does anyone else have this problem? mChecker = new LicenseChecker( this, new ServerManagedPolicy(this, new AESObfuscator(SALT, getPackageName(), deviceId)), BASE64_PUBLIC_KEY); 回答1: I wound up putting the initial call to the setup into a background task. whenever its finished then it will go on and check the license. 来源: https://stackoverflow.com/questions/4629603/licensechecker-is-slow-in-emulator

Android certificate is expired

故事扮演 提交于 2019-12-12 16:19:23
问题 I currently have an error message when signing my app, saying that the certificate is expired (not the debug one). (I know that is surprising since Android certificate should be available many years !). I can't create a new certificate because I get an error when updating my apk on the PlayStore (certificate of the apk have to be the same as the previous one) Is it even possible to renew my keystore ? Is the only possiblity create a new application ? 回答1: Maybe (but I never tested) you can

Making an HTTP post request to the Google Play Android Developer API

不羁岁月 提交于 2019-12-12 14:56:08
问题 I'm trying to authorize the Google Play Android Developer API. I'm at the step where I need to make an HTTP post request to exchange the authorization code for an access token and a refresh token. Google gives the following example request: POST /o/oauth2/token HTTP/1.1 Host: accounts.google.com Content-Type: application/x-www-form-urlencoded code=4/v6xr77ewYqhvHSyW6UJ1w7jKwAzu& client_id=8819981768.apps.googleusercontent.com& client_secret={client_secret}& redirect_uri=https://oauth2-login

Installing from Android Market. Unknown reason-102

这一生的挚爱 提交于 2019-12-12 14:53:36
问题 I got this error message when I try to install for testing my app from android market "Installation error." It's followed by "Unknown reason-102". Is this my apk or my phone??? 回答1: I solved this with using a different signing certificate. The Android docs suggest a life of 10,000 days, but that now creates expiry dates after the end of time in *nix timestamps, which is some time in 2038 . I generated a new cert that expires in 2037 and resubmitted the apk and it now installs ok.