38 lines
2 KiB
XML
Executable file
38 lines
2 KiB
XML
Executable file
<!--
|
|
Copyright 2014 Soichiro Kashima
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.github.ksoichiro.android.observablescrollview.test">
|
|
|
|
<application>
|
|
<uses-library android:name="android.test.runner" />
|
|
<activity android:name=".GridViewActivity" />
|
|
<activity android:name=".ListViewActivity" />
|
|
<activity android:name=".ListViewScrollFromBottomActivity" />
|
|
<activity android:name=".RecyclerViewActivity" />
|
|
<activity android:name=".RecyclerViewScrollFromBottomActivity" />
|
|
<activity android:name=".ScrollViewActivity" />
|
|
<activity android:name=".TouchInterceptionGridViewActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".TouchInterceptionListViewActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".TouchInterceptionRecyclerViewActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".TouchInterceptionScrollViewActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".TouchInterceptionWebViewActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".ViewPagerTabActivity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".ViewPagerTab2Activity" android:theme="@style/AppTheme.Toolbar" />
|
|
<activity android:name=".WebViewActivity" />
|
|
</application>
|
|
|
|
</manifest>
|