Use a system Image that doesn't contain google APIs.
you will find two types of images as you can see in the photo .
the ones the contain it will be named Google Api system image
,
or you can use genymotion it comes with no google apis installed by default.
Also to be sure you can use this method to check if Google play services are installed
private boolean checkPlayServices() {
int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
GooglePlayServicesUtil.getErrorDialog(resultCode, this,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.i("MY TAG GCM", "This device is not supported.");
finish();
}
return false;
}
return true;
}
