google-play

How to zip Align APK file in android?

橙三吉。 提交于 2019-12-29 11:45:23
问题 I am uploading my first APK file to google play but I am getting following error. You uploaded an APK that is not zip aligned. You will need to run a zip align tool on your APK and upload it again. Can any one tell me how to zip align my apk file ? Please tell me steps for that ? 回答1: Read the documentation from Google itself The steps should be simple to follow. Please follow this doc from google for complete publishing details In short,complete steps in a nutshell(I am assuming you use

How to protect Google Play public key when doing InApp Billing

烂漫一生 提交于 2019-12-29 10:09:28
问题 Actually this is a little bit silly about protecting public key (what is the definition of public key then?) but as per the documentation by Google: To keep your public key safe from malicious users and hackers, do not embed it in any code as a literal string. Instead, construct the string at runtime from pieces or use bit manipulation (for example, XOR with some other string) to hide the actual key. The key itself is not secret information, but you do not want to make it easy for a hacker or

“Insufficient Storage Available” even there is lot of free space in device memory

烂漫一生 提交于 2019-12-29 10:08:21
问题 The total space of my app is 10 MB, and after installation it will take less than 20 MB. In Galaxy Note I, while updating my app, it's saying "Insufficient Storage Available", where there is 214 MB of free space in device memory (internal). It happens even trying to download a new app. I searched long for the solution, and a perfect reason for the cause of this problem, but I can't find it. How do I fix this problem? This is the result of the 'adb shell df' in my another device which has the

Android market publishing: 'android:icon' attribute: attribute is not a string value

雨燕双飞 提交于 2019-12-29 08:18:14
问题 I'm trying to publish an app to the Android Market, I get the following error: W/ResourceType(16964): No known package when getting value for resource number 0x01030006 ERROR getting 'android:icon' attribute: attribute is not a string value Here is the AndroidMannifest.xml: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="it.prezzofelice.android" android:versionCode="6" android:versionName="1.0.05" > <uses-sdk android

Unable to deactivate APK accidentally uploaded to Prod

浪子不回头ぞ 提交于 2019-12-29 04:29:06
问题 My application is currently in alpha. On the google play developer console, I accidentally uploaded a new APK as production rather than alpha. In advanced mode, there is a deactivate button. But if I deactivate and try to save I get the generic message "The application could not be saved. Please check the form for errors." I don't see any errors on the form. How do I deactivate? I tried uploading a later version to alpha - that seems to work - but I don't want ANY version in Prod, as my app

Google Play - wrong minimum API detected

点点圈 提交于 2019-12-29 04:15:26
问题 I've just uploaded my apk to the Google Play console. The problem is that on the app site on Google Play REQUIRES ANDROID field is wrong. It shows 1.6 while I've set it in the Manifest file to 2.3 . So I suppose now users with lower APIs can download my app and get bad experience as it will crash. Whats wrong? fragment of the Manifest.xml: <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" /> 回答1: This issue still persists (as of December 2013), but only in Beta and Alpha

How to upload an APK from Jenkins/Hudson to Play Store?

雨燕双飞 提交于 2019-12-29 03:30:49
问题 I implemented a continuous integration pipeline using Jenkins, but as final step I want Jenkins to deploy/upload the signed APK file to Google Play Store and AndroidPit. I looked for Jenkins/Hudson plugins but only found two: one for Appaloosa and one for Zubhium. I have a working developer account both on Google Play and on AndroidPit and can manually upload the APK that Jenkins produces. But my question is: Does anybody know a way to teach Jenkins (e.g. via a shell script?) to upload the

Where do alpha testers download Google Play Android apps?

孤人 提交于 2019-12-29 02:24:16
问题 I have developed my app and have published it through Google Play for alpha testing. As one of the testers I get an opt-in link, where I signed in as a tester. After that I was hoping to download the app directly with my phone by going to the Play Store on my phone. But as it seems to turn out, I have to got to the app's web profile and then from there click download; only then does the Play Store download the app to my phone. I want to get other alpha testers involved and I was hoping to

Google Maps not loading after publishing on play store even after updating SHA 1 fingerprint for release key

隐身守侯 提交于 2019-12-28 05:46:06
问题 A newbie here to google maps api and android app development. I am facing some strange issue and struggling with this from two days. I have developed an app in which I have used Google maps. I have launched the app to play store. The google map loads perfectly fine when I install the signed apk directly to mobile but not when I install through play store. I have updated google maps api console with release key SHA 1 fingerprint. I am not able to find any solutions online also and did not get

Why I getting “SMS and CALL_LOG permissions warning”

心已入冬 提交于 2019-12-28 04:09:06
问题 I have so many permission in my app but I dont have any call_log permission but Im getting this warning from play console . Is this common warning or this permissions below have hidden call_log permission. <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.CALL_PHONE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android