1923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan/*
2923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * Copyright (C) 2017 The Android Open Source Project
3923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan *
4923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * Licensed under the Apache License, Version 2.0 (the "License");
5923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * you may not use this file except in compliance with the License.
6923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * You may obtain a copy of the License at
7923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan *
8923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan *      http://www.apache.org/licenses/LICENSE-2.0
9923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan *
10923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * Unless required by applicable law or agreed to in writing, software
11923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * distributed under the License is distributed on an "AS IS" BASIS,
12923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * See the License for the specific language governing permissions and
14923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan * limitations under the License.
15923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan */
16923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan
17923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwanpackage com.example.android.support.wear.app;
18923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan
19923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwanimport android.app.Activity;
20923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwanimport android.os.Bundle;
21923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan
22923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwanimport com.example.android.support.wear.R;
23923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan
24923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan/** Main activity for the Switch demo. */
25923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwanpublic class WearableSwitchDemo extends Activity {
26923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan    @Override
27923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan    protected void onCreate(Bundle savedInstanceState) {
28923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan        super.onCreate(savedInstanceState);
29923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan        setContentView(R.layout.switch_demo);
30923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan    }
31923f73e8df6152e83bbc66c7ea2831f93346273cMichael Kwan}
32