arkangelx
arkangelx
If you get an error from the network observable more than once, it replays the same error class type
I have the following code AndroidPermissions.check(this) .permissions(android.Manifest.permission.ACCESS_FINE_LOCATION) .hasPermissions(permissions -> { }) .noPermissions(permissions1 -> { ActivityCompat.requestPermissions(SplashActivity.this , new String[]{android.Manifest.permission.ACCESS_FINE_LOCATION} , REQUEST_CODE_ASK_PERMISSIONS); }) .check(); and switch (requestCode) { case REQUEST_CODE_ASK_PERMISSIONS: // If...