164587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski/*
264587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * Copyright (C) 2016 The Android Open Source Project
364587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski *
464587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * Licensed under the Apache License, Version 2.0 (the "License");
564587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * you may not use this file except in compliance with the License.
664587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * You may obtain a copy of the License at
764587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski *
864587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski *      http://www.apache.org/licenses/LICENSE-2.0
964587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski *
1064587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * Unless required by applicable law or agreed to in writing, software
1164587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * distributed under the License is distributed on an "AS IS" BASIS,
1264587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1364587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * See the License for the specific language governing permissions and
1464587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski * limitations under the License.
1564587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski */
1664587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinskipackage com.android.aapt.staticlib.two;
1764587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski
1864587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinskipublic class StaticLibTwo {
1964587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski    // IDs from StaticLibOne
2064587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski    public static int FooId = com.android.aapt.staticlib.one.R.string.Foo;
2164587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski    public static int LayoutId = com.android.aapt.staticlib.one.R.layout.layout;
2264587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski
2364587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski    // IDs from StaticLibTwo
2464587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski    public static int FooBarId = com.android.aapt.staticlib.two.R.string.FooBar;
2564587af8179affd38ee26543b748f2d63b7f67bbAdam Lesinski}
26