GEOFENCE_NOT_AVAIBLE (code 1000) while trying to set up geofence












1















The problem occurs on Android older than Oreo and both Oreo and newer.



I can't get geofences working even though following steps are done:




  • Location services are set to High Accuracy

  • Wi-Fi and mobile data are enabled

  • Application is granted location permissions

  • Google Services are added to the project

  • Google Services and Play Store are up to date and installed on the device

  • Disabled battery optimizations (testing purpose)


I've checked with the following code if GPS_PROVIDER and NETWORK_PROVIDER are enabled:



@Override
protected void onResume() {
super.onResume();
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.v("Provider", "GPS Provider is avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.v("Network Provider", "provider is avaible");
}

}


Those both above gave me positive result, so problem can't be here.



Exact error:




E/Geofence: com.google.android.gms.common.api.ApiException: 1000:




I set mGeofencingClient in the begin of onCreate:



  @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGeofencingClient = LocationServices.getGeofencingClient(getApplicationContext());


I set geofences with the following code:



            mGeofenceList.add(
new Geofence.Builder()
.setRequestId("blablabla")
.setCircularRegion(50.32, 43.23, 232)
.setExpirationDuration(-1L)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.build());

// }
PermissionCheck mPermissionCheck = new PermissionCheck();
if (!mPermissionCheck.isPermissionGranted(getApplicationContext())){
mPermissionCheck.askForPermission(MainActivity.this);
return;
}
setGeofences();


}

private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Geofencing.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
mGeofencingClient.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(MainActivity.this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MainActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MainActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


This code is almost the same as from Google Documentation.
Manifest permission:



<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.location.network"/>
<uses-feature android:name="android.hardware.location.gps"/>


Gradle:



implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'


Can anyone see the mystake I could have done?
Thanks in advance!










share|improve this question

























  • At what point do you set the mGeofencingClient and which context do you provide it?

    – Andy
    Jan 1 at 17:31











  • I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

    – Domin
    Jan 1 at 17:35











  • And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

    – Andy
    Jan 1 at 17:43











  • Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

    – Domin
    Jan 1 at 17:55











  • Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

    – Domin
    Jan 1 at 18:20
















1















The problem occurs on Android older than Oreo and both Oreo and newer.



I can't get geofences working even though following steps are done:




  • Location services are set to High Accuracy

  • Wi-Fi and mobile data are enabled

  • Application is granted location permissions

  • Google Services are added to the project

  • Google Services and Play Store are up to date and installed on the device

  • Disabled battery optimizations (testing purpose)


I've checked with the following code if GPS_PROVIDER and NETWORK_PROVIDER are enabled:



@Override
protected void onResume() {
super.onResume();
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.v("Provider", "GPS Provider is avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.v("Network Provider", "provider is avaible");
}

}


Those both above gave me positive result, so problem can't be here.



Exact error:




E/Geofence: com.google.android.gms.common.api.ApiException: 1000:




I set mGeofencingClient in the begin of onCreate:



  @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGeofencingClient = LocationServices.getGeofencingClient(getApplicationContext());


I set geofences with the following code:



            mGeofenceList.add(
new Geofence.Builder()
.setRequestId("blablabla")
.setCircularRegion(50.32, 43.23, 232)
.setExpirationDuration(-1L)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.build());

// }
PermissionCheck mPermissionCheck = new PermissionCheck();
if (!mPermissionCheck.isPermissionGranted(getApplicationContext())){
mPermissionCheck.askForPermission(MainActivity.this);
return;
}
setGeofences();


}

private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Geofencing.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
mGeofencingClient.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(MainActivity.this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MainActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MainActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


This code is almost the same as from Google Documentation.
Manifest permission:



<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.location.network"/>
<uses-feature android:name="android.hardware.location.gps"/>


Gradle:



implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'


Can anyone see the mystake I could have done?
Thanks in advance!










share|improve this question

























  • At what point do you set the mGeofencingClient and which context do you provide it?

    – Andy
    Jan 1 at 17:31











  • I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

    – Domin
    Jan 1 at 17:35











  • And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

    – Andy
    Jan 1 at 17:43











  • Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

    – Domin
    Jan 1 at 17:55











  • Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

    – Domin
    Jan 1 at 18:20














1












1








1








The problem occurs on Android older than Oreo and both Oreo and newer.



I can't get geofences working even though following steps are done:




  • Location services are set to High Accuracy

  • Wi-Fi and mobile data are enabled

  • Application is granted location permissions

  • Google Services are added to the project

  • Google Services and Play Store are up to date and installed on the device

  • Disabled battery optimizations (testing purpose)


I've checked with the following code if GPS_PROVIDER and NETWORK_PROVIDER are enabled:



@Override
protected void onResume() {
super.onResume();
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.v("Provider", "GPS Provider is avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.v("Network Provider", "provider is avaible");
}

}


Those both above gave me positive result, so problem can't be here.



Exact error:




E/Geofence: com.google.android.gms.common.api.ApiException: 1000:




I set mGeofencingClient in the begin of onCreate:



  @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGeofencingClient = LocationServices.getGeofencingClient(getApplicationContext());


I set geofences with the following code:



            mGeofenceList.add(
new Geofence.Builder()
.setRequestId("blablabla")
.setCircularRegion(50.32, 43.23, 232)
.setExpirationDuration(-1L)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.build());

// }
PermissionCheck mPermissionCheck = new PermissionCheck();
if (!mPermissionCheck.isPermissionGranted(getApplicationContext())){
mPermissionCheck.askForPermission(MainActivity.this);
return;
}
setGeofences();


}

