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
170306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellpackage android.support.v4.app;
180306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
190306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.app.PendingIntent;
200306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.content.Context;
210306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.content.Intent;
220306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellimport android.os.Bundle;
230306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
240306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powellclass TaskStackBuilderJellybean {
250306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
260306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell    public static PendingIntent getActivitiesPendingIntent(Context context, int requestCode,
270306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell            Intent[] intents, int flags, Bundle options) {
280306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell        return PendingIntent.getActivities(context, requestCode, intents, flags, options);
290306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell    }
300306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell
310306ebc908d5dcf148aa319a9734b419eacb23b5Adam Powell}
32