Every time I Export Signed Application from eclipse and install the apk file onto my phone, the app would crash. This only happens with Proguard enabled.
Here is my
I finally solved it. This is what I forgot to add to my Proguard file. The getters and setters.
-keep public class com.example.YourModelClassName { public *** get*(); public void set*(***); }