Description
I am using SQLCipher library to encrypt database in Android.
It works perfectly fine and database is also get encrypted.
But I am using Proguard for better security..so when i am going to sign app, Proguard gives me error like "Proguard returned with error code 1.See console"
And in console, it shows too many warning..
Warning: com.google.common.base.Equivalence: can't find referenced class javax.annotation.Nullable
Warning: com.google.common.base.Objects$ToStringHelper: can't find referenced class javax.annotation.Nullable
Warning: com.google.common.base.Predicates$AndPredicate: can't find referenced class javax.annotation.Nullable
Warning: there were 607 unresolved references to classes or interfaces.
You may need to specify additional library jars (using '-libraryjars').
java.io.IOException: Please correct the above warnings first.
If anyone know,please correct me.
Thanks..