自定义 Gradle Plugin

Plugin 的写法

1. 写在 build.gradle

build.gradle
tips:单个项目使用, 进行一些简单任务, 不方便进行复用

class PluginDemo implements Plugin<Project> {
@Override
    void apply(Project target) {
        println 'Hello word!'
} }
apply plugin: PluginDemo


or

 
class ExtensionDemo {
    def name = 'dalong'
}
class PluginDemo implements Plugin<Project> {
@Override
void apply(Project target) {
        def extension = target.extensions.create('mplugin', ExtensionDemo)
        target.afterEvaluate {
            println "Hello ${extension.name}!"
        }
} }
apply plugin: PluginDemo
mplugin {
    name 'dalong1111'
}

2. 写在 buildSrc ⽬录下

tips:单个项目使用, 进行了代码分离,可以进行一定程度的复用

  • 目录结构:


  • *.properties
    resources 目录是固定写法,可以包含多个 *.properties文件。 其中 *plugin的名称。
    例如: mdemo.properties , mdemopluge的名称,使用时如下引用:

apply plugin: 'mdemo'

*.properties 内容如下:

implementation-class=com.tencent.demo.PluginDemo

com.tencent.demo.PluginDemo 是实现类Plugin接口的具体类

  • groovy目录

PluginDemo.groovy

class PluginDemo implements Plugin<Project> {
    @Override
    public void apply(Project project) {
        def extension = project.extensions.create('mplugin', ExtensionDemo)
        project.afterEvaluate {
            println "Hello ${extension.name}!"
        }
    }
}

ExtensionDemo.groovy

class ExtensionDemo {
    def name = "dalong"
}
  • 关于buildSrc

    1. 这是 gradle 的⼀个特殊目录,这个目录的 build.gradle 会自动被执⾏,不需再配置到settings.gradle
    2. buildSrc 的执⾏早于任何⼀个 project,也早于 settings.gradle
    3. buildSrc 中配置的plugin,会被添加到settings.gradle 中的所有子projectclasspath中, 因此所有的project 可以使用 apply plugin: '***' 来使用自定义的plugin
  • build.gradle
    官网参考:
    https://docs.gradle.org/current/userguide/organizing_gradle_projects.html#sec:build_sources

buildSrc/build.gradle

repositories {
    mavenCentral()
}

dependencies {
    testImplementation 'junit:junit:4.12'
}

or

apply plugin: 'groovy'

dependencies {
    implementation gradleApi() //gradle sdk
    implementation localGroovy() //groovy sdk
}  

3. 独立第三方组件

和创建model工程一样创建一个plugin的model工程。

  • build.gradle 配置如下
apply plugin: 'groovy'
apply plugin: 'maven'

allprojects {
    repositories {
        maven { url 'http://maven.oa.com/nexus/content/repositories/android' }
        maven { url 'http://maven.oa.com/nexus/content/repositories/thirdparty/' }
        mavenLocal()
    }
}

dependencies {
    implementation gradleApi()
    implementation localGroovy()
}

// plugin 发布到本地仓库
group = 'mdemo'
version="1.0.0"
uploadArchives {
    repositories {
       mavenDeployer {
            repository(url: uri('../repo'))
        }
    }
}

  • setting.gradle 中需要 include , 新创建的plugin的model工程
  • 工程根目录下build.gradle 配置
project.version="1.0.0"

buildscript {

    repositories {
        maven {
            url './repo'
        }
        maven { url "******" }
        mavenLocal()
    }


    dependencies {
        classpath 'com.android.tools.build:gradle:3.3.2'
        classpath 'mdemo:1.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {

        maven { url "******" }
        mavenLocal()
    }
}

关于Plugin 的一个Demo

目标: 通过Plugin 的方式,配置应用程序的反调试检测

关键实现:

  • 1、通过第三种方式添加plugin插件工程(plugin开发完后发布在本地,在app工程中引入)
  • 2、在plugin中,通过config配置控制行为,添加task的方式来

添加自定义config配置( app model 中 build.gradle )

....
....

apply plugin: 'anti-debug-plugin'

MDebugInfo {
    debug {
        checkJavaDebuggableInterval 60
        checkJavaDebuggable true
    }
    release {
        checkJavaDebuggableInterval 60
        checkJavaDebuggable true
    }
}

dependencies {
   ...
   ...
}

groovy 中 plugin 的实现

