I keep getting the error message "Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease'."
According to stackoverflow question transformClassesAndResourcesWithProguardForRelease FAILED I need to just add the following code to my proguard-rules.pro:
-ignorewarnings
-keep class * {
public private *;
}
Where do I find this proguard-rules.pro file? Do i need to create it myself and if so, whereabouts should I put in my app directory?