| | |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="4.2.2" package="com.hdl.onpro" xmlns:tools="http://schemas.android.com/tools" android:versionCode="202407022"> |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="2.5.0" package="com.hdl.onpro" xmlns:tools="http://schemas.android.com/tools" android:versionCode="202407022"> |
| | | <uses-sdk android:minSdkVersion="26" android:targetSdkVersion="29" /> |
| | | <uses-permission android:name="android.permission.RECEIVE_SMS" /> |
| | | <!--程序可以读取设备外部存储空间(内置SDcard和外置SDCard)的文件,我的文件等--> |
| | |
| | | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| | | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| | | <uses-permission android:name="android.permission.READ_LOGS" /> |
| | | |
| | | |
| | | <application android:allowBackup="true" android:debuggable="false" android:icon="@drawable/Icon" android:requestLegacyExternalStorage="true" android:networkSecurityConfig="@xml/network_security_config" android:largeHeap="true" android:label="优数养老"> |
| | | <application android:allowBackup="true" android:debuggable="false" android:icon="@drawable/Icon" android:requestLegacyExternalStorage="true" android:networkSecurityConfig="@xml/network_security_config" android:largeHeap="true" android:label="On Pro"> |
| | | <provider android:name="android.support.v4.content.FileProvider" android:authorities="com.hdl.onpro.fileProvider" android:grantUriPermissions="true" android:exported="false"> |
| | | <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_paths" /> |
| | | </provider> |
| | | <!--极光推送--> |
| | | <!-- Required SDK 核心功能--> |
| | | <!-- 可配置 android:process 参数将 PushService 放在其他进程中 --> |
| | | <service |
| | | android:name="cn.jpush.android.service.PushService" |
| | | android:enabled="true" |
| | | android:exported="false" > |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.intent.REGISTER" /> |
| | | <action android:name="cn.jpush.android.intent.REPORT" /> |
| | | <action android:name="cn.jpush.android.intent.PushService" /> |
| | | <action android:name="cn.jpush.android.intent.PUSH_TIME" /> |
| | | </intent-filter> |
| | | </service> |
| | | |
| | | |
| | | <!-- since 3.0.9 Required SDK 核心功能--> |
| | | <provider |
| | | android:authorities="com.hdl.onpro.DataProvider" |
| | | android:name="cn.jpush.android.service.DataProvider" |
| | | android:exported="true" |
| | | /> |
| | | |
| | | <!-- Required SDK 核心功能--> |
| | | <receiver |
| | | android:name="cn.jpush.android.service.PushReceiver" |
| | | android:enabled="true" > |
| | | <intent-filter android:priority="1000"> |
| | | <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> |
| | | <category android:name="com.hdl.onpro"/> |
| | | </intent-filter> |
| | | </receiver> |
| | | |
| | | <!-- Required SDK 核心功能--> |
| | | <activity |
| | | android:name="cn.jpush.android.ui.PushActivity" |
| | | android:configChanges="orientation|keyboardHidden" |
| | | android:theme="@android:style/Theme.NoTitleBar" |
| | | android:exported="true" > |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.ui.PushActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- SDK 核心功能--> |
| | | <activity |
| | | android:name="cn.jpush.android.ui.PopWinActivity" |
| | | android:configChanges="orientation|keyboardHidden" |
| | | android:exported="true" |
| | | android:theme="@style/MyDialogStyle"> |
| | | <intent-filter> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <action android:name="cn.jpush.android.ui.PopWinActivity" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | |
| | | |
| | | <!-- Required SDK 核心功能--> |
| | | <receiver android:name="cn.jpush.android.service.AlarmReceiver" /> |
| | | |
| | | <!--Required SDK核心功能 since 3.3.0,主要用来统一各大推送厂商跳转逻辑,透明窗体也是为了通知跳转时候,保持UI效果一致。--> |
| | | <activity |
| | | android:name="cn.jpush.android.service.JNotifyActivity" |
| | | android:exported="true" |
| | | android:taskAffinity="" |
| | | android:theme="@style/JPushTheme"> |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.intent.JNotifyActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT" /><!--Required SDK核心功能 since 4.2.2--> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- since 4.6.0 Required SDK核心功能,各大推送厂商跳转 备份Activity。防止JNotifyActivity 被封后,通知不能跳转。 --> |
| | | <activity |
| | | android:name="cn.android.service.JTransitActivity" |
| | | android:exported="true" |
| | | android:taskAffinity="" |
| | | android:theme="@style/JPushTheme" > |
| | | <intent-filter> |
| | | <action android:name="cn.android.service.JTransitActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT"/> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- since 5.0.0 Required SDK核心功能 --> |
| | | <provider |
| | | android:exported="false" |
| | | android:authorities="com.hdl.onpro.jiguang.InitProvider" |
| | | android:name="cn.jpush.android.service.InitProvider" /> |
| | | |
| | | |
| | | <!-- Required SDK 核心功能--> |
| | | <!-- 可配置 android:process 参数将 PushService 放在其他进程中 --> |
| | | <service android:name="cn.jpush.android.service.PushService" android:enabled="true" android:exported="false"> |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.intent.REGISTER" /> |
| | | <action android:name="cn.jpush.android.intent.REPORT" /> |
| | | <action android:name="cn.jpush.android.intent.PushService" /> |
| | | <action android:name="cn.jpush.android.intent.PUSH_TIME" /> |
| | | </intent-filter> |
| | | </service> |
| | | <!-- since 3.0.9 Required SDK 核心功能--> |
| | | <provider android:authorities="com.hdl.onpro.DataProvider" android:name="cn.jpush.android.service.DataProvider" android:exported="true" /> |
| | | <!-- Required SDK 核心功能--> |
| | | <receiver android:name="cn.jpush.android.service.PushReceiver" android:enabled="true"> |
| | | <intent-filter android:priority="1000"> |
| | | <action android:name="cn.jpush.android.intent.NOTIFICATION_RECEIVED_PROXY" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </receiver> |
| | | <!-- Required SDK 核心功能--> |
| | | <activity android:name="cn.jpush.android.ui.PushActivity" android:configChanges="orientation|keyboardHidden" android:theme="@android:style/Theme.NoTitleBar" android:exported="true"> |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.ui.PushActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- SDK 核心功能--> |
| | | <activity android:name="cn.jpush.android.ui.PopWinActivity" android:configChanges="orientation|keyboardHidden" android:exported="true" android:theme="@style/MyDialogStyle"> |
| | | <intent-filter> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <action android:name="cn.jpush.android.ui.PopWinActivity" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- Required SDK 核心功能--> |
| | | <receiver android:name="cn.jpush.android.service.AlarmReceiver" /> |
| | | <!--Required SDK核心功能 since 3.3.0,主要用来统一各大推送厂商跳转逻辑,透明窗体也是为了通知跳转时候,保持UI效果一致。--> |
| | | <activity android:name="cn.jpush.android.service.JNotifyActivity" android:exported="true" android:taskAffinity="" android:theme="@style/JPushTheme"> |
| | | <intent-filter> |
| | | <action android:name="cn.jpush.android.intent.JNotifyActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <!--Required SDK核心功能 since 4.2.2--> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- since 4.6.0 Required SDK核心功能,各大推送厂商跳转 备份Activity。防止JNotifyActivity 被封后,通知不能跳转。 --> |
| | | <activity android:name="cn.android.service.JTransitActivity" android:exported="true" android:taskAffinity="" android:theme="@style/JPushTheme"> |
| | | <intent-filter> |
| | | <action android:name="cn.android.service.JTransitActivity" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <category android:name="com.hdl.onpro" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <!-- since 5.0.0 Required SDK核心功能 --> |
| | | <provider android:exported="false" android:authorities="com.hdl.onpro.jiguang.InitProvider" android:name="cn.jpush.android.service.InitProvider" /> |
| | | <meta-data android:name="JPUSH_CHANNEL" android:value="developer-default" /> |
| | | <!-- Required. AppKey copied from Portal --> |
| | | <meta-data android:name="JPUSH_APPKEY" android:value="cbd90743ac45cbca06c8118b" /> |
| | | <!-- 极光推送结束 --> |
| | | </application> |
| | | </manifest> |
| | | |
| | | <!--<meta-data android:name="JPUSH_CHANNEL" android:value="developer-default" /> |
| | | <!--<meta-data android:name="JPUSH_CHANNEL" android:value="developer-default" /> |
| | | <meta-data android:name="JPUSH_APPKEY" android:value="cbd90743ac45cbca06c8118b" /> |
| | | <meta-data android:name="XIAOMI_APPKEY" android:value="MI-5871892343860" /> |
| | | <meta-data android:name="XIAOMI_APPID" android:value="MI-2882303761518923860" /> |
| | | <meta-data android:name="OPPO_APPKEY" android:value="OP-e942dafe77cf4b9f868d5421d701655a" /> |
| | | <meta-data android:name="OPPO_APPID" android:value="OP-30619979" /> |
| | | <meta-data android:name="OPPO_APPSECRET" android:value="OP-11d511c42f654cafac99588322681003" />--> |
| | | <meta-data android:name="OPPO_APPSECRET" android:value="OP-11d511c42f654cafac99588322681003" />--> |