支持AndroidX。
$ npm install react-native-sdk-install --save
$ react-native link react-native-sdk-install
#### Android
1. 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 the getPackages() method
2. 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')
android/app/build.gradle
3. Insert the following lines inside the dependencies block in :`
`
compile project(':react-native-sdk-install')
javascript
import InstallSDK from 'react-native-sdk-install';//检车版本更新下载并提示安装
doCheckUpdate = () => {
//先检测是否有新版本,确认更新后再执行下载更新逻辑
InstallSDK.downloadAndInstall('https://domain/app-release.apk',forceUpdate,applicationId);
};
`注意的地方
1、android 8.0以上系统需要在清单文件AndroidManifest.xml中配置权限以及provider:
`javascript
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
``2、InstallSDK.downloadAndInstall方法的applicationId参数取决于provider的android:authorities属性,传packageName或applicationId。