Android接入阿里云热修复介绍

作者:白色单肩包 时间:2023-09-16 08:53:01 

1.AndroidManinifest.xml中加入权限

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

2.AndroidManinifest.xml里application中加入以下,在AS中打开在第五步下载的文件
App ID:"hotfix.idSecret"
App Secret:"emas.appSecret"
RSA密钥:"hotfix.rsaSecret"

<meta-data
android:name="com.taobao.android.hotfix.IDSECRET"
android:value="App ID" />
<meta-data
android:name="com.taobao.android.hotfix.APPSECRET"
android:value="App Secret" />
<meta-data
android:name="com.taobao.android.hotfix.RSASECRET"
android:value="RSA密钥" />

3、在app的build.gradle中加入依赖等

plugins { id 'com.android.application'}
//加载文件
apply plugin: 'com.aliyun.ams.emas-services'

android {
   compileSdkVersion 30
   buildToolsVersion '30.0.3'

defaultConfig {
       applicationId "com.wb.hotfixdemo"
       minSdkVersion 16
       targetSdkVersion 30
       versionCode 1
       versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
   }

buildTypes {
       release {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
       }
       debug {
           minifyEnabled false
           proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
       }
   }
   compileOptions {
       sourceCompatibility JavaVersion.VERSION_1_8
       targetCompatibility JavaVersion.VERSION_1_8
   }
}

dependencies {

implementation 'androidx.appcompat:appcompat:1.1.0'
   implementation 'com.google.android.material:material:1.1.0'
   implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
   testImplementation 'junit:junit:4.+'
   androidTestImplementation 'androidx.test.ext:junit:1.1.1'
   androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//阿里云依赖
   api 'com.aliyun.ams:alicloud-android-hotfix:3.3.0'
}

4、SophixStubApplication
目前集成已经完毕了,下面就是代码的实现,新建一个类SophixStubApplication继承SophixApplication

public class SophixStubApplication extends SophixApplication {
   private final String TAG = "SophixStubApplication";
   // 此处SophixEntry应指定真正的Application,并且保证RealApplicationStub类名不被混淆。

@Keep
   @SophixEntry(MyRealApplication.class)
   static class RealApplicationStub {}

@Override
   public void onCreate() {
       super.onCreate();
       SophixManager.getInstance().queryAndLoadNewPatch();
   }

@Override
   protected void attachBaseContext(Context base) {
       super.attachBaseContext(base);
//         如果需要使用MultiDex,需要在此处调用。
//         MultiDex.install(this);
       initSophix();
   }

private void initSophix() {
       String appVersion = "0.0.0";
       try {
           appVersion = this.getPackageManager().getPackageInfo(this.getPackageName(), 0).versionName;
       } catch (Exception e) {
       }
       final SophixManager instance = SophixManager.getInstance();
       instance.setContext(this)
               .setAppVersion(appVersion)
               .setSecretMetaData(null, null, null)
               .setEnableDebug(true)
               .setEnableFullLog()
               .setPatchLoadStatusStub(new PatchLoadStatusListener() {
                   @Override
                   public void onLoad(final int mode, final int code, final String info, final int handlePatchVersion) {
                       if (code == PatchStatus.CODE_LOAD_SUCCESS) {
                           Log.i(TAG, "sophix load patch success!");
                       } else if (code == PatchStatus.CODE_LOAD_RELAUNCH) {
                           // 如果需要在后台重启,建议此处用SharePreference保存状态。
                           Log.i(TAG, "sophix preload patch success. restart app to make effect.");
                       }
                   }
               }).initialize();
   }
}

5、MyRealApplication

public class MyRealApplication extends Application {

}

6、AndroidManinifest.xml里加入SophixStubApplication

<application
       android:name=".SophixStubApplication"//加入此项
       android:allowBackup="true"
       android:icon="@mipmap/ic_launcher"
       android:label="@string/app_name"
       android:roundIcon="@mipmap/ic_launcher_round"
       android:supportsRtl="true"
       android:theme="@style/Theme.HotFixDemo">

到这已经完成阿里云热修复的百分之八十,后面就是下载工具实现发布补丁

来源:https://blog.csdn.net/qq_46290634/article/details/122682912

标签:Android,阿里云,热修复
0
投稿

猜你喜欢

  • idea前后跳转箭头的快捷键

    2022-09-08 10:55:44
  • java实现在性能测试中进行业务验证实例

    2022-10-15 09:50:11
  • C#查找对象在ArrayList中出现位置的方法

    2022-08-06 19:19:35
  • Android实现实时通信示例

    2022-12-27 00:59:55
  • Android画板开发之基本画笔功能

    2023-01-09 07:26:21
  • java代码实现C盘文件统计工具

    2021-06-23 01:22:38
  • Android开源项目PullToRefresh下拉刷新功能详解

    2022-02-02 15:14:54
  • 使用工具类-java精确到小数点后6位

    2021-06-24 20:45:39
  • Java同步函数代码详解

    2022-10-13 23:22:03
  • java实现文件重命名的方法

    2022-11-06 05:42:25
  • Kotlin this详解及实例

    2022-04-25 22:33:30
  • java判断字符串是否有逗号的方法

    2021-11-03 08:01:23
  • Java如何将字符串String转换为整型Int

    2023-11-10 21:40:19
  • Spring boot的上传图片功能实例详解

    2022-10-09 09:52:00
  • Android编程实现等比例显示图片的方法

    2022-05-20 03:37:34
  • 每日六道java新手入门面试题,通往自由的道路--多线程

    2022-12-13 16:04:07
  • Hadoop+HBase+ZooKeeper分布式集群环境搭建步骤

    2022-02-13 01:16:33
  • 基于NET Core 的Nuget包制作、发布和运用流程解析(完整过程)

    2022-03-10 01:09:29
  • Java 数据结构与算法系列精讲之排序算法

    2023-11-01 13:25:40
  • Java项目实现寻找迷宫出路

    2022-10-05 14:08:46
  • asp之家 软件编程 m.aspxhome.com