1/*
2 * Copyright (C) 2014 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.android.tv.settings.accessories;
18
19import android.app.Activity;
20import android.content.Context;
21import android.content.Intent;
22import android.os.Bundle;
23import android.util.Log;
24import android.widget.Toast;
25
26import com.android.tv.settings.R;
27
28public class BluetoothDevicePickerActivity extends Activity {
29
30    public static final String TAG = "aah.BluetoothDevicePickerActivity";
31    private static final boolean DEBUG = false;
32
33    @Override
34    protected void onCreate(Bundle savedInstanceState) {
35        super.onCreate(savedInstanceState);
36
37        Intent intent = getIntent();
38
39        Log.d(TAG, "Bluetooth sharing not supported on this device, ignoring request. Intent = " +
40                intent);
41
42        String error = getString(R.string.error_action_not_supported);
43        Toast toast = Toast.makeText(this, error, Toast.LENGTH_SHORT);
44        toast.show();
45        finish();
46    }
47}
48