private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Geofencing.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
mGeofencingClient.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(MainActivity.this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MainActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MainActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


This code is almost the same as from Google Documentation.
Manifest permission:



<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.location.network"/>
<uses-feature android:name="android.hardware.location.gps"/>


Gradle:



implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'


Can anyone see the mystake I could have done?
Thanks in advance!










share|improve this question
















The problem occurs on Android older than Oreo and both Oreo and newer.



I can't get geofences working even though following steps are done:




  • Location services are set to High Accuracy

  • Wi-Fi and mobile data are enabled

  • Application is granted location permissions

  • Google Services are added to the project

  • Google Services and Play Store are up to date and installed on the device

  • Disabled battery optimizations (testing purpose)


I've checked with the following code if GPS_PROVIDER and NETWORK_PROVIDER are enabled:



@Override
protected void onResume() {
super.onResume();
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.v("Provider", "GPS Provider is avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
} else if (manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.v("Network Provider", "provider is avaible");
}

}


Those both above gave me positive result, so problem can't be here.



Exact error:




E/Geofence: com.google.android.gms.common.api.ApiException: 1000:




I set mGeofencingClient in the begin of onCreate:



  @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mGeofencingClient = LocationServices.getGeofencingClient(getApplicationContext());


I set geofences with the following code:



            mGeofenceList.add(
new Geofence.Builder()
.setRequestId("blablabla")
.setCircularRegion(50.32, 43.23, 232)
.setExpirationDuration(-1L)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER |
Geofence.GEOFENCE_TRANSITION_EXIT)
.build());

// }
PermissionCheck mPermissionCheck = new PermissionCheck();
if (!mPermissionCheck.isPermissionGranted(getApplicationContext())){
mPermissionCheck.askForPermission(MainActivity.this);
return;
}
setGeofences();


}

private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Geofencing.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
mGeofencingClient.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(MainActivity.this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MainActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MainActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


This code is almost the same as from Google Documentation.
Manifest permission:



<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-feature android:name="android.hardware.location.network"/>
<uses-feature android:name="android.hardware.location.gps"/>


Gradle:



implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'


Can anyone see the mystake I could have done?
Thanks in advance!







java android geolocation android-geofence






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 1 at 19:21







Domin

















asked Jan 1 at 14:14









DominDomin

457114




457114













  • At what point do you set the mGeofencingClient and which context do you provide it?

    – Andy
    Jan 1 at 17:31











  • I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

    – Domin
    Jan 1 at 17:35











  • And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

    – Andy
    Jan 1 at 17:43











  • Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

    – Domin
    Jan 1 at 17:55











  • Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

    – Domin
    Jan 1 at 18:20



















  • At what point do you set the mGeofencingClient and which context do you provide it?

    – Andy
    Jan 1 at 17:31











  • I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

    – Domin
    Jan 1 at 17:35











  • And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

    – Andy
    Jan 1 at 17:43











  • Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

    – Domin
    Jan 1 at 17:55











  • Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

    – Domin
    Jan 1 at 18:20

















At what point do you set the mGeofencingClient and which context do you provide it?

– Andy
Jan 1 at 17:31





At what point do you set the mGeofencingClient and which context do you provide it?

– Andy
Jan 1 at 17:31













I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

– Domin
Jan 1 at 17:35





I've updated the code. I set mGeofencingClient in the begin of onCreate and provide getApplicationContext.

– Domin
Jan 1 at 17:35













And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

– Andy
Jan 1 at 17:43





And have you added LocationServices to the GoogleApiClient - (I'm just running through a checklist of things my app does - no need to post code) (1000 is the API error code)?

– Andy
Jan 1 at 17:43













Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

– Domin
Jan 1 at 17:55





Do you mean Gradle implementation or I should programmatically add LocationServices to the GoogleApiClient? If programmatically (in the code) I haven't, because I used LocationManager

– Domin
Jan 1 at 17:55













Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

– Domin
Jan 1 at 18:20





Okay, I made a little mess here. in my code I have LocationManager which requests LocationUpdates from GPS_PROVIDER and NETWORK_PROVIDER. I don't have instance of GoogleApiClient. 1000 is shown as API error code

– Domin
Jan 1 at 18:20












1 Answer
1






active

oldest

votes


















1














OK this is a minimal working program for geofences based on you OP - just to rule out your code implementation - there's a couple other interfaces implemented for other tests so ignore.



"Working" means it successfuly adds the geofence.:



public class MapsActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener, LocationListener, ActivityCompat.OnRequestPermissionsResultCallback {

private List<Geofence> mGeofenceList = new ArrayList<>();

private GeofencingClient gfc;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);

gfc = LocationServices.getGeofencingClient(getApplicationContext());

mGeofenceList.add(new Geofence.Builder().setRequestId("aa").setCircularRegion(50.32, 43.23, 232).setExpirationDuration(-1L).setTransitionTypes(
Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT).build());


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Check Permissions Now
ActivityCompat.requestPermissions(this,
new String{Manifest.permission.ACCESS_FINE_LOCATION},
1);
}

else {
setGeofences();
}

}


