Support MYWeb module/dynamic feature in SDK
IAPMiniProgram SDK designs a unified module dynamic delivery solution that allows the super app to download and install the required modules on demands to run your application. In order to enhance the performance and rendering capability of mini programs, MYWeb module/dynamic feature is supported
Integration ways
To realize the MYWeb feature, you can choose one of the following integrations ways. But it's highly recommended to use the Dynamic integration way.
- Static integration: The direct dependency is in the project, which is packaged into the APK along with the project.
- Dynamic integration: Based on Google Dynamic Feature capability, download the APK from the Google Play Store when the application is opened. This can reduce the APK size when downloading and improve users' downloading experience.
Static integration
In the build.gradle
file of the project app, add the iapminiprogram-myweb
dependency as the following code sample:
dependencies {
implementation "com.alipay.plus.android:iapminiprogram-myweb:{iapminiprogram_version}"
}
Note: Check the latest iapminiprogram_version
version in the Android Release Notes.
Dynamic integration
Prerequisite
Make sure that the module name (supporting the MYWeb feature) is mywebdynamicfeature
.
Step 1. Create the mywebdynamicfeature dynamic module
- In your project, click Create new module > Dynamic Feature to start creating a new module. (see the following figure)
- Choose the Base Application Module properly.
- Fill in the module name.
- Fill in the Module title (see the following figure). By default, "MyWeb Dynamic Feature" is used.
- Note: In the Install-time inclusion drop-down list, choose (on-deman only).
- Click Finish to finish creating the
mywebdynamicfeature
module.
Step 2. Confirm the correctness of the AndroidManifest file
The default configurations in the AndroidManifest
file are generated by the system. There is no need to make any changes in this file. You just need to check and confirm the correctness of the file.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution">
<dist:module
dist:instant="false"
dist:title="@string/title_mywebdynamicfeature">
<dist:delivery>
<dist:on-demand />
</dist:delivery>
<dist:fusing dist:include="true" />
</dist:module>
</manifest>
Step 3. Confirm the dynamic repository is imported into the main module
In the build.gradle
file of the project app, the system generates the following code by default. (This is because you choose the Base Application Module in Step 1.)
android {
dynamicFeatures = [':mywebdynamicfeature']
}
In order to make the mywebdynamicfeature
dynamic module take effects, must add the following codes in the build.gradle
file:
android {
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
}
Step 4. Import the dependency to support the dynamic feature
Import the dependency in the following files:
- In the
build.gradle
file of the project app, add the following codes to import theiapminiprogram-dynamic-feature
dependency:
dependencies {
implementation "com.alipay.plus.android:iapminiprogram-dynamic-feature:${iapminiprogram_version}"
}
- In the
build.gradle
file of the dynamic module, add the following codes to import theiapminiprogram-myweb
dependency.
dependencies {
implementation "com.alipay.plus.android:iapminiprogram-myweb:${iapminiprogram_version}"
}
Note: Check the latest iapminiprogram_version
version in the Android Release Notes.
Step 5. Configure to use the SplitCompat tool
In order to use the SplitCompat
tool, need to finish the following configurations:
- In the
build.gradle
file of the project app, add the following codes to import dependencies accordingly:
// In your app’s build.gradle file:
...
dependencies {
// This dependency is downloaded from the Google’s Maven repository.
// So, make sure you also include that repository in your project's build.gradle file.
implementation 'com.google.android.play:feature-delivery:2.1.0'
// For Kotlin users, also add the Kotlin extensions library for Play Feature Delivery:
implementation 'com.google.android.play:feature-delivery-ktx:2.1.0'
...
}
- Turn on the
SplitCompat
in your application based on different cases.
Case | To do |
If you have a customized application | You need to add the following codes in the attachBaseContext() function of your current application: copy
|
If you do not have a customized application | You need to define a new application as the following codes, which inherits copy
|
Next actions
Configure the authorization code
- After you integrate the MyWeb module/dynamic feature, you need to provide the package name of your application and SHA256 signature. We will provide you with the authorization code for MYWeb accordingly.
- Before the SDK initialization process, use
setMYWebActivationCodes
for the authorization code configuration (see the following code samplee).
Note:
- If there are multiple SHA256 signatures provided, when setting the authorization code, need to perform a matching judgment based on the signature.
- If the authorization code is incorrect, MYWeb module/dynamic feature will not be enabled and will automatically fall back to the system web view (
webview
).
Code samples:
// before sdk init
Set<String> activationCodes = new HashSet<>();
activationCodes.add("activationCodesDebug");
activationCodes.add("activationCodesRelease");
IAPGriverConfig.getInstance().setMYWebActivationCodes(activationCodes);
IAPConnect.init()