apk

Android Studio keystore not found

一世执手 提交于 2019-12-11 07:59:08
问题 I have an Android project published on google play, signed with my previous installation of Windows and Android studio. Due to formatting the PC (the computer is the same), I lost the .jks file to sign the application. If I have the key store password with which to sign this app. Can I re-sign the app with the same keys as before? Can anyone tell me how to fix this? I would like to update the app, instead of having to issue a new one. UPDATE: I have copy to keys ssh 回答1: I was trying to

EOCD not found, not Zip,while installing apk without source

雨燕双飞 提交于 2019-12-11 07:43:54
问题 When I am trying to install apk through command prompt it shows an error like this adb install "D:\vignesh\ruchi rapps\eRuchi-and riod.apk" EOCD not found, not Zip file 'D:\vignesh\ruchi rapps\eRuchi-andriod.apk' is not a valid zip file rm failed for /data/local/tmp/eRuchi-andriod.apk, No such file or directory I already looked for the solution over here,here, here,But the solutions mentioned were apk's with source, but in my case i dont have any source code of apk,how can i rectify this

Getting the old code when creating apk for new version

吃可爱长大的小学妹 提交于 2019-12-11 06:58:59
问题 im trying to test my app before uploading to the store and when I create the apk by ./gradlew assembleRelease I see in the logs the new dependencies that I added but when im trying to test it: react-native run-android --variant=release I see the old code... when im testing with the debug mode there is no problem and I see my new code What I have been trying so far: ./gradlew clean delete my build folder and build again+restart my computer delete my android folder and build again I deleted the

Android error: Failure [INSTALL_FAILED_SHARED_USER_INCOMPATIBLE]

[亡魂溺海] 提交于 2019-12-11 06:57:28
问题 I'm getting this error and don't know how to fix this: When trying to run an Android app on a real device (NEXUS4(rooted) in my case) I'm getting the following error in the Console: pkg: /data/local/tmp/test.apk Failure [INSTALL_FAILED_SHARED_USER_INCOMPATIBLE] I've try to google this error and have got some solutions: Delete the source with "android.uid.system". ->The error fixed but I need to use SharedUserID for system permission so I can't take this. Use platform.pk8 and platform.x509.pem

How to get the list of installed application from google play store in android?

扶醉桌前 提交于 2019-12-11 06:42:03
问题 i want the application list that is installed from google play or from any external storage, but not the pre installed system application. i just use below code..... class PInfo { private String appname = ""; private String pname = ""; private String versionName = ""; private int versionCode = 0; private Drawable icon; private void prettyPrint() { Log.v("", "*** appname = " + appname + " *** \n" + " packagename = " + pname + "\n" + " version name = " + versionName + "\n" + " version code = "

Android Market Doesn't Show My New Version

与世无争的帅哥 提交于 2019-12-11 06:18:52
问题 I fixed a bug in my Android app, and uploaded the new APK to the market (I signed it with the same private key as the first version). My versionCode and versionName are both different, and the "Android Market listings" section of https://market.android.com/publish/Home shows my new version number (1.0.1). However, when I search for my app in the market, it still shows my original version number (1.0) and when I download it, the market version doesn't have my fix. On the 'APK Files' section of

java.lang.IncompatibleClassChangeError: Class 'org.apache.http.message.BasicHeader' does not implement interface 'org.apache.http.NameValuePair'

北慕城南 提交于 2019-12-11 06:14:44
问题 I have an issue in Released APK . java.lang.IncompatibleClassChangeError Error comes when install and open release APK. But my debug APK is working properly. I saw lot of links and stackoverflow question but I didn't got any solution. What should I do? java.lang.IncompatibleClassChangeError: Class 'org.apache.http.message.BasicHeader' does not implement interface 'org.apache.http.NameValuePair' in call to 'java.lang.String org.apache.http.NameValuePair.getName()' (declaration of 'com.android

Xamarin - How to upgrade Android app and keep files under android data folder

感情迁移 提交于 2019-12-11 06:04:41
问题 I need to deploy a new version of my Android app made with Xamarin. My app stores files in the following path: android > data > APP.PACKAGE_NAME > files > data The problem is those files are wiped after the upgrade and the app needs to resync with the remote server, is this behavior normal or am I missing something ? What I do is upgrade the version number in the properties > Android Manifest, then Archive and deploy the generated apk on my device. 回答1: If your device is rooted, it can be the

Cordova cannot find module

天涯浪子 提交于 2019-12-11 05:58:18
问题 I allready searched for solutions but couldn't find anything that works. I'm trying to build / run apk with cordova but the emulator (and also my phone) won't start the app and fail on installation. I tried to re-create the projet and re-install cordova but have this issue : Error: Cannot find module 'C:\Users\...\AppData\Roaming\npm\node_modules\cordova\bin\cordova' I also tried to do : npm cache clean Nothing is working, can someone help me please ? Thank you ! 回答1: I know, this question is

How to find device os and version in ionic

旧街凉风 提交于 2019-12-11 05:08:08
问题 I have worked on few tutorials and at last found something regarding this in ionic framework..... They gave some codes that use ionic native and i did the same by embedding the below code: //Display OS name and version (Start) import { Device } from 'ionic-native'; console.log('Device OS is: ' + Device.device.platform); console.log('Device OS Version is: ' + Device.device.version); //Display OS name and version (End) While using ionic serve i got this in the console: 'Device OS is: undefined'