Merge "Fix captive portal app can be launched w/o MAINLINE_NETWORK_STACK permission" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
53e2a9b0ae
@@ -3497,7 +3497,8 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void startCaptivePortalAppInternal(Network network, Bundle appExtras) {
|
public void startCaptivePortalAppInternal(Network network, Bundle appExtras) {
|
||||||
mContext.checkCallingOrSelfPermission(NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK);
|
mContext.enforceCallingOrSelfPermission(NetworkStack.PERMISSION_MAINLINE_NETWORK_STACK,
|
||||||
|
"ConnectivityService");
|
||||||
|
|
||||||
final Intent appIntent = new Intent(ConnectivityManager.ACTION_CAPTIVE_PORTAL_SIGN_IN);
|
final Intent appIntent = new Intent(ConnectivityManager.ACTION_CAPTIVE_PORTAL_SIGN_IN);
|
||||||
appIntent.putExtras(appExtras);
|
appIntent.putExtras(appExtras);
|
||||||
|
|||||||
Reference in New Issue
Block a user