提交 76a6638a 编写于 作者: taohebin@dcloud.io's avatar taohebin@dcloud.io

Merge branch 'dev' into alpha

## 1.0.1(2023-10-27)
支持js层调用
## 1.0.0(2023-10-26) ## 1.0.0(2023-10-26)
安装apk的插件 安装apk的插件
{ {
"id": "uni-installApk", "id": "uni-installApk",
"displayName": "uni-installApk", "displayName": "uni-installApk",
"version": "1.0.0", "version": "1.0.1",
"description": "uni-installApk", "description": "uni-installApk",
"keywords": [ "keywords": [
"uni-installApk" "uni-installApk"
...@@ -52,11 +52,11 @@ ...@@ -52,11 +52,11 @@
}, },
"client": { "client": {
"Vue": { "Vue": {
"vue2": "u", "vue2": "y",
"vue3": "u" "vue3": "y"
}, },
"App": { "App": {
"app-android": "u", "app-android": "y",
"app-ios": "n" "app-ios": "n"
}, },
"H5-mobile": { "H5-mobile": {
......
# uni-installApk # uni-installApk
### 开发文档
[UTS 语法](https://uniapp.dcloud.net.cn/tutorial/syntax-uts.html) ## 使用说明
[UTS API插件](https://uniapp.dcloud.net.cn/plugin/uts-plugin.html)
[UTS 组件插件](https://uniapp.dcloud.net.cn/plugin/uts-component.html) Android平台安装Apk
[Hello UTS](https://gitcode.net/dcloud/hello-uts)
\ No newline at end of file
### App-Android平台注意事项
- 需要自定义基座,并且需要具备下面的权限
```
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
```
### uni.installApk(options : InstallApkOptions):void
安装apk
参数说明
```
type InstallApkOptions = {
/**
* apk文件地址
*/
filePath : string,
/**
* 接口调用成功的回调函数
* @defaultValue null
*/
success ?: (res : any) => void,
/**
* 接口调用失败的回调函数
* @defaultValue null
*/
fail ?: (err : any) => void,
/**
* 接口调用结束的回调函数(调用成功、失败都会执行)
* @defaultValue null
*/
complete ?: (res : any) => void,
}
```
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册