AndroidManifest.xml 1011 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.yidianling.tests">

    <application>
        <activity
            android:name=".list.view.TestListActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name=".list.view.TestCategoryListActivity"
            android:screenOrientation="portrait"
11
            android:theme="@style/tests_NoTitleTheme"
konghaorui committed
12 13 14 15 16 17 18
            />
        <activity
            android:name=".SelectConversationActivity"
            android:screenOrientation="portrait" />
        <activity
            android:name=".search.TestSearchActivity"
            android:screenOrientation="portrait"
19
            android:theme="@style/tests_NoTitleTheme"
konghaorui committed
20 21 22
            />
        <!--测评首页-->
        <activity
徐健 committed
23
            android:name=".home.NewTestHomeActivity"
24 25 26
            android:screenOrientation="portrait"
            android:theme="@style/tests_NoTitleTheme"
            />
konghaorui committed
27 28
    </application>
</manifest>