777 lines
30 KiB
XML
777 lines
30 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:tools="http://schemas.android.com/tools"
|
||
package="com.gh.gamecenter">
|
||
|
||
<!-- 允许应用程序访问网络连接 -->
|
||
<uses-permission android:name="android.permission.INTERNET" />
|
||
<!-- 允许应用程序写入外部存储,如SD卡上写文件 -->
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
<!-- 允许应用程序读取扩展存储器 -->
|
||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
<!-- 允许应用程序访问Wi-Fi网络状态信息 -->
|
||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||
<!-- 允许应用程序获取网络信息状态 -->
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||
<!-- 允许应用程序读取电话状态 -->
|
||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||
<!-- 允许应用程序获取当前或最近运行的应用 -->
|
||
<uses-permission android:name="android.permission.GET_TASKS" />
|
||
<!-- 允许访问振动设备 -->
|
||
<uses-permission android:name="android.permission.VIBRATE" />
|
||
<!-- 允许应用程序改变Wi-Fi连接状态 -->
|
||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||
<!-- 允许应用程序打开系统窗口,显示其他应用程序 -->
|
||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||
<!-- 创建快捷方式的权限 -->
|
||
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
||
|
||
<uses-permission
|
||
android:name="android.permission.PACKAGE_USAGE_STATS"
|
||
tools:ignore="ProtectedPermissions" />
|
||
|
||
<!-- bugly with tinker -->
|
||
<!-- <uses-permission android:name="android.permission.READ_LOGS" />-->
|
||
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
||
|
||
<!--可选,穿山甲提供“获取地理位置权限”和“不给予地理位置权限,开发者传入地理位置参数”两种方式上报用户位置,两种方式均可不选,添加位置权限或参数将帮助投放定位广告-->
|
||
<!--请注意:无论通过何种方式提供给穿山甲用户地理位置,均需向用户声明地理位置权限将应用于穿山甲广告投放,穿山甲不强制获取地理位置信息-->
|
||
<!--<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />-->
|
||
|
||
<!-- 如果有视频相关的广告且使用textureView播放,请务必添加,否则黑屏 -->
|
||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
|
||
<uses-sdk tools:overrideLibrary="com.shuyu.gsyvideoplayer,
|
||
com.shuyu.gsyvideoplayer.lib,
|
||
com.haroldadmin.whatthestack,
|
||
com.shuyu.gsyvideoplayer.armv7a,
|
||
com.shuyu.gsyvideoplayer.x86,
|
||
com.shuyu.gsy.base,
|
||
com.google.android.exoplayer2,
|
||
tv.danmaku.ijk.media.exo2,
|
||
pl.droidsonroids.gif" />
|
||
|
||
<!-- 去掉 SDK 一些流氓权限 -->
|
||
<uses-permission
|
||
android:name="android.permission.READ_CONTACTS"
|
||
tools:node="remove" />
|
||
|
||
<supports-screens
|
||
android:anyDensity="true"
|
||
android:largeScreens="true"
|
||
android:normalScreens="true"
|
||
android:resizeable="true"
|
||
android:smallScreens="true" />
|
||
|
||
<!--android:largeHeap = "true"-->
|
||
<application
|
||
android:name="com.halo.assistant.HaloApp"
|
||
android:allowBackup="true"
|
||
android:icon="@mipmap/logo"
|
||
android:label="@string/app_name"
|
||
android:largeHeap="true"
|
||
android:resizeableActivity="true"
|
||
android:theme="@style/AppCompatTheme.APP"
|
||
tools:replace="android:allowBackup"
|
||
tools:targetApi="n">
|
||
|
||
<meta-data
|
||
android:name="io.sentry.auto-init"
|
||
android:value="false" />
|
||
|
||
<!--android:launchMode = "singleTask"-->
|
||
<activity
|
||
android:name="com.gh.gamecenter.SplashScreenActivity"
|
||
android:configChanges="keyboardHidden|orientation|screenSize"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/AppTheme.Launcher">
|
||
<intent-filter>
|
||
<action android:name="android.intent.action.MAIN" />
|
||
|
||
<category android:name="android.intent.category.LAUNCHER" />
|
||
</intent-filter>
|
||
|
||
</activity>
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MainActivity"
|
||
android:configChanges="orientation|screenSize|keyboardHidden"
|
||
android:launchMode="singleTask"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/AppCompatTheme.APP"
|
||
android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.DownloadManagerActivity"
|
||
android:launchMode="singleTask"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<!--android:theme = "@android:style/Theme.Black.NoTitleBar.Fullscreen" 退出时屏幕抖动 -->
|
||
<activity
|
||
android:name="com.gh.gamecenter.ImageViewerActivity"
|
||
android:theme="@style/Theme.Transparent" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.SearchActivity"
|
||
android:configChanges="keyboardHidden"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/AppCompatTheme.APP" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.amway.search.AmwaySearchActivity"
|
||
android:configChanges="keyboardHidden"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/AppCompatTheme.APP" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ShellActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.gamedetail.history.HistoryApkListActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.NewsDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.SettingActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ConcernActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.subject.SubjectActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.NewsSearchActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.GameNewsActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.CropImageActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.WebActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.FullScreenWebActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ShareCardPicActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ShareCardActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MessageDetailActivity"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/TransparentStatusBarAndNavigationBar" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.LibaoActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.LibaoDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ShareGhActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.CleanApkActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.SelectUserIconActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.AboutActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.security.SecurityActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.security.BindPhoneActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.CommentDetailActivity"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/TransparentStatusBarAndNavigationBar" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.mygame.MyGameActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.GameDetailActivity"
|
||
android:configChanges="orientation|screenSize|keyboardHidden"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.SuggestionActivity"
|
||
android:screenOrientation="portrait" />
|
||
<activity
|
||
android:name="com.gh.gamecenter.VoteActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateAlwaysHidden|adjustResize" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ToolBoxActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.WeiBoShareActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name=".category.CategoryDirectoryActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".category.CategoryListActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.LoginActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.UserInfoActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.UserRegionActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.CollectionActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MessageActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.UserInfoEditActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.search.AskSearchActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.answer.detail.AnswerDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.questions.detail.QuestionsDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".qa.answer.fold.AnswerFoldActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.answer.edit.AnswerEditActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.ConcernInfoActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.InfoActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MessageKeFuActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.select.CommunitiesSelectActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.subject.CommunitySubjectActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MessageInviteActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.MessageVoteActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".qa.questions.invite.QuestionsInviteActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.myqa.MyAskActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.column.order.AskTabOrderActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.questions.edit.QuestionEditActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.servers.add.AddKaiFuActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.servers.patch.PatchKaifuActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.BlockActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.amway.AmwayActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.column.detail.AskColumnDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.NetworkDiagnosisActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.personalhome.fans.FansActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.personalhome.followers.FollowersActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.personalhome.UserHomeActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.edit.ArticleEditActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.MyArticleActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.draft.ArticleDraftActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.detail.ArticleDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.detail.comment.ArticleDetailCommentActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.draft.CommunityDraftWrapperActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.gamedetail.rating.edit.RatingEditActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateVisible" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.questions.edit.manager.HistoryDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.questions.edit.manager.HistoryActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.editor.InsertAnswerWrapperActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.editor.GameActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.editor.InsertArticleWrapperActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.gamedetail.rating.RatingReplyActivity"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/TransparentStatusBarAndNavigationBar" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.history.HistoryActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.personalhome.rating.RatingActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.gamedetail.rating.logs.CommentLogsActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.tag.TagsActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.article.SimpleArticleListActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.video.videomanager.VideoManagerActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.video.upload.view.UploadVideoActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.video.game.GameVideoActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.editor.VideoActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.mygame.PlayedGameActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.servers.GameServersActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.game.columncollection.detail.ColumnCollectionDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.game.upload.GameSubmissionActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.halo.assistant.fragment.user.UserPortraitCropImageActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.HelpAndFeedbackActivity"
|
||
android:screenOrientation="portrait"
|
||
android:windowSoftInputMode="stateHidden" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.help.HelpDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.qa.comment.CommentActivity"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/Theme.Transparent"
|
||
android:windowSoftInputMode="adjustNothing" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.video.detail.VideoDetailActivity"
|
||
android:configChanges="orientation|screenSize|keyboardHidden"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/TransparentStatusBarAndNavigationBar" />
|
||
<activity
|
||
android:name=".gamedetail.myrating.MyRatingActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.gamedetail.fuli.kaifu.ServersCalendarActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.QaActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".qa.answer.draft.AnswerDraftActivity"
|
||
android:screenOrientation="portrait" />
|
||
<activity
|
||
android:name=".gamedetail.rating.RatingFoldActivity"
|
||
android:screenOrientation="portrait" />
|
||
<activity
|
||
android:name=".video.data.VideoDataActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".video.poster.PosterEditActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".video.poster.PosterClipActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".forum.select.ForumSelectActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".forum.follow.ForumMyFollowActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".forum.detail.ForumDetailActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".forum.moderator.ModeratorListActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".video.label.VideoLabelActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".personalhome.border.AvatarBorderActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".personalhome.background.PersonalityBackgroundActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".personalhome.background.BackgroundPreviewActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".personalhome.background.BackgroundClipActivity"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@style/TransparentStatusBarAndNavigationBar" />
|
||
|
||
<activity
|
||
android:name=".personalhome.excellentcomments.ExcellentCommentsActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".simulatorgame.SimulatorGameActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".simulatorgame.SimulatorManagementActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".catalog.CatalogActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".catalog.NewCatalogListActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".forum.search.ForumOrUserSearchActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".energy.EnergyCenterActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".energy.EnergyHouseActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".personal.NewPersonalActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".qa.questions.draft.QuestionDraftActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<activity
|
||
android:name=".home.skip.PackageSkipActivity"
|
||
android:screenOrientation="portrait" />
|
||
|
||
<!-- <!– 使用小米/华为推送弹窗功能提高推送成功率–>-->
|
||
<!-- <activity-->
|
||
<!-- android:name="com.gh.gamecenter.PushProxyActivity"-->
|
||
<!-- android:exported="true"-->
|
||
<!-- android:launchMode="singleTask"-->
|
||
<!-- android:theme="@android:style/Theme.Translucent" />-->
|
||
|
||
<activity
|
||
android:name="com.gh.gamecenter.SkipActivity"
|
||
android:theme="@style/Theme.AppCompat.Light.Fullscreen.Transparent">
|
||
<intent-filter>
|
||
<data android:scheme="ghzhushou" />
|
||
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
<action android:name="android.intent.action.VIEW" />
|
||
<category android:name="android.intent.category.BROWSABLE" />
|
||
</intent-filter>
|
||
|
||
<intent-filter>
|
||
<data android:scheme="market" />
|
||
|
||
<category android:name="android.intent.category.DEFAULT" />
|
||
<action android:name="android.intent.action.VIEW" />
|
||
<category android:name="android.intent.category.BROWSABLE" />
|
||
</intent-filter>
|
||
</activity>
|
||
|
||
<activity
|
||
android:name="${applicationId}.wxapi.WXEntryActivity"
|
||
android:exported="true"
|
||
android:label="@string/app_name"
|
||
android:launchMode="singleTop"
|
||
android:screenOrientation="portrait"
|
||
android:theme="@android:style/Theme.Translucent.NoTitleBar"></activity>
|
||
|
||
<!-- <activity-->
|
||
<!-- android:name="${applicationId}.douyinapi.DouYinEntryActivity"-->
|
||
<!-- android:launchMode="singleTask"-->
|
||
<!-- android:taskAffinity="${applicationId}"-->
|
||
<!-- android:exported="true" />-->
|
||
|
||
<provider
|
||
android:name="androidx.core.content.FileProvider"
|
||
android:authorities="${applicationId}"
|
||
android:exported="false"
|
||
android:grantUriPermissions="true">
|
||
<meta-data
|
||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
android:resource="@xml/provider_paths" />
|
||
</provider>
|
||
|
||
<receiver
|
||
android:name="com.gh.gamecenter.receiver.DownloadReceiver"
|
||
android:exported="false">
|
||
<intent-filter>
|
||
<action android:name="com.gh.gamecenter.DOWNLOAD" />
|
||
</intent-filter>
|
||
</receiver>
|
||
<receiver
|
||
android:name="com.gh.gamecenter.receiver.InstallReceiver"
|
||
android:exported="false">
|
||
<intent-filter>
|
||
<action android:name="com.gh.gamecenter.INSTALL" />
|
||
</intent-filter>
|
||
</receiver>
|
||
|
||
<receiver
|
||
android:name="com.gh.gamecenter.receiver.ActivitySkipReceiver"
|
||
android:exported="true">
|
||
<intent-filter>
|
||
<action android:name="com.gh.gamecenter.ACTIVITYSKIP" />
|
||
</intent-filter>
|
||
</receiver>
|
||
|
||
<!-- <receiver android:name="com.gh.gamecenter.receiver.UmengMessageReceiver">-->
|
||
<!-- <intent-filter>-->
|
||
<!-- <action android:name="com.gh.gamecenter.UMENG" />-->
|
||
<!-- </intent-filter>-->
|
||
<!-- </receiver>-->
|
||
|
||
<!-- <!–魅族push应用定义消息receiver声明 –>-->
|
||
<!-- <receiver android:name="com.gh.gamecenter.receiver.UmengMeizuPushReceiver">-->
|
||
<!-- <intent-filter>-->
|
||
<!-- <!– 接收push消息 –>-->
|
||
<!-- <action android:name="com.meizu.flyme.push.intent.MESSAGE" />-->
|
||
<!-- <!– 接收register消息 –>-->
|
||
<!-- <action android:name="com.meizu.flyme.push.intent.REGISTER.FEEDBACK" />-->
|
||
<!-- <!– 接收unregister消息–>-->
|
||
<!-- <action android:name="com.meizu.flyme.push.intent.UNREGISTER.FEEDBACK" />-->
|
||
<!-- <!– 兼容低版本Flyme3推送服务配置 –>-->
|
||
<!-- <action android:name="com.meizu.c2dm.intent.REGISTRATION" />-->
|
||
<!-- <action android:name="com.meizu.c2dm.intent.RECEIVE" />-->
|
||
|
||
<!-- <category android:name="${applicationId}" />-->
|
||
<!-- </intent-filter>-->
|
||
<!-- </receiver>-->
|
||
|
||
<!-- <receiver-->
|
||
<!-- android:name="com.gh.common.im.ImReceiver"-->
|
||
<!-- android:enabled="true">-->
|
||
<!-- <intent-filter android:priority="2147483647">-->
|
||
<!-- <action android:name="com.gh.im" />-->
|
||
<!-- <action android:name="action_finish" />-->
|
||
<!-- </intent-filter>-->
|
||
<!-- </receiver>-->
|
||
|
||
<!-- <meta-data-->
|
||
<!-- android:name="com.huawei.hms.client.appid"-->
|
||
<!-- android:value="@string/huawei_push_appid" />-->
|
||
|
||
<!-- <service-->
|
||
<!-- android:name="com.gh.base.GHUmengNotificationService"-->
|
||
<!-- android:permission="android.permission.BIND_JOB_SERVICE" />-->
|
||
|
||
<!--<service android:name = "com.gh.gamecenter.statistics.AppStaticService" />-->
|
||
|
||
<!-- 梦工厂配置 开始 -->
|
||
<!--<meta-data
|
||
android:name="MGC_APPID"
|
||
android:value="1001276" />
|
||
|
||
<provider
|
||
android:name="com.leto.game.base.provider.LetoFileProvider"
|
||
android:authorities="${applicationId}.leto.fileprovider"
|
||
android:exported="false"
|
||
android:grantUriPermissions="true">
|
||
<meta-data
|
||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
android:resource="@xml/leto_file_path"
|
||
tools:replace="android:resource" />
|
||
</provider>-->
|
||
<!-- 梦工厂配置 结束 -->
|
||
|
||
<!-- 穿山甲配置 开始 -->
|
||
<!--<provider
|
||
android:name="com.bytedance.sdk.openadsdk.TTFileProvider"
|
||
android:authorities="${applicationId}.TTFileProvider"
|
||
android:exported="false"
|
||
android:grantUriPermissions="true">
|
||
<meta-data
|
||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||
android:resource="@xml/file_paths" />
|
||
</provider>
|
||
|
||
<provider
|
||
android:name="com.bytedance.sdk.openadsdk.multipro.TTMultiProvider"
|
||
android:authorities="${applicationId}.TTMultiProvider"
|
||
android:exported="false" />-->
|
||
<!-- 穿山甲配置 结束 -->
|
||
</application>
|
||
|
||
</manifest> |