google-play

Apk Deployment Error

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-24 12:08:50
问题 I'm getting the error when trying to upload my apk file: 'dump failed because no androidmanifest.xml found' Does the package name in the AndroidManifest have to be the same as the deployed apk name? Also, does the apk name have to be in the form: com.xxxx.xxxx? Or should, say, TestPro.apk be ok? Regards...Andrew 回答1: Use Winzip or zip reader to open your APK file to check whether AndroidManifest.xml exists inside your package. 回答2: After having the exact same problem (and losing about 4 hours

Android App should visible in playstore for normal screen devices as well as tablets and should appear perfect in both (screen resolution)

回眸只為那壹抹淺笑 提交于 2019-12-24 12:02:13
问题 I have recently published android app (sdk version 4.2) in playstore. My requirement is that - this app should be visible in playstore on both - large screen devices (including Samsung Galaxy Tab 2 p3100), as well as normal screen devices. I also want my app to be displayed in devices (with version 2.2 - 4.2). This is the code snippet, I was suggested for fulfilment of my requirement. <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true"

How to update google play in android

扶醉桌前 提交于 2019-12-24 11:31:29
问题 Good Noon to all I'm developing an application which is based on accessing google account for login purpose of my own appplication. If i run my application means it throws an error as "Google Play services out of date. Requires 4452000 but found 3136130" here is my screen shot 回答1: I faced the same problem, solution (for Eclipse) was: remove local copy of google play service from workspace open Android SDK Manager delete google play service install google play service add local copy of google

Upload updates on Google Play

两盒软妹~` 提交于 2019-12-24 11:16:59
问题 I developed an application. Which is having the SQLite Data base in assets folder. Then i uploaded the .apk on Google play. Now i am having the updated data base of the same application. So my issue is that: 1. How to upload updated SQLite data base. Should i create new .apk and upload it. If yes then : 2. User has to download .apk again or they prompt only for updates? I am not clear with that. As up till now i just uploaded non updating application. So please guide me for this. 回答1: How to

Automatically uninstalling the older app before installing the new one

你离开我真会死。 提交于 2019-12-24 10:29:54
问题 I published my app on play store and I have made an update that may cause the older one to crash due to some database structure changes that I have made and I have had a hell of hustle trying to automate DB migration upon installation. So I want the to completely auto-uninstall the old one from users phone before new one is installed during update as an easy solution. Is there a way I can include such configurations? 回答1: No, there is no way to force uninstallation before installation. But it

How to resolve “The item you were attempting to purchase could not be found”

丶灬走出姿态 提交于 2019-12-24 10:04:44
问题 I have used the in-app purchase functionality in our android application. When I click on my Product item and click 'buy' button I open the android market, but it shows a pop up saying "The item you were attempting to purchase could not be found". How to solve this problem. Please suggest. 回答1: Have you created the product list on the publisher console for the application in question correctly? And even if you have created and saved the product list for in-app billing, you have to publish

run google play store on android emulator

二次信任 提交于 2019-12-24 09:26:01
问题 I installed Google play store on my android emulator successfully. But when I try to run Google app it gives "Unfortunately, Google services framework has stopped" error message. I tried to fix it using clear cache of Google play store app, clear data of Google services framework app and restart the device. Also I tried for new emulators. But It didn't work. Does it a matter version of android sdk and Google Services Framework.apk version? Suggest a way to fix this problem. 回答1: Read up on

Lost old keystore, need to sign the app with new keystore [duplicate]

纵饮孤独 提交于 2019-12-24 08:16:17
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: I lost my .keystore file! I have lost the old keystore for Android app published on Market. I don't want to republish it with different package. Can I get old certificate through signed original old apk? Can I signed the apk with multiple keystore? 回答1: No, public-private key security mechanism are setup specifically to avoid being able to reconstruct the certificate. If you've lost your keystore then you're

Generating Multiple Apk according to the Native ABI

给你一囗甜甜゛ 提交于 2019-12-24 08:03:17
问题 I am building release apk based on the ABI because of apk size to publish on Play store . So I started apk building for ABI = armeabi-v7a then building ABI = x86 and ABI = areambi so my gradle look like this app gradle android { compileSdkVersion 26 buildToolsVersion "26.0.1" defaultConfig { applicationId "com.package" minSdkVersion 18 targetSdkVersion 26 versionCode 1 versionName "1.0" multiDexEnabled true ndk { abiFilters "armeabi-v7a" } } buildTypes { release { minifyEnabled false

How do i publish an updated version of my existing ionic app on google play store?

那年仲夏 提交于 2019-12-24 07:51:42
问题 I have recently launched my first ionic app on play store and now i want to publish a updated version. I have the .keystore file and its password with me but i am not getting the steps to generate the release apk to update my existing ionic app. I would appreciate a help. Thanks 回答1: Start with changing the android-versionCode , android-versionName (optional) and version attributes in the widget tag in your config.xml. Then remove all plugins you only use for development, like console: $