mirror of
https://github.com/TeamVanced/VancedMicroG
synced 2024-11-19 02:29:25 +01:00
Merge pull request #70 from haffenloher/fix/lint_newapi_errors
Add TargetApi annotations to ContextContainer to fix lint errors
This commit is contained in:
commit
6459743f34
@ -593,10 +593,12 @@ public class ContextContainer extends Context {
|
||||
return (File) safeInvoke("getBasePackageName", String.class, name);
|
||||
}
|
||||
|
||||
@TargetApi(17)
|
||||
public void startActivityAsUser(Intent intent, UserHandle user) {
|
||||
safeInvoke("startActivityAsUser", Intent.class, UserHandle.class, intent, user);
|
||||
}
|
||||
|
||||
@TargetApi(17)
|
||||
public void startActivityAsUser(Intent intent, Bundle options, UserHandle userId) {
|
||||
safeInvoke("startActivityAsUser", Intent.class, Bundle.class, UserHandle.class, intent, options, userId);
|
||||
}
|
||||
@ -609,6 +611,7 @@ public class ContextContainer extends Context {
|
||||
return (Boolean) safeInvoke("canStartActivityForResult");
|
||||
}
|
||||
|
||||
@TargetApi(17)
|
||||
public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) {
|
||||
safeInvoke("startActivitiesAsUser", new Class[]{Intent[].class, Bundle.class, UserHandle.class}, intents, options, userHandle);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user