1,修复webview_flutter版本过高导致的安卓项目无法运行问题

2,xhj集成OPPO厂商通道远程推送并配置相关(自测通过)
3,修改增值服务-实名认证问题
This commit is contained in:
Daisy 2024-05-29 14:12:44 +08:00
parent ad29462882
commit 0d22a42796
5 changed files with 41 additions and 3 deletions

View File

@ -227,6 +227,15 @@ dependencies {
implementation 'com.huawei.agconnect:agconnect-core:1.8.1.300' implementation 'com.huawei.agconnect:agconnect-core:1.8.1.300'
implementation 'com.huawei.hms:push:6.12.0.300' implementation 'com.huawei.hms:push:6.12.0.300'
implementation 'cn.jiguang.sdk.plugin:huawei:5.2.3' implementation 'cn.jiguang.sdk.plugin:huawei:5.2.3'
//
implementation 'cn.jiguang.sdk.plugin:xiaomi:5.2.3' implementation 'cn.jiguang.sdk.plugin:xiaomi:5.2.3'
//OPPO厂商
implementation 'cn.jiguang.sdk.plugin:oppo:5.2.3'
// libs aar
implementation fileTree(include: ['*.jar','*.aar'], dir: 'libs')
//OPPO 3.1.0 aar
implementation 'com.google.code.gson:gson:2.6.2'
implementation 'commons-codec:commons-codec:1.6'
implementation 'androidx.annotation:annotation:1.1.0'
} }

Binary file not shown.

View File

@ -60,8 +60,37 @@
<meta-data <meta-data
android:name="com.huawei.hms.client.cpid" android:name="com.huawei.hms.client.cpid"
android:value="1406555529261648640"/> android:value="1406555529261648640"/>
<meta-data android:name="OPPO_APPKEY"
android:value="OP-47f668c9943248118502aa58d066393b" />
<meta-data android:name="OPPO_APPID"
android:value="OP-31726001" />
<meta-data android:name="OPPO_APPSECRET"
android:value="OP-05723986bba64183a71530b496922450" />
<!-- 配置定位Service --> <!-- 配置定位Service -->
<service android:name="com.amap.api.location.APSService"/> <service android:name="com.amap.api.location.APSService"/>
<!-- since JPushv3.6.8 oppov2.1.0 oppo 核心功能-->
<service android:name="cn.jpush.android.service.PluginOppoPushService"
android:permission="com.coloros.mcs.permission.SEND_MCS_MESSAGE"
android:exported="true">
<intent-filter>
<action android:name="com.coloros.mcs.action.RECEIVE_MCS_MESSAGE" />
</intent-filter>
</service>
<!-- since JPushv3.6.8 oppov2.1.0 oppo 核心功能-->
<service
android:name="com.heytap.msp.push.service.DataMessageCallbackService"
android:permission="com.heytap.mcs.permission.SEND_PUSH_MESSAGE"
android:exported="true">
<intent-filter>
<action android:name="com.heytap.mcs.action.RECEIVE_MCS_MESSAGE"/>
<action android:name="com.heytap.msp.push.RECEIVE_MCS_MESSAGE"/>
</intent-filter>
</service> <!--兼容Q版本-->
<activity android:name="com.skychip.lock.MainActivity" android:exported="true" android:screenOrientation="portrait" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <activity android:name="com.skychip.lock.MainActivity" android:exported="true" android:screenOrientation="portrait" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as <!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user the Android process has started. This theme is visible to the user

View File

@ -338,7 +338,7 @@
"customMailTemplate": "自定义邮件模版", "customMailTemplate": "自定义邮件模版",
"record": "记录", "record": "记录",
"buyRealNameTip": "给用户发送电子钥匙时,可以要求其开锁前先进行人脸识别,以保证是他本人在操作。人脸实名认证调用国家公安系统接口,为付费功能,请购买次数后再使用。", "buyRealNameTip": "给用户发送电子钥匙时,可以要求其开锁前先进行人脸识别,以保证是他本人在操作。人脸实名认证调用国家公安系统接口,为付费功能,请购买次数后再使用。",
"buyRealNameSelectYouWantBuyTip": "请选择你希望的实名认证频", "buyRealNameSelectYouWantBuyTip": "请选择你希望的实名认证频",
"forTheFirstTime": "仅首次", "forTheFirstTime": "仅首次",
"onceDay": "每日一次", "onceDay": "每日一次",
"weekOnce": "每周一次", "weekOnce": "每周一次",

View File

@ -164,7 +164,7 @@ dependencies:
#网络图片缓存 #网络图片缓存
cached_network_image: ^3.2.0 cached_network_image: ^3.2.0
webview_flutter: ^4.4.2 webview_flutter: 4.5.0
jpush_flutter: ^2.5.1 jpush_flutter: ^2.5.1