|
@@ -0,0 +1,24 @@
|
|
1
|
+## 离线打包步骤
|
|
2
|
+* 1、之前我本地的AndroidStudio版本太旧3.2更新之后才能跑uni提供的SDKdemo
|
|
3
|
+* 2、[离线打包流程地址](https://blog.csdn.net/qq_17387361/article/details/103156281)
|
|
4
|
+* 3、在运行生产环境时发现没法弹出安卓的更新软件页面后面发现是 “plus.runtime.install”调用失败,解决方法是:在manifest.xml下添加配置开启权限
|
|
5
|
+ ``` xml
|
|
6
|
+ <provider
|
|
7
|
+ android:name="io.dcloud.common.util.DCloud_FileProvider"
|
|
8
|
+ android:authorities="io.dcloud.crmapp.dc.fileprovider"
|
|
9
|
+ android:exported="false"
|
|
10
|
+ android:grantUriPermissions="true">
|
|
11
|
+ <meta-data
|
|
12
|
+ android:name="android.support.FILE_PROVIDER_PATHS"
|
|
13
|
+ android:resource="@xml/dcloud_file_provider" />
|
|
14
|
+ </provider>
|
|
15
|
+ <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
|
|
16
|
+ ```
|
|
17
|
+* 4、chrome浏览器中inspect 看不到webview问题:在dcloud_control.xml中配置修改为:
|
|
18
|
+ ``` xml
|
|
19
|
+ <hbuilder debug="true">
|
|
20
|
+ <apps>
|
|
21
|
+ <app appid="__UNI__C97B9D9" appver=""/>
|
|
22
|
+ </apps>
|
|
23
|
+ </hbuilder>
|
|
24
|
+ ```
|