Exclude GMS dependency injection

This commit is contained in:
Javi Rueda 2020-12-18 15:06:59 +01:00
parent 4c9f037ecc
commit 1ffe051525
2 changed files with 4 additions and 2 deletions

View file

@ -58,6 +58,10 @@ configurations {
all { all {
exclude module: 'httpclient' exclude module: 'httpclient'
exclude module: 'commons-logging' exclude module: 'commons-logging'
all*.exclude group:'com.google.android.gms', module:'play-services-flags'
all*.exclude group:'com.google.android.gms', module:'play-services-base'
all*.exclude group:'com.google.android.gms', module:'play-services-tasks'
all*.exclude group:'com.google.android.gms', module:'play-services-basement'
} }
} }

View file

@ -18,8 +18,6 @@ import androidx.appcompat.app.ActionBar;
import androidx.core.content.FileProvider; import androidx.core.content.FileProvider;
import androidx.preference.PreferenceManager; import androidx.preference.PreferenceManager;
import com.google.android.gms.tasks.OnCompleteListener;
import com.google.android.gms.tasks.Task;
import com.google.android.material.snackbar.Snackbar; import com.google.android.material.snackbar.Snackbar;
import org.json.JSONObject; import org.json.JSONObject;