tm-react-native-install
v1.0.0
Published
支持AndroidX。
Downloads
3
Maintainers
Readme
react-native-sdk-install
Getting started
$ npm install react-native-sdk-install --save
Mostly automatic installation
$ react-native link react-native-sdk-install
Manual installation
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.apk.install.RNSdkInstallPackage;
to the imports at the top of the file - Add
new RNSdkInstallPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-sdk-install' project(':react-native-sdk-install').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sdk-install/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-sdk-install')
Usage
import InstallSDK from 'react-native-sdk-install';
//检车版本更新下载并提示安装
doCheckUpdate = () => {
//先检测是否有新版本,确认更新后再执行下载更新逻辑
InstallSDK.downloadAndInstall('https://domain/app-release.apk',forceUpdate,applicationId);
};
注意的地方
1、android 8.0以上系统需要在清单文件AndroidManifest.xml中配置权限以及provider:
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
2、InstallSDK.downloadAndInstall方法的applicationId参数取决于provider的android:authorities属性,传packageName或applicationId。