AndroidManifest.xml 3.42 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
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
17
    <uses-permission android:name="android.permission.WAKE_LOCK" />
严久程 committed
18

严久程 committed
19 20 21 22
    <application>
        <!--课程首页-->
        <activity
                android:name=".CourseActivity"
23 24 25
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
26 27 28 29 30 31 32
        <activity
                android:name=".CoursePosterActivity"
                android:hardwareAccelerated="false"
                android:screenOrientation="portrait"
                android:theme="@style/CoursePosterShowTheme" />
        <activity
                android:name=".coursePlay.CourseCommentActivity"
konghaorui committed
33
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
34 35 36 37 38 39 40 41
                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" />
王佳洋 committed
42 43 44 45 46 47
        <activity
                android:name=".coursePlay.AudioPlayActivity"
                android:configChanges="orientation|screenSize|keyboardHidden"
                android:launchMode="singleTask"
                android:screenOrientation="portrait"
                android:theme="@style/CourseTheme" />
严久程 committed
48 49 50 51 52 53 54 55 56 57
        <!--课程课后笔记列表-->
        <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"
58 59 60 61 62
                android:theme="@style/platform_NoTitleTheme" />

        <activity android:name=".courseNew.CourseTopicActivity"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
63 64
        <activity android:name=".courseSearch.CourseSearchActivity"
                android:screenOrientation="portrait"
65
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
66 67 68
                />
        <activity
                android:name=".courseNew.mine.MyCourseActivity"
69 70 71
                android:screenOrientation="portrait"
                android:theme="@style/platform_NoTitleTheme"
                />
严久程 committed
72 73
        <activity
                android:name=".course_special_list.activity.CourseSpecialListActivity"
konghaorui committed
74
                android:theme="@style/platform_NoTitleTheme"
严久程 committed
75 76
                android:screenOrientation="portrait" />

严久程 committed
77
        <service android:name="com.lzf.easyfloat.service.FloatService" />
严久程 committed
78 79 80
    </application>

</manifest>