1dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski/*
2dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * Copyright (C) 2017 The Android Open Source Project
3dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski *
4dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * Licensed under the Apache License, Version 2.0 (the "License");
5dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * you may not use this file except in compliance with the License.
6dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * You may obtain a copy of the License at
7dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski *
8dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski *      http://www.apache.org/licenses/LICENSE-2.0
9dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski *
10dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * Unless required by applicable law or agreed to in writing, software
11dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * distributed under the License is distributed on an "AS IS" BASIS,
12dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * See the License for the specific language governing permissions and
14dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski * limitations under the License.
15dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski */
16dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinskipackage com.android.aapt.namespace.split;
17dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski
18dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinskiimport android.app.Activity;
19dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinskiimport android.os.Bundle;
20dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski
21dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinskipublic class SplitActivity extends Activity {
22dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski    @Override
23dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski    protected void onCreate(Bundle savedInstanceState) {
24dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski        super.onCreate(savedInstanceState);
25dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski    }
26dc785052d0fb8a6651df25f42bf4254330445ce9Adam Lesinski}
27