public class MDebugPlugin implements Plugin<Project> {


    @Override
    void apply(Project project) {
        project.extensions.create("MDebugInfo", MDebugInfoExtension);
        project.MDebugInfo.extensions.create("debug", DebugBuildConfig);
        project.MDebugInfo.extensions.create("release", ReleaseBuildConfig);

        // 创建 task 任务
        project.tasks.create(name: "genMDebugSoDebug", type: GenMDebugSoDebug, dependsOn: ["preBuild"]);
        project.tasks.create(name: "genMDebugSoRelease", type: GenMDebugSoRelease, dependsOn: ["preBuild"]);

        // 设置task执行时机
        project.tasks.whenTaskAdded { theTask ->
            if (theTask.name.equals("transformNativeLibsWithStripDebugSymbolForRelease")) {
                theTask.dependsOn "genMDebugSoRelease"
            }

            if (theTask.name.equals("transformNativeLibsWithStripDebugSymbolForDebug")) {
                theTask.dependsOn "genMDebugSoDebug"
            }
        }
    }
}

groovy 中 plugin 的实现
GenMDebugSoDebug、GenMDebugSoRelease task 任务中通过NDK来编译so文件

// 调用函数
String jniDir = project.android.sourceSets.main.jniLibs.srcDirs[0];
genMDebugSo(MConfig, "${project.buildDir}", "${project.rootProject.projectDir}", jniDir, true);

task 实现函数
public void genMDebugSo(BuildConfig buildConfig, String buildPath, String rootPath, String jniDir, boolean isRelease) {
        //1 创建jni临时目录
        String jniTmpPath = buildPath + "/jniTmp/jni";
        File jniTmpFile = new File(jniTmpPath);
        if (!jniTmpFile.exists()) {
            jniTmpFile.mkdirs();
        }
        //2 拷贝jni相关文件
        copyFile(jniTmpPath, "/jni", "Android.mk");
        copyFile(jniTmpPath, "/jni", "Application.mk");
        copyFile(jniTmpPath, "/jni", "MDebug.cpp");
        copyFile(jniTmpPath, "/jni", "JNIModel.h");

        String ndkPath = System.getenv("ANDROID_NDK_HOME");
        if (ndkPath == null) {
            Properties properties = new Properties();
            File localFile = new File(rootPath + "/" + "local.properties");
            properties.load(new InputStreamReader(new FileInputStream(localFile)));
            ndkPath = properties.getProperty("ndk.dir")
        }
        println "ndk.dir: " + ndkPath + "\n";
        println "jniDir: " + jniDir + "\n";
        File jniSoDir = new File(jniDir + File.separator + "armeabi");
        jniSoDir.mkdirs();
        if (!ndkPath.endsWith(File.separator)){
            ndkPath += File.separator;
        }

        int checkJavaDebuggerInterval = buildConfig.checkJavaDebuggableInterval;
        boolean checkJavaDebugger = buildConfig.checkJavaDebuggable;

        String argvs =  " .......“;

        print "argvs " + argvs + "\n";
        //编译so
        String cmdStr= ndkPath+"ndk-build " + argvs + " NDK_PROJECT_PATH=" + buildPath + "/jniTmp APP_BUILD_SCRIPT="+jniTmpPath+"/Android.mk";
        println cmdStr + "\n";
        Process process = Runtime.getRuntime().exec(cmdStr);
        BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
        String line;
        while((line = reader.readLine())!= null){
            println "ndk-build info: " +line;
        }
        reader = new BufferedReader(new InputStreamReader(process.getErrorStream()));
        while((line = reader.readLine())!= null){
            println "ndk-build err: " + line;
        }
        process.waitFor();

        //5 拷贝so
        String outPath = jniSoDir.getAbsoluteFile();
        (new AntBuilder()).copy(file: buildPath + "/jniTmp/libs/armeabi/libad.so", tofile: outPath+"/libad.so");
        println "copy "+ buildPath + "/jniTmp/libs/armeabi/libad.so to "+outPath+"/libad.so";
    }

  • 3、通过 plugin的方式,添加对应的功能so会编译早app中的jni目录。 这样在app build 或者 run 的时候就可以使用这个功能了。

End!

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,384评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,845评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,148评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,640评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,731评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,712评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,703评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,473评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,915评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,227评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,384评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,063评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,706评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,302评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,531评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,321评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,248评论 2 352

推荐阅读更多精彩内容