private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent mGeofencePendingIntent;

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Object.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
gfc.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MapsActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MapsActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions, @NonNull int grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

setGeofences();

}

}


After some investigation I found I could recreate the 1000 error code with this code sample. It is based on this forum post: https://androidforums.com/threads/error-adding-geofence-on-android-8.1289302/



So to follow those directions (to fix - but I flipped them to recreate and then fix):



Use phone "Settings | Security & location | Location | Mode" - toggle between "High accuracy, Battery saving or Device only" until you get this prompt (the settings path will vary depending on android build):



enter image description here



In this example code - if you respond with "DISAGREE", the example code will generate the 1000 error code; if you repeat and respond with "AGREE" it will be successful in adding the geofence.






share|improve this answer


























  • Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

    – Domin
    Jan 1 at 19:09











  • correct - might as well specify your target api level and testing device.

    – Andy
    Jan 1 at 19:11











  • I've tried on both physical and emulator with different APIs level - since 26 to 28

    – Domin
    Jan 1 at 19:17











  • Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

    – Andy
    Jan 1 at 19:19













  • unfortunately I'm using the same too

    – Domin
    Jan 1 at 19:20











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996168%2fgeofence-not-avaible-code-1000-while-trying-to-set-up-geofence%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














OK this is a minimal working program for geofences based on you OP - just to rule out your code implementation - there's a couple other interfaces implemented for other tests so ignore.



"Working" means it successfuly adds the geofence.:



public class MapsActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener, LocationListener, ActivityCompat.OnRequestPermissionsResultCallback {

private List<Geofence> mGeofenceList = new ArrayList<>();

private GeofencingClient gfc;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);

gfc = LocationServices.getGeofencingClient(getApplicationContext());

mGeofenceList.add(new Geofence.Builder().setRequestId("aa").setCircularRegion(50.32, 43.23, 232).setExpirationDuration(-1L).setTransitionTypes(
Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT).build());


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Check Permissions Now
ActivityCompat.requestPermissions(this,
new String{Manifest.permission.ACCESS_FINE_LOCATION},
1);
}

else {
setGeofences();
}

}


private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent mGeofencePendingIntent;

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Object.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
gfc.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MapsActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MapsActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions, @NonNull int grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

setGeofences();

}

}


After some investigation I found I could recreate the 1000 error code with this code sample. It is based on this forum post: https://androidforums.com/threads/error-adding-geofence-on-android-8.1289302/



So to follow those directions (to fix - but I flipped them to recreate and then fix):



Use phone "Settings | Security & location | Location | Mode" - toggle between "High accuracy, Battery saving or Device only" until you get this prompt (the settings path will vary depending on android build):



enter image description here



In this example code - if you respond with "DISAGREE", the example code will generate the 1000 error code; if you repeat and respond with "AGREE" it will be successful in adding the geofence.






