All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tencent.tinker.build.gradle.extension.TinkerArkHotExtension.groovy Maven / Gradle / Ivy

Go to download

Tinker is a hot-fix solution library for Android, it supports dex, library and resources update without reinstalling apk.

The newest version!
/*
 * Copyright (C) 2019. Huawei Technologies Co., Ltd. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the BSD 3-Clause License
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * the BSD 3-Clause License for more details.
 */
 
package com.tencent.tinker.build.gradle.extension

public class TinkerArkHotExtension {
    String path;
    String name;

    public TinkerArkHotExtension() {
        path = "arkHot";
        name = "patch.apk";
    }

    @Override
    public String toString() {
        """| path= ${path}
           | name= ${name}
         """.stripMargin()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy