blob: 47539a1db996282ab97d2314c0670b1b029855a2 [file] [log] [blame]
Dianne Hackbornb4163a62012-08-02 18:31:26 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.google.android.test.activity;
18
19import android.content.BroadcastReceiver;
20import android.content.Context;
21import android.content.Intent;
Dianne Hackborn7d19e022012-08-07 19:12:33 -070022import android.os.Bundle;
23import android.os.Process;
Dianne Hackborn79af1dd2012-08-16 16:42:52 -070024import android.os.UserHandle;
Dianne Hackbornb4163a62012-08-02 18:31:26 -070025import android.util.Log;
26
27public class UserTarget extends BroadcastReceiver {
28 @Override
29 public void onReceive(Context context, Intent intent) {
30 Log.i("ActivityTest", "Received: " + intent);
Dianne Hackborn7d19e022012-08-07 19:12:33 -070031 Bundle res = getResultExtras(true);
Dianne Hackborn79af1dd2012-08-16 16:42:52 -070032 res.putInt("user", UserHandle.myUserId());
Dianne Hackborn7d19e022012-08-07 19:12:33 -070033 setResultExtras(res);
Dianne Hackbornb4163a62012-08-02 18:31:26 -070034 }
35}