An app I'm developing installs and runs fine on ARM11 (ARMv6) devices when I deploy via ADB or install the .apk that gets generated in /bin, however once I sign the .apk (using Eclipses 'export signed apk feature') the resultant .apk will not install on some devices.
By taking note of the processors used by devices for which it works and doesn't work, plus some searching and reading I've identified the problem seems to apply to ARM11 devices (i.e. ARMv6 processors).
I'm using Proguard, and at first assumed it was to blame, however I since bypassed any proguard shennanigans by commenting out the applicable line in project.properties - still the signed .apk won't install on those ARM 11 devices.
Have also noticed that the ARM11 devices are running Android versions no greater than 2.2.1, although I don't have any ARM11 devices running 2.2.2 or higher to verify if 2.2.1 is a part of the problem.
I'm including 2 external jars in the project, but the fact that the /bin apk installs and works suggests the jars aren't part of the problem.
Any knowledge you may have, or direction as to how I should hunt for a solution = much appreciated!