share|improve this answer


























  • Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

    – Domin
    Jan 1 at 19:09











  • correct - might as well specify your target api level and testing device.

    – Andy
    Jan 1 at 19:11











  • I've tried on both physical and emulator with different APIs level - since 26 to 28

    – Domin
    Jan 1 at 19:17











  • Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

    – Andy
    Jan 1 at 19:19













  • unfortunately I'm using the same too

    – Domin
    Jan 1 at 19:20
















1














OK this is a minimal working program for geofences based on you OP - just to rule out your code implementation - there's a couple other interfaces implemented for other tests so ignore.



"Working" means it successfuly adds the geofence.:



public class MapsActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener, LocationListener, ActivityCompat.OnRequestPermissionsResultCallback {

private List<Geofence> mGeofenceList = new ArrayList<>();

private GeofencingClient gfc;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);

gfc = LocationServices.getGeofencingClient(getApplicationContext());

mGeofenceList.add(new Geofence.Builder().setRequestId("aa").setCircularRegion(50.32, 43.23, 232).setExpirationDuration(-1L).setTransitionTypes(
Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT).build());


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Check Permissions Now
ActivityCompat.requestPermissions(this,
new String{Manifest.permission.ACCESS_FINE_LOCATION},
1);
}

else {
setGeofences();
}

}


private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent mGeofencePendingIntent;

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Object.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
gfc.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MapsActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MapsActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions, @NonNull int grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

setGeofences();

}

}


After some investigation I found I could recreate the 1000 error code with this code sample. It is based on this forum post: https://androidforums.com/threads/error-adding-geofence-on-android-8.1289302/



So to follow those directions (to fix - but I flipped them to recreate and then fix):



Use phone "Settings | Security & location | Location | Mode" - toggle between "High accuracy, Battery saving or Device only" until you get this prompt (the settings path will vary depending on android build):



enter image description here



In this example code - if you respond with "DISAGREE", the example code will generate the 1000 error code; if you repeat and respond with "AGREE" it will be successful in adding the geofence.






share|improve this answer


























  • Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

    – Domin
    Jan 1 at 19:09











  • correct - might as well specify your target api level and testing device.

    – Andy
    Jan 1 at 19:11











  • I've tried on both physical and emulator with different APIs level - since 26 to 28

    – Domin
    Jan 1 at 19:17











  • Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

    – Andy
    Jan 1 at 19:19













  • unfortunately I'm using the same too

    – Domin
    Jan 1 at 19:20














1












1








1







OK this is a minimal working program for geofences based on you OP - just to rule out your code implementation - there's a couple other interfaces implemented for other tests so ignore.



"Working" means it successfuly adds the geofence.:



public class MapsActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener, LocationListener, ActivityCompat.OnRequestPermissionsResultCallback {

private List<Geofence> mGeofenceList = new ArrayList<>();

private GeofencingClient gfc;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);

gfc = LocationServices.getGeofencingClient(getApplicationContext());

mGeofenceList.add(new Geofence.Builder().setRequestId("aa").setCircularRegion(50.32, 43.23, 232).setExpirationDuration(-1L).setTransitionTypes(
Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT).build());


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Check Permissions Now
ActivityCompat.requestPermissions(this,
new String{Manifest.permission.ACCESS_FINE_LOCATION},
1);
}

else {
setGeofences();
}

}


private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent mGeofencePendingIntent;

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Object.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
gfc.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MapsActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MapsActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions, @NonNull int grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

setGeofences();

}

}


After some investigation I found I could recreate the 1000 error code with this code sample. It is based on this forum post: https://androidforums.com/threads/error-adding-geofence-on-android-8.1289302/



So to follow those directions (to fix - but I flipped them to recreate and then fix):



Use phone "Settings | Security & location | Location | Mode" - toggle between "High accuracy, Battery saving or Device only" until you get this prompt (the settings path will vary depending on android build):



enter image description here



In this example code - if you respond with "DISAGREE", the example code will generate the 1000 error code; if you repeat and respond with "AGREE" it will be successful in adding the geofence.






share|improve this answer















OK this is a minimal working program for geofences based on you OP - just to rule out your code implementation - there's a couple other interfaces implemented for other tests so ignore.



"Working" means it successfuly adds the geofence.:



public class MapsActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks,
GoogleApiClient.OnConnectionFailedListener, LocationListener, ActivityCompat.OnRequestPermissionsResultCallback {

private List<Geofence> mGeofenceList = new ArrayList<>();

private GeofencingClient gfc;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);

gfc = LocationServices.getGeofencingClient(getApplicationContext());

