Android Tinker 簡單好用的熱修復 熱更新

如果發(fā)布到市場的應(yīng)用突然發(fā)現(xiàn)了一個已修復的小bug,如果為了修復它,傳統(tǒng)的方法是要發(fā)布一個新版本,不過有了tinker后可以用熱更新修復,用戶體驗更好.

一.Tinker 的簡單上手

以下是騰訊gihub官方地址
Tinker 接入指南
以下幾篇寫的非常好的blog
Tinker 熱修復框架 簡單上手教程
微信tinker快速集成
一定要先把官方的demo下載下來測試 直接運行 tinker-sample-android
官方demo

二.集成Tinker與各種坑

application

//這里的application是manifest里面的 不需要實際寫出類
@DefaultLifeCycle(application = "com.mi.mydemo.Application.MyTinkerApplication",
        flags = ShareConstants.TINKER_ENABLE_ALL,
        loadVerifyFlag = false)
//更改為繼承DefaultApplicationLike
public class MyApplication extends DefaultApplicationLike {

    private static final String TAG = "MyApplication";
    private static MyApplication instance;
    private Context mContext;

    public MyApplication(Application application, int tinkerFlags, boolean tinkerLoadVerifyFlag, long applicationStartElapsedTime, long applicationStartMillisTime, Intent tinkerResultIntent, Resources[] resources, ClassLoader[] classLoader, AssetManager[] assetManager) {
        super(application, tinkerFlags, tinkerLoadVerifyFlag, applicationStartElapsedTime, applicationStartMillisTime, tinkerResultIntent, resources, classLoader, assetManager);

    }
 //以前application寫在oncreate的東西搬到這里來初始化
    @Override
    public void onBaseContextAttached(Context base) {
        super.onBaseContextAttached(base);
        MultiDex.install(base);
        TinkerInstaller.install(this);
        instance =  this;
        this.mContext = base;
        SQLiteDatabase.loadLibs(base);//sqlcipher初始化
    }

AndroidManifest

<application
//這個application不用寫出實體類出來,在上面MyApplication中
用注解聲明一個就好了
        android:name=".Application.MyTinkerApplication"

Demo里面測試的是debug 如果是正式上線的需要點擊以下release,點擊后生成差分包如果太慢就重啟Androidstudio然后點擊release就好了

1.png

當然上一個版本的app版本也要用release

2.png

如果用release需要子啊gradle配置keystore
Gradle配置keystore

可能自己寫demo測試的時候 加載熱更新后軟件就重啟了,這種體驗非常不好. 這個要看看騰訊的官方demo,demo有個service繼承DefaultTinkerResultService 設(shè)置的模式是檢測軟件后臺了就更新,這樣用戶就沒有感知到軟件更新的過程

*
 * 通過這個service來控制應(yīng)用熱更新完成后 在應(yīng)用后臺的時候自動更新 
 *
 */
public class SampleResultService extends DefaultTinkerResultService {
    private static final String TAG = "Tinker.SampleResultService";


