apk

How to install/replace on Android without using Eclipse

折月煮酒 提交于 2019-12-21 06:50:10
问题 A buddy sent me a later version of an .apk file. I already had the earlier version on my device. When I tried to adb install the file, I got this: $ adb install ../FlashLite.apk 320 KB/s (18311 bytes in 0.055s) pkg: /data/local/tmp/FlashLite.apk Failure [INSTALL_FAILED_ALREADY_EXISTS] $ adb uninstall FlashLite.apk Failure $ adb uninstall /data/local/tmp/FlashLite.apk Failure How do you install/replace from the cmd line? I don't have the source, so I cannot do it from Eclipse. 回答1: delete the

How do I make a signed apk with upload key?

穿精又带淫゛_ 提交于 2019-12-21 06:46:37
问题 I follow Manage your app signing keys which states "To create an upload key for new apps, follow the instructions on sign your app." I check here under section "Use google play App signing", which redirects me to Manage your app signing keys. This link is the same as the first link so I stuck in a loop of redirects. I check under section "Generate a key and keystore" in sign your app which again links me to Manage your app signing keys. If I check under section "Manually sign an APK" in sign

Android Device Debug stopped after plug other phone

 ̄綄美尐妖づ 提交于 2019-12-21 06:23:29
问题 I've launched and debugged several applications on my Samsung Galaxy S Device, however, yesterday I plugged in another Device (Same type) to upload music and now, when I try to launch or debug application, Eclipse wants me to choose between 2 devices (only 1 is online), and when I select this option, I'm getting the following Error log: [2011-03-30 11:36:56 - ****] Uploading ****.apk onto device '1000b1eda2c2' [2011-03-30 11:36:56 - ****] Failed to install ****.apk on device '1000b1eda2c2':

Is there a limit on how many updates on single apk to publish or upload on Android Market (Google Play Store)?

泪湿孤枕 提交于 2019-12-21 05:14:06
问题 I did the googling and checked all the relevant questions on StackOverflow but question is still standing: Is there a limit on how many updateson single apk publish on Android Market? Thanks. 回答1: You can upload a max of 15 apks in a day to the andriod play store (including new apps or updates on same or different apps). To continue uploading more you have to return after 24 hours of the last upload timestamp. Here is what you'll see when trying to upload the 16th apk. UPDATE: Recently

Can't Deactivate an Android Staged Rollout App from Play Store Production Area

点点圈 提交于 2019-12-21 04:25:09
问题 We uploaded an Android app to the Play Store as a staged rollout to 5% of the market. (Unsure how Google defines market here, but that's another question.) We've decided to remove the app and restore the previously published app. However, this seems impossible to do. When I switch to advanced mode on the developer console a "Deactivate" button appears under Actions in the version's line. Clicking on Deactivate results in a red box displaying "This configuration cannot be published for the

INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package signatures do not match the previously installed version; ignoring

冷暖自知 提交于 2019-12-21 04:10:51
问题 I get this error when trying generate a debug apk for update an app directly on the device (Android - React Native): Execution failed for task ':app:installDebug'. com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: Failed to finalize session : INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package prensa.com signatures do not match the previously installed version; ignoring! Im sure that version code and version name were incremented and the package name is the same.

Issue signing Android Release Build “ Failed to read key from keystore”

时光总嘲笑我的痴心妄想 提交于 2019-12-21 03:37:20
问题 I'm using gradle (assembleRelease) to generate the release apk. I have saved the keystore file in project/app/filename.keystore (Within the application) I have specified details related to signing in gradle.properties file RELEASE_STORE_FILE=filename.keystore RELEASE_STORE_PASSWORD=**** RELEASE_KEY_ALIAS=alias RELEASE_KEY_PASSWORD=**** My build.gradle file has the following related to signing signingConfigs { release { storeFile file(RELEASE_STORE_FILE) storePassword RELEASE_STORE_PASSWORD

Android Market and APK file name

核能气质少年 提交于 2019-12-21 03:36:23
问题 Does it matter what I name the final .apk file that I will be uploading to the android market? Can the user see the name of the file? 回答1: No, name of .apk file is ignored and user will not be able to see it. You can name .apk in whatever way is convenient for you. Android Market only parses the internals of .apk files and extracts all the information it needs. Also, when .apk is installed on the device it named as <package.name>-#.apk . For example: com.google.zxing.client.android-2.apk or

Verify that apk is a paid copy (avoid piracy of app)

三世轮回 提交于 2019-12-21 02:51:21
问题 I'm totally new to the Android Play store. I'm working on an app that is almost finished and ready to publish. But I notice that you can copy the apk file (after purchase) to another location (sd card for example) and install it on another device. That is something I want to avoid. My questions are: Does the Google Play store sign the apk file with some unique id before downloading? If is true, can I read/get this code from the apk? Is it possible to know the email-address of the user that

adb 常用命令集合

人走茶凉 提交于 2019-12-21 02:44:42
adb是什么? :adb的全称为Android Debug Bridge,就是起到调试桥的作用。通过adb我们可以在Eclipse中方面通过DDMS来调试Android程序,说白了就是debug工具。adb的工作方式比较特殊,采用监听Socket TCP 5554等端口的方式让IDE和Qemu通讯,默认情况下adb会daemon相关的网络端口,所以当我们运行Eclipse时adb进程就会自动运行。 adb有什么用?:借助adb工具,我们可以管理设备或手机模拟器的状态。还可以进行很多手机操作,如安装软件、系统升级、运行shell命令等等。其实简而言说,adb就是连接Android手机与PC端的桥梁,可以让用户在电脑上对手机进行全面的操作 1. 显示系统中全部Android平台: android list targets 2. 显示系统中全部AVD(模拟器): android list avd 3. 创建AVD(模拟器): android create avd --name 名称 --target 平台编号 4. 启动模拟器: emulator -avd 名称 -sdcard ~/名称.img (-skin 1280x800) 5. 删除AVD(模拟器): android delete avd --name 名称 6. 创建SDCard: mksdcard 1024M ~/名称.img