10306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell/*
20306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * Copyright (C) 2012 The Android Open Source Project
30306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell *
40306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * Licensed under the Apache License, Version 2.0 (the "License");
50306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * you may not use this file except in compliance with the License.
60306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * You may obtain a copy of the License at
70306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell *
80306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell *      http://www.apache.org/licenses/LICENSE-2.0
90306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell *
100306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * Unless required by applicable law or agreed to in writing, software
110306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * distributed under the License is distributed on an "AS IS" BASIS,
120306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
130306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * See the License for the specific language governing permissions and
140306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell * limitations under the License.
150306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell */
160306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
17575e098da5bc16ff8b95ca080284253fd206fe12Adam Powellpackage android.support.v4.content;
180306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
19575e098da5bc16ff8b95ca080284253fd206fe12Adam Powellimport android.content.Context;
200306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.content.Intent;
210306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.os.Bundle;
220306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
23575e098da5bc16ff8b95ca080284253fd206fe12Adam Powellclass ContextCompatJellybean {
240306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
25575e098da5bc16ff8b95ca080284253fd206fe12Adam Powell    public static void startActivities(Context context, Intent[] intents, Bundle options) {
26575e098da5bc16ff8b95ca080284253fd206fe12Adam Powell        context.startActivities(intents, options);
270306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell    }
280306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
290306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell}
30