I had a problem when Proguard removed Google Play Services libraries from my application.
I had to add the following lines of text to the proguard-android.txt file found in this folder:
/(Path to your Android SDK Folder)/tools/proguard
-keep public class com.google.android.gms.* { public *; } -dontwarn com.google.android.gms.**
Full proguard-android.txt file
-keep public class com.google.android.gms.* { public *; } -dontwarn com.google.android.gms.**
source share