google-play

Android: Download Manager

纵然是瞬间 提交于 2019-12-19 10:18:30
问题 I want to implement a solution where I want to catch the android.intent.action.DOWNLOAD_COMPLETED intents from the Android Market App i.e after the download of the app. The android Market app uses the default Download Manager and the download manager on the completion of the download sends such an intent, however I have not been able to capture it,I followed this tutorial and please refer to this to have more details on how market app uses Download Manager and for more information on Download

Can't update my app in Google Play: aapt error

自闭症网瘾萝莉.ら 提交于 2019-12-19 09:48:38
问题 Today when I tried to upload an update of my app, I got this from Google Play console: UPLOAD NEW APK TO PRODUCTION Upload failed Your APK cannot be analyzed using 'aapt dump badging'. Error output: Failed to run aapt dump badging: ERROR getting 'android:value' attribute for meta-data:attribute could not be found I can upload normally before. I haven't made any change in AndroidManifest.xml. The app is built via ant. I also tried building it again, even with the last-known-good code, the same

Google Play - Zero Supported Devices

感情迁移 提交于 2019-12-19 09:14:55
问题 I'm aware there are similar questions on here, but none seem to have a satisfactory answer. I'm trying to publish an app, but no matter what I try the developer console is reporting that there are zero supported devices Here's my full manifest; <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.blah.blahpro" android:versionCode="6" android:versionName="1.0" > <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"

How to remove an app from the Play store? [closed]

微笑、不失礼 提交于 2019-12-19 05:17:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I have some test apps that I never intend to publish to the official Play store (aka Android Market), via this website. I need to remove them and use new ones instead, as I've also forgotten where I've put the signing key of the test apps. So, how do I remove the old test apps from the account? I just can't

Unable to Upload Updated APK to Google Play Store

眉间皱痕 提交于 2019-12-19 05:14:30
问题 The same issue was posted here but the answer given didn't work for me. I've uploaded to the store before and now I can't update my app to include some bug fixes. Whenever I try to upload the APK I get this error Upload failed You uploaded a debuggable APK. For security reasons you need to disable debugging before it can be published in Google Play. I've tried adding Android:debuggable="false" to my manifest but I'm still getting the same message. I'm currently using Android Studio to

Trouble using Google sign-in button in the emulator

*爱你&永不变心* 提交于 2019-12-19 04:18:30
问题 When I click the Google sign-in button, it shows the following dialog. I click on Update and nothing happens, but my logcat gives the following output. 01-24 07:38:48.121: W/GooglePlayServicesUtil(1305): Google Play services out of date. Requires 4132500 but found 4033530 01-24 07:38:50.321: E/SettingsRedirect(1305): Can't redirect to app settings for Google Play services How can I get this to work on my emulator? After it failed I ran the following command to see the error and got the

How can I add new columns to a SQLite database after the Android app is released?

对着背影说爱祢 提交于 2019-12-19 04:12:43
问题 I want to add new columns to a SQLite database, but I already released my app on the Play Store so, if I edit it, users need to uninstall and reinstall the app, but I don't want that. Please, help, I am new to Android. 回答1: (1) Increment (or simply change) your database version (2) It would lead to onUpgrade() method call (3) Execute your query(for adding a new column) in the onUpgrade() method. The Right Way of doing is mentioned here in this blog. Sometimes user may update the version 1.5

How to detect if Google Play is installed? (Not Market)

丶灬走出姿态 提交于 2019-12-19 03:35:07
问题 Whether the app installed is called Google Play or Market, the package name is the same com.android.vending . I need to be able to detect whether the app is Google Play or Market, I've checked in PackageInfo and nothing except versionCode and versionName can be of help. Does anyone know what the first versionCode was or versionName was for Google Play app? If anyone knows any other way of detecting this let me know. 回答1: I figured out how to check the application label. I was using the

Play Store: Beta test & Production APK different certificates

﹥>﹥吖頭↗ 提交于 2019-12-19 03:12:51
问题 I started a beta test for an app in the Play Store, but I probably want to use another certificate for the production ('real' release) APK without changing the package name. Is this possible? 回答1: Just tested it, it isn't possible, not even Alpha- and Beta-Test APKs can't have different certificates. 回答2: It might be possible as suggested on developer support site: Through alpha- and beta-testing functionality, Google Play Developer Console lets you test two different versions of your app at

Google Play app update - can't publish a new apk

有些话、适合烂在心里 提交于 2019-12-19 00:56:10
问题 I am getting the following error when trying to publish a new APK in Google Play: It is forbidden to downgrade devices which previously used M permissions (target SDK 23 and above) to APKs which use old style permissions (target SDK 22 and below). This occurs in the change from version 2645 (target SDK 23) to version 2648 (target SDK 11). I previously published only on Beta channel an APK with a target SDK of 23 in the manifest, just for testing. I assume this is what causing the issue. Does