google-play

Designing an android tablet-only app [duplicate]

二次信任 提交于 2019-12-17 04:14:28
问题 This question already has answers here : Application Only for Tablets (2 answers) Android application just for tablets? (1 answer) Closed 9 months ago . Let's say that I want to build 2 different sets of tablet-only layouts. One for 600dp (7" tablet 1024x600) and one for 720dp (10" tablet 1280x720 or 1280x800) I understand that with android 3.2 you can now specify the tablet layouts. I understand that but how to specify on Google Play that this is a tablet-only app. There is this android

What does this Google Play APK publish error message mean?

隐身守侯 提交于 2019-12-17 02:54:47
问题 I'm trying to publish a new version of my Android app to Google Play and get the following error? This configuration cannot be published for the following reason(s): Version 1 is not served to any device configuration: all devices that might receive version 1 would receive version 4 I don't understand it. What does it mean? 回答1: This happened to me when I published two APKs (versions 3 and then 4) in a short space of time. Clicking "Deactivate" on the dropdown next to version 3 appeared to

How to test android referral tracking?

老子叫甜甜 提交于 2019-12-17 02:52:25
问题 I'm implementing some code to do my own referral tracking on downloads from the Android market. See Android referral tracking does not work for an idea of what my app is doing. How can I test if this code is working before deploying to the public? 回答1: The easiest way is using adb . You don't have to write any code. Just run in a terminal : adb shell am broadcast -a com.android.vending.INSTALL_REFERRER -n <your.package>/.<path.up.until.your.BroadcastReceiver> --es "referrer" "utm_source=test

Lost my keystore for uploaded app on android market [duplicate]

大城市里の小女人 提交于 2019-12-17 02:37:40
问题 This question already has answers here : I lost my .keystore file? (11 answers) Closed 5 years ago . I don't know how to solve my issue. We published an android app on the Android market. After fixing a few issue, we are not able to release it as a next version of the app in marketplace because we have lost the private key used to sign that build. If the update version is not signed by same key, android is not accepting the build. For this application, few users have already purchased it on

open link of google play store in mobile version android

社会主义新天地 提交于 2019-12-17 01:39:45
问题 I have link of my other apps in my latest app, and I open them in that way. Uri uri = Uri.parse("url"); Intent intent = new Intent (Intent.ACTION_VIEW, uri); startActivity(intent); this codes opens the browser version of google play store. When trying to open from my phone, the phone prompts if I want to use a browser or google play and if I choose the second one it opens the mobile version of google play store. Can you tell me how can this happen at once? I mean not ask me but directly open

How to remove application from app listings on Android Developer Console

非 Y 不嫁゛ 提交于 2019-12-17 00:39:49
问题 Is there any way to unpublish and then permanently remove an application from the list of applications on Android Developer Console? 回答1: No, you can unpublish but once your application has been live on the market you cannot delete it . (Each package name is unique and Google remembers all package names anyway so you could use this a reminder ) The "Delete" button only works for unpublished version of your app. Once you published your app or a particular version of it, you cannot delete it

App on Google Play always shows “Update” instead of open [closed]

 ̄綄美尐妖づ 提交于 2019-12-16 22:46:15
问题 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 last year . I have an app on Google Play that, after an update, always shows the update button. Even if it's already updated and the latest version is shown in app settings, Google Play keeps asking me to update it. What can the problem be? This only happens with this single application. I tried to delete all caches and data

Android Market (Google Play). Get buyer information

匆匆过客 提交于 2019-12-14 04:01:34
问题 I want to publish a PAID app on the market but first I'd like to find out if it's possible to at least see an email address of each person who bought my app. I'd like a way of possibly contacting some of them (no, i don't want to send spam or such). Is this possible? Someone told me that in Google Checkout you can see each buyers detailed information which also contains an email address. Is this true? Please excuse the fact that it's not a programming question, but it's still related to

How to get the URL for my App's APK? (Google Play Protect appeal)

随声附和 提交于 2019-12-14 02:58:59
问题 I need to send some info to Google Play Protect as, while my app works fine on Google Play Store, it comes up with an error for those downloading it from the Samsung App Store. One of the questions is the URL to download my APK. I've only ever uploaded signed APK's I have generated to the app stores. I have never used a URL so how would I get that for my app so I can fill in this question for the Google Play Protect team. Screenshot: 回答1: finally, a link I tried worked and here is how to make

Do I need to Use an AlarmManager and WakeLock to periodically use a LocationClient?

北慕城南 提交于 2019-12-14 02:31:03
问题 Posts from over a year ago suggest that it is necessary to use a WakeLock to reserve CPU to gather location information (CommonsWare in particular here Android Periodic GPS location updates with AlarmManager inside a Service). However I do not understand why I cannot simply call a Service every 28 minutes, connect the LocationClient, set a timer to wait 2 minutes, then get the most recent location, disconnect the client, and then stop the service. Because Commonsware and the user who forked