Sample Header Ad - 728x90

Android Enthusiasts

Q&A for enthusiasts and power users of the Android operating system

Latest Questions

1 votes
0 answers
198 views
INSTALL_FAILED_UPDATE_INCOMPATIBLE despite matching signatures for com.google.android.gsf
I'm attempting to reinstall `com.google.android.gsf` (Google Services Framework) on my Android device using ADB, but I keep encountering this error: ``` adb: failed to install com.google.android.gsf_15-35_minAPI35(nodpi)_apkmirror.com.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing packag...
I'm attempting to reinstall com.google.android.gsf (Google Services Framework) on my Android device using ADB, but I keep encountering this error:
adb: failed to install com.google.android.gsf_15-35_minAPI35(nodpi)_apkmirror.com.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package com.google.android.gsf signatures do not match newer version; ignoring!]
Interestingly, when I verify the signatures of both the new APK and the existing APK on the device using apksigner verify --print-certs, they are identical. Here are the details:
(base) PS C:\Users\x> apksigner verify --print-certs "D:\x\Downloads\com.google.android.gsf_15-35_minAPI35(nodpi)_apkmirror.com.apk"
Signer #1 certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Signer #1 certificate SHA-256 digest: 7ce83c1b71f3d572fed04c8d40c5cb10ff75e6d87d9df6fbd53f0468c2905053
Signer #1 certificate SHA-1 digest: bd32424203e0fb25f36b57e5aa356f9bdd1da998
Signer #1 certificate MD5 digest: f026fdcf21375f987164c84da76ef5fd
Source Stamp Signer certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Source Stamp Signer certificate SHA-256 digest: 3257d599a49d2c961a471ca9843f59d341a405884583fc087df4237b733bbd6d
Source Stamp Signer certificate SHA-1 digest: b1af3a0bf998aeede1a8716a539e5a59da1d86d6
Source Stamp Signer certificate MD5 digest: 577b8a9fbc7e308321aec6411169d2fb
(base) PS C:\Users\x> adb shell "pm list packages | grep gsf"
package:com.google.android.gsf
(base) PS C:\Users\x> adb shell "pm path com.google.android.gsf"
package:/data/app/~~XUohexMH35YRG11Tz5anTA==/com.google.android.gsf-9p6W7xLYfLz3hewFtmEMVw==/base.apk
(base) PS C:\Users\x> adb pull /data/app/~~XUohexMH35YRG11Tz5anTA==/com.google.android.gsf-9p6W7xLYfLz3hewFtmEMVw==/base.apk
/data/app/~~XUohexMH35YRG11Tz5anTA==/com.google.android.gs...ile pulled, 0 skipped. 33.6 MB/s (4165872 bytes in 0.118s)
(base) PS C:\Users\x> apksigner verify --print-certs .\base.apk
Signer #1 certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Signer #1 certificate SHA-256 digest: 7ce83c1b71f3d572fed04c8d40c5cb10ff75e6d87d9df6fbd53f0468c2905053
Signer #1 certificate SHA-1 digest: bd32424203e0fb25f36b57e5aa356f9bdd1da998
Signer #1 certificate MD5 digest: f026fdcf21375f987164c84da76ef5fd
Source Stamp Signer certificate DN: CN=Android, OU=Android, O=Google Inc., L=Mountain View, ST=California, C=US
Source Stamp Signer certificate SHA-256 digest: 3257d599a49d2c961a471ca9843f59d341a405884583fc087df4237b733bbd6d
Source Stamp Signer certificate SHA-1 digest: b1af3a0bf998aeede1a8716a539e5a59da1d86d6
Source Stamp Signer certificate MD5 digest: 577b8a9fbc7e308321aec6411169d2fb
Note: The pm list packages command does not display hidden system packages, so it only shows the user-installed or updated version of com.google.android.gsf. To see all instances, I used dumpsys package packages | grep -E "Package \[|versionName=" | paste - - | grep gsf, which revealed two instances: - Package [com.google.android.gsf] (ec252b0): versionName=15 (user-installed or updated version) - Package [com.google.android.gsf] (248eb70): versionName=15-11962157 (hidden system package, codePath=/system_ext/priv-app/GoogleServicesFramework) I suspect the hidden system package might be interfering, but since the signatures of the new APK match the user-installed version, I’m puzzled about why the installation fails. #### What I've Tried: 1. Ran adb install -r -d to allow downgrading, but the same error occurs. 2. Cleared the package data with adb shell pm clear com.google.android.gsf, yet the issue persists. 3. Confirmed the device is not rooted, so I can not just uninstall the package and reinstall it. #### Questions: 1. Why does the installation fail with a signature mismatch error when the signatures of the new APK and existing user-installed APK match? 2. Could the hidden system package be causing this? 3. Are there other factors—like version codes or system protections for com.google.android.gsf—that I should investigate? Any help or suggestions to successfully install the APK would be greatly appreciated! #### Additional Details: - **Device**: Vivo X100 Ultra - **Android Version**: Android 15 - The APK is sourced from APKMirror.
CybCom (11 rep)
Apr 12, 2025, 02:21 AM • Last activity: Apr 12, 2025, 03:07 PM
2 votes
1 answers
13162 views
Installing APK signed with different key possible through adb install -r?
Android will refuse to upgrade a package, if it is signed with a different key, making me to uninstall first (and lose user data) and re-install. If I install the new APK via `adb install -r XYZ.apk`, I switched to the other APK and kept user data. Is that a correct workaround?
Android will refuse to upgrade a package, if it is signed with a different key, making me to uninstall first (and lose user data) and re-install. If I install the new APK via adb install -r XYZ.apk, I switched to the other APK and kept user data. Is that a correct workaround?
eudoxos (224 rep)
Mar 30, 2017, 08:47 PM • Last activity: Feb 13, 2025, 04:04 PM
0 votes
0 answers
2011 views
Downgrade an apk with different signature, without root
I'm trying to do the following things to an Android app without root access: 1. De-compile the apk with `adb d xxx.apk` (done) 2. Modify some files in `/res/xml/` (done) 3. Re-build the apk with `adb b xxx` (done) 4. Sign the apk (`keytool` + `zipalign` + `apksigner`) 5. Downgrade with `adb push xxx...
I'm trying to do the following things to an Android app without root access: 1. De-compile the apk with adb d xxx.apk (done) 2. Modify some files in /res/xml/ (done) 3. Re-build the apk with adb b xxx (done) 4. Sign the apk (keytool + zipalign + apksigner) 5. Downgrade with adb push xxx.apk /data/local/tmp/ & adb shell pm install -r -d /data/local/tmp/xxx.apk I'm able to sign the apk with my own keypair, but I don't want to uninstall & re-install the apk to install the modified version -- I want to downgrade the original app to preserve the data. However, step 5 produces:
Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Existing package xxx signatures do not match newer version; ignoring!]
It seems like downgrade app's old & new version must have the same signature. Is there anyway to bypass this check, or solve this situation? I read this question: https://android.stackexchange.com/questions/132374/how-do-i-force-reinstallation-of-an-apk-with-different-signature-on-rooted-andro ... but it requires root access.
TaihouKai (101 rep)
Nov 20, 2023, 04:20 AM
9 votes
2 answers
25210 views
How do I force reinstallation of an apk with different signature on rooted Android?
Normally I can reinstall (preserving application data) APK only when it's signature matches the previous one. How do I force upgrading of the application signed with a different key (for example, from a distribution version to a self-compiled version, for example) without removal of the data (i.e. u...
Normally I can reinstall (preserving application data) APK only when it's signature matches the previous one. How do I force upgrading of the application signed with a different key (for example, from a distribution version to a self-compiled version, for example) without removal of the data (i.e. uninstallation) using root access? Workaround is backup application's data + uninstall + install + restore data, but that is inconvenient and notifies other applications about [un]installation which is not intended. Ideally this should be a one-off exception that I personally approve, not just disabling of the whole signature verification mechanism.
Vi0 (1705 rep)
Dec 23, 2015, 11:11 PM • Last activity: Jun 24, 2023, 10:41 PM
2 votes
2 answers
11891 views
How to install Termux on old Android 5 devices ? (using the official archive)
**Context :** Hello, I have a GPD XD console under Android 5 with a complex launcher. I would like to install the very good [Pegasus frontend][1] (install and play, no tweaks), and for that they require to run a script through Termux (because it seems some commands like `/bin/bash` or `cURL` are inc...
**Context :** Hello, I have a GPD XD console under Android 5 with a complex launcher. I would like to install the very good Pegasus frontend (install and play, no tweaks), and for that they require to run a script through Termux (because it seems some commands like /bin/bash or cURL are included in Termux and are absent in other terminal apps). For Android 5, there is an archive of the application available here (according to the official github). **Problem:** Unfortunately, I don't understand how to install these files on the console (there are too many of them). Indeed, I tried to install only the termux-v0.79-offline-bootstraps.apk file but I get an error message (maybe a signature error but I don't remember well). **Question:** Could you explain me step by step how to install these files please (and which ones to download) ? Thank you very much for your kind help!
prog-amateur (21 rep)
Mar 6, 2022, 02:25 AM • Last activity: May 12, 2023, 03:36 AM
0 votes
0 answers
1851 views
Apk android with signature scheme v2
Is it possible to unpack an application and re-pack it with changes and make it work on Android 11? I unpacked and recompiled an app without making any changes. I later signed it following this [guide][1], but when i try to install it with adb, I obtain this error: > Failure [INSTALL_FAILED_INVALID_...
Is it possible to unpack an application and re-pack it with changes and make it work on Android 11? I unpacked and recompiled an app without making any changes. I later signed it following this guide , but when i try to install it with adb, I obtain this error: > Failure [INSTALL_FAILED_INVALID_APK: Failed to extract native libraries, res=-2 – I read that on Android 11 you have to sign the apk with schema v2. I did it but the app gives me an error when I try to install it.
moskino11 (1 rep)
Oct 31, 2022, 11:58 AM • Last activity: Oct 31, 2022, 03:14 PM
0 votes
0 answers
96 views
Samsung A42 5g, when i try to open an APK file it says i need to sign in to save file, where do i sign in?
I am trying to download an APK file, when I try to open it I get a message at the end to say I need to sign in before I can save the file, where do I sign in?
I am trying to download an APK file, when I try to open it I get a message at the end to say I need to sign in before I can save the file, where do I sign in?
Denise Reid (1 rep)
Oct 15, 2022, 12:45 PM
11 votes
1 answers
7851 views
APK signature verified but warns file "not protected by signature"?
I'm using apksigner to [verify the authenticity][1] of a [Google Podcast apk][2] that I downloaded from an apk mirror. This apk (and older versions) verifies successfully (v1/v2/v3) and returns exit code 0 but in the output I see this warning: **WARNING: META-INF/services/com.google.protobuf.Generat...
I'm using apksigner to verify the authenticity of a Google Podcast apk that I downloaded from an apk mirror. This apk (and older versions) verifies successfully (v1/v2/v3) and returns exit code 0 but in the output I see this warning: **WARNING: META-INF/services/com.google.protobuf.GeneratedExtensionRegistryLoader not protected by signature. Unauthorized modifications to this JAR entry will not be detected. Delete or move the entry outside of META-INF/.** I do not understand what the impact of that is. If the APK is signed, and verified, why do I see this warning? Does it mean the APK could be trojaned or modified? How could an attacker exploit that? I am downloading some older versions of some Google apps and I want to be sure they aren't trojaned, which is why I'm trying to verify the authenticity before I install them on my phone.
newguy (267 rep)
Nov 1, 2020, 06:12 AM • Last activity: Oct 4, 2022, 01:39 PM
-1 votes
1 answers
4421 views
App not installed error
When i try to install a minecraft apk it tells me app not installed after further digging it shows me this error: > INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.mojang.minecraftpe signatures do not match previously installed version; ignoring!
When i try to install a minecraft apk it tells me app not installed after further digging it shows me this error: > INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.mojang.minecraftpe signatures do not match previously installed version; ignoring!
Sahil Pandit (1 rep)
Mar 10, 2022, 06:48 AM • Last activity: Sep 17, 2022, 11:13 AM
0 votes
0 answers
118 views
Get PKCS#8 key from .jks storage
Previously I used **jarsigner** tool for APK signatures. But jarsigner provides v.1 sign only. So, I'm trying to move signing process to **apksigner** because I need v.2 signature as well.\ And it works well when I use .jks for it.\ Please, check example below. apksigner sign \ --ks some.jks \ --ks-...
Previously I used **jarsigner** tool for APK signatures. But jarsigner provides v.1 sign only. So, I'm trying to move signing process to **apksigner** because I need v.2 signature as well.\ And it works well when I use .jks for it.\ Please, check example below. apksigner sign \ --ks some.jks \ --ks-pass pass:somepass \ --v1-signing-enabled true \ --v2-signing-enabled true \ --v3-signing-enabled true \ --v4-signing-enabled false \ --out DESTINATION_APP \ PATH_TO_APK Also I need option to sign APK with key and cert parameters.\ I've tried to use my .key and .crt file from .jks storage but it returns me an error. enter image description here According to the documentation key file must be in **PKCS#8** format and cert in **X.509**.\ Could you please tell me how can I export .key and .crt in correct formats? Thanks.
Viktor (101 rep)
Jul 26, 2022, 04:26 PM
0 votes
1 answers
1408 views
Unsigning and resigning apk inside apks makes an app don't work in some features
(**It's optional to read**) > Let's say I have an app called **X**, this is the older version of > the apk that I got from google. I have important data in the app, thus, > if I uninstall it, I'll lose them. However, I want to update it, since > google play store doesn't provide the app anymore (onl...
(**It's optional to read**) > Let's say I have an app called **X**, this is the older version of > the apk that I got from google. I have important data in the app, thus, > if I uninstall it, I'll lose them. However, I want to update it, since > google play store doesn't provide the app anymore (only available on > the official website of the app), I need to download it manually. So, > somehow (I watch a tutorial from YT) I need to sign the latest version > of the app. Silly of me, I made a mistake that I unsigned the new app > and then signed the app afterwards without knowledge of which > appropriate sign type I need to apply. **Problem:** So I have unsigned (Removing signature verification) an app using **NP Manager** (the property says the app has signature status of **V2**, thus I killed the signature verification v2) , and then I signed the app and do the same i.e. signing the app using the signature scheme **V2** (NP Manager has 3 options: v1+v2, v1 and v2 [Android 7.0+]). At first, it worked successfully, i.e I could install it perfectly, some features worked and nothing seemed to be wrong, alas, there was one (Idk what it's called) bar/menu/section when I opened it, the app stopped immediately (forced close). I had tried to do trial-and-error by investigating what's wrong and the problem seems to come from the *unisigning and signing*. **My question:** Is it either unsigning or signing the app can harm the app itself which causes some features don't work though the app might be able to be installed successfully? If that's so, how to prevent this problem? Is it because the original signature and rhe new signature I give differs and crash somehow? P.S. I'm only interested to know as to why the unsigning and signing makes the app error and how to solve it. I hope you would explain the error that happens in my app and why signature matters. Thanks in advance!
user516076 (259 rep)
Feb 5, 2022, 01:05 AM • Last activity: Mar 10, 2022, 03:32 PM
0 votes
1 answers
4563 views
'Could not validate certificate signature' error (Antennapod, Gingerbread)
I am using Android 2.3.6 (Gingerbread) and AntennaPod Version 0.9.9.5. When I am trying to access gpodder.net, either to login or search podcasts, I get the following error message: An error occured:javax.net.ssl.SSLHandshakeException: org.bouncycastle.jce.exception.ExtCertPathValidatorException: Co...
I am using Android 2.3.6 (Gingerbread) and AntennaPod Version 0.9.9.5. When I am trying to access gpodder.net, either to login or search podcasts, I get the following error message: An error occured:javax.net.ssl.SSLHandshakeException: org.bouncycastle.jce.exception.ExtCertPathValidatorException: Could not validate certificate signature. I tried to clear the cache, the data, and ultimately uninstall and reinstall the app from the Play Store, but the problem persists. Any hints about what I can do here?
geo909 (101 rep)
Nov 29, 2014, 06:47 PM • Last activity: Jan 21, 2022, 02:03 PM
5 votes
2 answers
44089 views
How to fix "signatures do not match previously installed version" error?
I'm using a Moto G6. With the latest update to android 9, they removed the capability of using the built-in Dolby Audio equalizer for some stupid reason. I found this [Reddit post][1] that had a way to modify the APK to make this work. I followed all the steps. I decided to try the 20 band equalizer...
I'm using a Moto G6. With the latest update to android 9, they removed the capability of using the built-in Dolby Audio equalizer for some stupid reason. I found this Reddit post that had a way to modify the APK to make this work. I followed all the steps. I decided to try the 20 band equalizer steps and made a backup of the previous work before starting. However, when I finally got to the ADB install DaxUI2.apk, it didn't work. I got this error: >adb: failed to install DaxUI2.apk: Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.dolby.dax2appUI signatures do not match previously installed version; ignoring!] This was saddening, but no biggie, right? Because I already had a backup. I renamed the DaxUI2 folder to DaxUI2broken, renamed my backup to DaxUI2, and I tried again, with just the first part (minus the appendix). Once I did this, though, I got the exact same error. I'd like to be able to fix this, so if anyone knows how, please tell me!
arkainth (51 rep)
Aug 19, 2019, 01:19 PM • Last activity: Jul 7, 2021, 02:57 PM
2 votes
0 answers
130 views
How to cryptographically verify the authenticity and integrity of Android Studio releases (with gpg?)
For a given Android Studio release published by Google, how can I cryptographically verify the authenticity and integrity of the `.tar.gz` file that I downloaded before I copy it onto a USB drive and attempt to install it on my laptop? Today I wanted to download Android Studio, but the download page...
For a given Android Studio release published by Google, how can I cryptographically verify the authenticity and integrity of the .tar.gz file that I downloaded before I copy it onto a USB drive and attempt to install it on my laptop? Today I wanted to download Android Studio, but the download page said nothing about how to cryptographically verify the integrity and authenticity of their release after download. https://developer.android.com/studio#downloads I expected to see a message on the download page telling me: 1. The fingerprint of their PGP release signing key, 1. A link to further documentation, and 1. Links to [a] a manifest file (eg SHA256SUMS) and [b] a detached signature of that manifest file (eg SHA256SUMS.asc, SHA256SUMS.sig, SHA256SUMS.gpg, etc) Unfortunately, the only information I found on the download page was how to verify the integrity of the tarball using a SHA-256 checksum found in a table on the same page. Obviously, this checks integrity but not authenticity. And it provides no security because it's not out-of-band from the .tar.gz itself. How can I preform cryptographic integrity and authenticity verification with Google's Android Studio releases?
Michael Altfield (526 rep)
Mar 23, 2021, 10:47 PM • Last activity: Mar 23, 2021, 10:54 PM
0 votes
1 answers
57269 views
Unpatching (Disable .APK Signature Verification & Signature verification status always true) in Lucky Patcher?
I applied the patch (*Disable .apk Signature Verification* and *Signature verification status always true*) in Lucky Patcher by going to Lucky Patcher >> ToolBox >> Apply Patch to Android. Now I want to unpatch, but there is no option to do so kindly help! ![Screenshot](https://i.sstatic.net/ldPLml....
I applied the patch (*Disable .apk Signature Verification* and *Signature verification status always true*) in Lucky Patcher by going to Lucky Patcher >> ToolBox >> Apply Patch to Android. Now I want to unpatch, but there is no option to do so kindly help! ![Screenshot](https://i.sstatic.net/ldPLml.png)
Sagar Gupta (1 rep)
May 28, 2017, 02:05 AM • Last activity: May 11, 2020, 04:42 PM
2 votes
1 answers
2247 views
Does LineageOS provide "Zip Signature Verification"
TWRP provides an option on boot for "Zip signature verification". Is that option part of Android ROM packaging and would LineageOS support it? For me, that option does Checking for Digest file... Skipping Digest check: no Digest file found verifying zip signature... Zip signature verification failed...
TWRP provides an option on boot for "Zip signature verification". Is that option part of Android ROM packaging and would LineageOS support it? For me, that option does Checking for Digest file... Skipping Digest check: no Digest file found verifying zip signature... Zip signature verification failed! Error installing zip file '/data/lineageos_updates/lineage-nightly-n1awifi-signed.zip' Updating partition details... ...done I ask this because this ROM was download with the OTA update from LineageOS, and when it failed I download a new ROM from the website and it also failed.
Evan Carroll (4661 rep)
Dec 3, 2018, 04:17 PM • Last activity: Dec 13, 2019, 03:22 PM
1 votes
0 answers
3163 views
signing custom OTA update .zip file
We have a kiosk application that needs to be able to periodically do OTA updates using our self-made OTA update .zip files. Our custom OTA update .zip file have the following files: /data/misc/adb/ adb_keys /system /priv-app/ MyApp.apk /vendor/ build.prop /META-INF/com/google/android/ update-binary...
We have a kiosk application that needs to be able to periodically do OTA updates using our self-made OTA update .zip files. Our custom OTA update .zip file have the following files: /data/misc/adb/ adb_keys /system /priv-app/ MyApp.apk /vendor/ build.prop /META-INF/com/google/android/ update-binary updater-script We have used many different tablets like Galaxy Tab 3, Galaxy Tab 4 and Yoga 3, the only thing we have had to do is to replace the mount command arguments inside updater-script with the right ones for each tablet. Of couse, since we do not have the release keys of each of these tablets, we have had to replace every Recovery with its own TWRP Recovery replacement, in order to be able to flash our custom OTA update file. All this worked like a charm every time. Now we bought new tablets from a chinese manufacturer and when we tried to flash our OTA update package we got the following error: Verifying update package... E:footer is wrong E:signature verification failed Restarting adbd... Installation aborted. From that message is clear that error occurred because the OTA update .zip file was not signed. So, I asked from the manufacturer the release keys and the instructions in order to sign our OTA update .zip file and being able to flash it. The problem is that the manufacturer's engineers have no clue of how to do this (signing OTA update files so they don't get rejected by their Recovery), which seems like a very common problem because we asked in multiple manufacturers and nobody knows how to do this. So, I would like to ask for your help since I cannot find the instructions on how to sign it. Anybody knows how to do it?
Storo (303 rep)
Oct 17, 2018, 01:10 PM • Last activity: Oct 17, 2018, 02:25 PM
1 votes
1 answers
4884 views
GMail app not displaying signature
**Issue:** When replying or creating a new email, the signature does not load. How to replicate: From the GMail app: Settings - mail@mail.com - Signature - set any text - create a new message Notes: there's no Google Account set on this phone. The GMail and Google Play Services APKs were downloaded...
**Issue:** When replying or creating a new email, the signature does not load. How to replicate: From the GMail app: Settings - mail@mail.com - Signature - set any text - create a new message Notes: there's no Google Account set on this phone. The GMail and Google Play Services APKs were downloaded from APKMirror What has been tried: - Setting up Exchange and YahooMail accounts - Clearing the app's data and reinstalling it - Restarting the phone - Changing the phone's language from Brazilian Portuguese to English (United States) What else can I try? Thanks in advance GMail versions tested: 7.5.21.158049789.release 7.5.7.156101332.release Google Play Services versions tested: 10.2.91 (430-144333517) 11.0.55 (430-156917137) Device: Moto G4 Play (harpia) Android version installed: 6.0.1 (stock, non-rooted)
shigutso (11 rep)
Jun 9, 2017, 03:12 PM • Last activity: Feb 1, 2018, 02:33 PM
0 votes
1 answers
403 views
Re-sign APK to prevent updating - crashes "divide by zero"
I'm using an app that has been updated, but doesn't work on my phone on the current version. So I'm currently using an older one. But of course it always shows up with an update in the PlayStore. Now I've found one workaround to be signing the apk with my own key. Therefor, it would not be recognize...
I'm using an app that has been updated, but doesn't work on my phone on the current version. So I'm currently using an older one. But of course it always shows up with an update in the PlayStore. Now I've found one workaround to be signing the apk with my own key. Therefor, it would not be recognized anymore by the PlayStore. It is a banking app (code verification). The app at first seems fine. Unfortunately, when I try to scan the activation code, the self-signed version crashes. Via adb logcat it throws this error: java.lang.ArithmeticException: divide by zero Is this some kind of security mechanism inside the app to check whether the certificate is the correct one? Shouldn't it be possible to alter this check? Or is there a way to trace with action causes the divide by zero exception?
TJJ (190 rep)
Nov 28, 2016, 01:22 PM • Last activity: Nov 28, 2016, 03:20 PM
2 votes
2 answers
15272 views
Error Sideloading Android L
I am trying to update my Nexus 7 (2013) WiFi to Android 5.0 with `adb sideload`. I get this error: Finding update package... Opening update package... Verifying update package... E:footer is wrong E:signature verification failed Installation aborted. I have the file (razor). It is a .tgz file, so I...
I am trying to update my Nexus 7 (2013) WiFi to Android 5.0 with adb sideload. I get this error: Finding update package... Opening update package... Verifying update package... E:footer is wrong E:signature verification failed Installation aborted. I have the file (razor). It is a .tgz file, so I entered into the command prompt (I opened inside SDK platorm-tools) and ran adb sideload beaverlog.tgz and it gave me that error (beaverlog is what I named the file). The instructions also said to do it as a .zip file but I couldn't find a .zip file.
TJ Samojedny (61 rep)
Dec 2, 2014, 10:29 PM • Last activity: Jun 30, 2015, 09:33 AM
Showing page 1 of 20 total questions