google-play

How to update an android app If you lose keystore file?

醉酒当歌 提交于 2019-12-24 19:40:50
问题 I am new to the Android ecosystem. To give you a more context about my problem, here are some facts. I've received access to a google developer team, who released time ago an application. Now, I want to release a new version of that. The new version is a completely new app. Have the same functionality, but is developed by somebody else. All setup is made correctly, including the bundle id of the app. Now, the problem is related to APK signing. From what I understand I should use something

App update with different package name into playstore

折月煮酒 提交于 2019-12-24 19:11:05
问题 I've published an app to the playstore. On the same time, I worked on an update, but the update has a different package name. Like: Release version 1.0 -> com.domain.packageOne Release version 1.1 -> com.domain.packageTwo Can I now add packagteTwo without problems to the production phase or will then, the device download both versions? The problem then would be, that the user would have two verions of my app. Or do I need to change the package name in my project so it matches packageOne?

Google Play App Signing - Can't upload update

Deadly 提交于 2019-12-24 18:23:29
问题 Alright so this is the error I get when uploading the APK to Google Developer Console; Upload failed You uploaded an APK that is signed with a different certificate to your previous APKs. You must use the same certificate. Your existing APKs are signed with the certificate(s) with fingerprint(s): [ SHA1: Numbers go here ] and the certificate(s) used to sign the APK you uploaded have fingerprint(s): [ SHA1: different numbers go here ] However, I know for a fact I'm using the same .keystore I

Android app doesn't show in Market.Compatibility issue

被刻印的时光 ゝ 提交于 2019-12-24 17:19:04
问题 I can't see my application on Android Market. If i try to check it in android market online, using my pc, i'm able to find my application but if i try to download a popup tell me that the app is not compatible with my devices. I have a Samsung Galaxy S2 (i9100) and Huawei Ideos U8150. Both are present in the compatibility table in android-market-publish. I did so many changes to android manifest.xml without positive result. I tried to change the screen options, sdk version options exc.

Android app doesn't show in Market.Compatibility issue

拥有回忆 提交于 2019-12-24 17:19:00
问题 I can't see my application on Android Market. If i try to check it in android market online, using my pc, i'm able to find my application but if i try to download a popup tell me that the app is not compatible with my devices. I have a Samsung Galaxy S2 (i9100) and Huawei Ideos U8150. Both are present in the compatibility table in android-market-publish. I did so many changes to android manifest.xml without positive result. I tried to change the screen options, sdk version options exc.

You need to use a different package name because “com.Mobile.mytestbuddy” is already

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 15:43:03
问题 I am uploading android application on google play but It is showing error as : You need to use a different package name because "com.Mobile.mytestbuddy" is already used by one of your other applications There is already one app of version 1.2 in google play and this new app's version is 1.29 What is the wrong with this ? Do I need to change anything or Do I need to unpublish old app before uploading this new version app ? 回答1: I have solved this problem. I was adding new Application that's

Should i have to put the copy protection to my Application if i have given Android Licensing to my Application?

别说谁变了你拦得住时间么 提交于 2019-12-24 15:25:21
问题 I have added the Android Licensing to my Application. to check for the application licensing. There is also one option like copy protection during uploading the application on Android Market. So if i have Implemented the Android Licensing to My apps, then should i have to give it to copy protection ? Is it necessary to give copy protection ? If i have not given copy protection and have given Android Licensing to My Application, then user can be able to copy it to anoter device. But should it

Why is my app not available for specific devices

 ̄綄美尐妖づ 提交于 2019-12-24 15:05:53
问题 The why is the main point of my question. I know there's a filtering system using the requirements and features specified in the AndroidManifest.xml and that furthermore one can manually exclude devices. But, is there a way to find out, which specific requirements or features lead to the exclusion? In the Google Developer Console the devices just show up as "unsupported", but without any further information about why they are not supported. I'm sure they were rejected for a good reason. But

aapt dump badging error while trying to publish an Android apk on Google Play

天涯浪子 提交于 2019-12-24 14:03:17
问题 I am getting this problem when publishing android apk file on Google Play. This is my AndroidManifast.xml code: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xx.com" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

logout from Google+ from other activity

时光怂恿深爱的人放手 提交于 2019-12-24 13:17:33
问题 I have recently implemented the Google+ API. I managed to succesfully authenticated and move forward to the main activity. My issue is that I would like to include a "LogOut" option in the action bar menu and when the user comes back he will be prompted to login again. I read several answers however I wasnt able to implement them. can you please suggest the best way to implement this solution and suggest a good example? Thanks, 回答1: So I manage to solve the issue, i created the below base