mGeofenceList.add(new Geofence.Builder().setRequestId("aa").setCircularRegion(50.32, 43.23, 232).setExpirationDuration(-1L).setTransitionTypes(
Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT).build());


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
// Check Permissions Now
ActivityCompat.requestPermissions(this,
new String{Manifest.permission.ACCESS_FINE_LOCATION},
1);
}

else {
setGeofences();
}

}


private GeofencingRequest getGeofencingRequest(){
if (mGeofenceList.isEmpty()){
return null;}
Log.v("mGeofenceList", mGeofenceList.toString());
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER |
GeofencingRequest.INITIAL_TRIGGER_EXIT);
builder.addGeofences(mGeofenceList);
return builder.build();
}

private PendingIntent mGeofencePendingIntent;

private PendingIntent getGeofencePendingIntent(){
if (mGeofencePendingIntent != null){
return mGeofencePendingIntent;
}
Intent intent = new Intent(getApplicationContext(), Object.class);
mGeofencePendingIntent = PendingIntent.getService(getApplication(),
0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}

@SuppressLint("MissingPermission")
private void setGeofences(){
GeofencingRequest geofencingRequest = getGeofencingRequest();
PendingIntent pi = getGeofencePendingIntent();
gfc.addGeofences(geofencingRequest, pi)
.addOnSuccessListener(this, new OnSuccessListener<Void>() {
@Override
public void onSuccess(Void aVoid) {
Log.d("Geofences", "geofencing set up succesfully");
Toast.makeText(MapsActivity.this, "Geofences set up", Toast.LENGTH_SHORT).show();

}
})
.addOnFailureListener(MapsActivity.this, new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
Log.e("Geofence", e.toString());
LocationManager manager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER)){
Log.e("Provider", "Provider is not avaible");
}
if (!manager.isProviderEnabled(LocationManager.NETWORK_PROVIDER)){
Log.e("Network Provider", "Provider is not avaible");
}

}
});
}


@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String permissions, @NonNull int grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);

setGeofences();

}

}


After some investigation I found I could recreate the 1000 error code with this code sample. It is based on this forum post: https://androidforums.com/threads/error-adding-geofence-on-android-8.1289302/



So to follow those directions (to fix - but I flipped them to recreate and then fix):



Use phone "Settings | Security & location | Location | Mode" - toggle between "High accuracy, Battery saving or Device only" until you get this prompt (the settings path will vary depending on android build):



enter image description here



In this example code - if you respond with "DISAGREE", the example code will generate the 1000 error code; if you repeat and respond with "AGREE" it will be successful in adding the geofence.







share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 1 at 20:04

























answered Jan 1 at 19:03









AndyAndy

1,16521018




1,16521018













  • Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

    – Domin
    Jan 1 at 19:09











  • correct - might as well specify your target api level and testing device.

    – Andy
    Jan 1 at 19:11











  • I've tried on both physical and emulator with different APIs level - since 26 to 28

    – Domin
    Jan 1 at 19:17











  • Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

    – Andy
    Jan 1 at 19:19













  • unfortunately I'm using the same too

    – Domin
    Jan 1 at 19:20



















  • Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

    – Domin
    Jan 1 at 19:09











  • correct - might as well specify your target api level and testing device.

    – Andy
    Jan 1 at 19:11











  • I've tried on both physical and emulator with different APIs level - since 26 to 28

    – Domin
    Jan 1 at 19:17











  • Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

    – Andy
    Jan 1 at 19:19













  • unfortunately I'm using the same too

    – Domin
    Jan 1 at 19:20

















Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

– Domin
Jan 1 at 19:09





Thanks for your sample. The funniest thing is that, I still get the same error (1000). So in your case, in onSuccess in addOnSuccessListener it logs you, that geofences are set up succesfully?

– Domin
Jan 1 at 19:09













correct - might as well specify your target api level and testing device.

– Andy
Jan 1 at 19:11





correct - might as well specify your target api level and testing device.

– Andy
Jan 1 at 19:11













I've tried on both physical and emulator with different APIs level - since 26 to 28

– Domin
Jan 1 at 19:17





I've tried on both physical and emulator with different APIs level - since 26 to 28

– Domin
Jan 1 at 19:17













Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

– Andy
Jan 1 at 19:19







Post your app's build.gradle - so I can be sure I'm using same library levels - I'm using com.google.android.gms:play-services-location:16.0.0

– Andy
Jan 1 at 19:19















unfortunately I'm using the same too

– Domin
Jan 1 at 19:20





unfortunately I'm using the same too

– Domin
Jan 1 at 19:20




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996168%2fgeofence-not-avaible-code-1000-while-trying-to-set-up-geofence%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

How to fix TextFormField cause rebuild widget in Flutter

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith