mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-24 20:25:14 +00:00
Add SERVICE_MISSING_PERMISSION to ConnectionResult
This commit is contained in:
parent
aa18e807a3
commit
18a50244ff
1 changed files with 5 additions and 0 deletions
|
@ -115,6 +115,11 @@ public class ConnectionResult {
|
|||
* Using the API on the device should be avoided.
|
||||
*/
|
||||
public static final int API_UNAVAILABLE = 16;
|
||||
|
||||
/**
|
||||
* Service doesn't have one or more required permissions.
|
||||
*/
|
||||
public static final int SERVICE_MISSING_PERMISSION = 19;
|
||||
|
||||
/**
|
||||
* The Drive API requires external storage (such as an SD card), but no external storage is
|
||||
|
|
Loading…
Reference in a new issue