version:
update:2021.03.30 fix:更换包名,安装应用时只执行最后一次请求,开机动画测试 add:
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?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.mjsheng.myappstore"
|
||||
package="com.jiaoguanyi.appstore"
|
||||
android:sharedUserId="android.uid.system">
|
||||
|
||||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||||
@@ -24,6 +24,7 @@
|
||||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||
<uses-permission android:name="android.permission.SHUTDOWN" />
|
||||
|
||||
<!-- 静默安装权限 -->
|
||||
<uses-permission
|
||||
@@ -81,7 +82,7 @@
|
||||
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
|
||||
|
||||
<application
|
||||
android:name=".base.BaseApplication"
|
||||
android:name="com.jiaoguanyi.appstore.base.BaseApplication"
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
@@ -89,8 +90,8 @@
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme">
|
||||
|
||||
<activity android:name=".activity.TopActivity" />
|
||||
<activity android:name=".activity.HomeActivity">
|
||||
<activity android:name="com.jiaoguanyi.appstore.activity.TopActivity" />
|
||||
<activity android:name="com.jiaoguanyi.appstore.activity.SplashActivity">
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
@@ -99,7 +100,7 @@
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:name="com.jiaoguanyi.appstore.activity.MainActivity"
|
||||
android:excludeFromRecents="true"
|
||||
android:launchMode="singleTop">
|
||||
<!-- <intent-filter>-->
|
||||
@@ -109,16 +110,16 @@
|
||||
<!-- </intent-filter>-->
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.OldActivity"
|
||||
android:name="com.jiaoguanyi.appstore.activity.OldActivity"
|
||||
android:excludeFromRecents="true"
|
||||
android:launchMode="singleTop" />
|
||||
<!-- <service android:name=".server.MyDownloadService" />-->
|
||||
<service android:name=".server.GuardService" />
|
||||
<service android:name="com.jiaoguanyi.appstore.server.GuardService" />
|
||||
<service
|
||||
android:name=".server.StepService"
|
||||
android:name="com.jiaoguanyi.appstore.server.StepService"
|
||||
android:exported="true" />
|
||||
<service
|
||||
android:name=".server.MainService"
|
||||
android:name="com.jiaoguanyi.appstore.server.MainService"
|
||||
android:enabled="true"
|
||||
android:exported="true">
|
||||
<intent-filter android:priority="1000">
|
||||
@@ -137,7 +138,7 @@
|
||||
<!-- </service>-->
|
||||
|
||||
<receiver
|
||||
android:name=".receiver.NewAppReceiver"
|
||||
android:name="com.jiaoguanyi.appstore.receiver.NewAppReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="true"
|
||||
android:permission="com.example.broadcast.permission">
|
||||
@@ -150,11 +151,11 @@
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<receiver
|
||||
android:name=".utils.InstallResultReceiver"
|
||||
android:name="com.jiaoguanyi.appstore.utils.InstallResultReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="true" />
|
||||
<receiver
|
||||
android:name=".receiver.BootReceiver"
|
||||
android:name="com.jiaoguanyi.appstore.receiver.BootReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="true">
|
||||
<intent-filter android:priority="1000">
|
||||
@@ -196,7 +197,7 @@
|
||||
<!-- </intent-filter> -->
|
||||
<!-- </receiver> -->
|
||||
<receiver
|
||||
android:name=".receiver.MyJPushReceiver"
|
||||
android:name="com.jiaoguanyi.appstore.receiver.MyJPushReceiver"
|
||||
android:enabled="true">
|
||||
<intent-filter>
|
||||
|
||||
@@ -337,7 +338,7 @@
|
||||
<!-- Since JCore2.0.0 Required SDK核心功能 -->
|
||||
<!-- 这个Service要继承JCommonService -->
|
||||
<service
|
||||
android:name=".jpush.PushService"
|
||||
android:name="com.jiaoguanyi.appstore.jpush.PushService"
|
||||
android:process=":pushcore">
|
||||
<intent-filter>
|
||||
<action android:name="cn.jiguang.user.service.action" />
|
||||
@@ -345,7 +346,7 @@
|
||||
</service>
|
||||
<!-- User defined. For test only 用户自定义的广播接收器 -->
|
||||
<receiver
|
||||
android:name=".jpush.MyReceiver"
|
||||
android:name="com.jiaoguanyi.appstore.jpush.MyReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="false">
|
||||
<intent-filter>
|
||||
@@ -363,7 +364,7 @@
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<!-- User defined. For test only 用户自定义接收消息器,3.0.7开始支持,目前新tag/alias接口设置结果会在该广播接收器对应的方法中回调 -->
|
||||
<receiver android:name=".jpush.MyJPushMessageReceiver">
|
||||
<receiver android:name="com.jiaoguanyi.appstore.jpush.MyJPushMessageReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="cn.jpush.android.intent.RECEIVE_MESSAGE" />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user