AndroidManifest.xml 2.69 KB
Newer Older
严久程 committed
1
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
严久程 committed
2 3 4 5 6 7 8
    xmlns:tools="http://schemas.android.com/tools"
    package="com.yidianling.course">

    <uses-sdk tools:overrideLibrary="com.lzf.easyfloat"/>
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

严久程 committed
9 10 11 12
    <application>
        <!--课程首页-->
        <activity
                android:name=".CourseActivity"
13 14 15
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
        <activity
                android:name=".CoursePosterActivity"
                android:hardwareAccelerated="false"
                android:screenOrientation="portrait"
                android:theme="@style/CoursePosterShowTheme" />
        <activity
                android:name=".coursePlay.CourseCommentActivity"
                android:screenOrientation="portrait"
                android:windowSoftInputMode="adjustResize" />
        <activity
                android:name=".coursePlay.CoursePlayActivity"
                android:configChanges="orientation|screenSize|keyboardHidden"
                android:launchMode="singleTask"
                android:screenOrientation="portrait"
                android:theme="@style/CourseTheme" />
        <!--课程课后笔记列表-->
        <activity
                android:name=".coursePlay.CourseReplyListActivity"
                android:configChanges="orientation|screenSize|keyboardHidden"
                android:launchMode="singleTask"
                android:screenOrientation="portrait" />
        <!--课程分类列表-->
        <activity
                android:name=".courseNew.courseList.CourseListContainerActivity"
                android:screenOrientation="portrait"
41 42 43 44 45
                android:theme="@style/platform_NoTitleTheme" />

        <activity android:name=".courseNew.CourseTopicActivity"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
46 47
        <activity android:name=".courseSearch.CourseSearchActivity"
                android:screenOrientation="portrait"
48
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
49 50 51
                />
        <activity
                android:name=".courseNew.mine.MyCourseActivity"
52 53 54
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
55 56 57 58
        <activity
                android:name=".course_special_list.activity.CourseSpecialListActivity"
                android:screenOrientation="portrait" />

严久程 committed
59
        <service android:name="com.lzf.easyfloat.service.FloatService" />
严久程 committed
60 61 62
    </application>

</manifest>