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

霍志良 committed
5 6 7 8 9 10 11
    <uses-sdk tools:overrideLibrary="com.lzf.easyfloat,com.yidianling.nimbase,
    jp.wasabeef.glide.transformations,
com.netease.nimlib,
com.netease.nimlib.avchat,
com.netease.nimlib.nrtc,
com.netease.nimlib.chatroom,
com.netease.nimlib.lucene,
霍志良 committed
12 13
com.netease.nimlib.push,
tv.danmaku.ijk.media.player_arm64
霍志良 committed
14
"/>
严久程 committed
15 16 17
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

严久程 committed
18 19 20 21
    <application>
        <!--课程首页-->
        <activity
                android:name=".CourseActivity"
22 23 24
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
25 26 27 28 29 30 31
        <activity
                android:name=".CoursePosterActivity"
                android:hardwareAccelerated="false"
                android:screenOrientation="portrait"
                android:theme="@style/CoursePosterShowTheme" />
        <activity
                android:name=".coursePlay.CourseCommentActivity"
konghaorui committed
32
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
                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"
51 52 53 54 55
                android:theme="@style/platform_NoTitleTheme" />

        <activity android:name=".courseNew.CourseTopicActivity"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
56 57
        <activity android:name=".courseSearch.CourseSearchActivity"
                android:screenOrientation="portrait"
58
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
59 60 61
                />
        <activity
                android:name=".courseNew.mine.MyCourseActivity"
62 63 64
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
65 66
        <activity
                android:name=".course_special_list.activity.CourseSpecialListActivity"
konghaorui committed
67
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
68 69
                android:screenOrientation="portrait" />

严久程 committed
70
        <service android:name="com.lzf.easyfloat.service.FloatService" />
严久程 committed
71 72 73
    </application>

</manifest>