"RAZR i" name in ACRA report

70 views Asked by At

I've integrated the ACRA crash report tool in my application. A great number of user that has "RAZR i" apologize about a start up issue but I'm not able to recognize this kind of device in ACRA report. Some of you know which kind of name has this device? Thanks

2

There are 2 answers

2
William On

This is not an ACRA issue. A quick Google shows that this is likely the Motorala Razr. Use a search engine

0
gregko On

Motorola "RAZR i" phone is unique in the CPU it uses - instead of ARM cpu, it uses Intel Atom processor. Therefore, if you employ any native library in your app, you should build it also for "x86" processor. Otherwise the application will not be able to start, as it won't use ARM native libraries. However, Google Play would also not let your app deploy to devices with Intel x86 processor, so maybe you do have an x86 library, but there is a bug in it? Best thing would be to test your app on an emulator with x86 processor - Google Android SDK provides such emulators, but I prefer Genymotion emulators in my work - http://www.genymotion.com/

Otherwise there is not enough information in your post to help more. Maybe paste the entire ACRA stack trace, that could tell us more.

Greg