    @Override
    public void onPatchResult(final PatchResult result) {
        if (result == null) {
            TinkerLog.e(TAG, "SampleResultService received null result!!!!");
            return;
        }
        TinkerLog.i(TAG, "SampleResultService receive result: %s", result.toString());

        //first, we want to kill the recover process
        TinkerServiceInternals.killTinkerPatchServiceProcess(getApplicationContext());

        Handler handler = new Handler(Looper.getMainLooper());
        handler.post(new Runnable() {
            @Override
            public void run() {
                if (result.isSuccess) {
                    Toast.makeText(getApplicationContext(), "patch success, please restart process", Toast.LENGTH_LONG).show();
                } else {
                    Toast.makeText(getApplicationContext(), "patch fail, please check reason", Toast.LENGTH_LONG).show();
                }
            }
        });
        // is success and newPatch, it is nice to delete the raw file, and restart at once
        // for old patch, you can't delete the patch file
        if (result.isSuccess && result.isUpgradePatch) {
            File rawFile = new File(result.rawPatchFilePath);
            if (rawFile.exists()) {
                TinkerLog.i(TAG, "save delete raw patch file");
                SharePatchFileUtil.safeDeleteFile(rawFile);
            }
            //not like TinkerResultService, I want to restart just when I am at background!
            //if you have not install tinker this moment, you can use TinkerApplicationHelper api
            if (checkIfNeedKill(result)) {
                if (Utils.isBackground()) { //后臺了再更新
                    TinkerLog.i(TAG, "it is in background, just restart process");
                    restartProcess();
                } else {
                    //we can wait process at background, such as onAppBackground
                    //or we can restart when the screen off
                    TinkerLog.i(TAG, "tinker wait screen to restart process");
                    new ScreenState(getApplicationContext(), new ScreenState.IOnScreenOff() {
                        @Override
                        public void onScreenOff() {
                            restartProcess();
                        }
                    });
                }
            } else {
                TinkerLog.i(TAG, "I have already install the newly patch version!");
            }
        }

        //repair current patch fail, just clean!
        if (!result.isSuccess && !result.isUpgradePatch) {
            //if you have not install tinker this moment, you can use TinkerApplicationHelper api
            Tinker.with(getApplicationContext()).cleanPatch();
        }
    }

    /**
     * you can restart your process through service or broadcast
     */
    private void restartProcess() {
        TinkerLog.i(TAG, "app is background now, i can kill quietly");
        //you can send service or broadcast intent to restart your process
        android.os.Process.killProcess(android.os.Process.myPid());
    }

    static class ScreenState {
        interface IOnScreenOff {
            void onScreenOff();
        }

        ScreenState(Context context, final IOnScreenOff onScreenOffInterface) {
            IntentFilter filter = new IntentFilter();
            filter.addAction(Intent.ACTION_SCREEN_OFF);
            context.registerReceiver(new BroadcastReceiver() {

                @Override
                public void onReceive(Context context, Intent in) {
                    String action = in == null ? "" : in.getAction();
                    TinkerLog.i(TAG, "ScreenReceiver action [%s] ", action);
                    if (Intent.ACTION_SCREEN_OFF.equals(action)) {

                        context.unregisterReceiver(this);

                        if (onScreenOffInterface != null) {
                            onScreenOffInterface.onScreenOff();
                        }
                    }
                }
            }, filter);
        }
    }

}

三.總結(jié)

有了tinker可以軟件啟動的時候去檢測后臺有沒有配置熱更新 有的話先下載 然后更新修復bug.從此修復bug就是如此簡單.

最后的福利

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末折汞,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌契邀,老刑警劉巖宛乃,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件太闺,死亡現(xiàn)場離奇詭異震庭,居然都是意外死亡鼻由,警方通過查閱死者的電腦和手機担钮,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進店門橱赠,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人箫津,你說我怎么就攤上這事狭姨≡桌玻” “怎么了?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵饼拍,是天一觀的道長赡模。 經(jīng)常有香客問我,道長师抄,這世上最難降的妖魔是什么漓柑? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮叨吮,結(jié)果婚禮上辆布,老公的妹妹穿的比我還像新娘。我一直安慰自己挤安,他們只是感情好谚殊,可當我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著蛤铜,像睡著了一般嫩絮。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上围肥,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天剿干,我揣著相機與錄音,去河邊找鬼穆刻。 笑死置尔,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的氢伟。 我是一名探鬼主播榜轿,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼朵锣!你這毒婦竟也來了谬盐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤诚些,失蹤者是張志新(化名)和其女友劉穎飞傀,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體诬烹,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡砸烦,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了绞吁。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片幢痘。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖掀泳,靈堂內(nèi)的尸體忽然破棺而出雪隧,到底是詐尸還是另有隱情西轩,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布脑沿,位于F島的核電站藕畔,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏庄拇。R本人自食惡果不足惜注服,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望措近。 院中可真熱鬧溶弟,春花似錦、人聲如沸瞭郑。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽屈张。三九已至擒权,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間阁谆,已是汗流浹背碳抄。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留场绿,地道東北人剖效。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像焰盗,于是被迫代替她去往敵國和親璧尸。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容