Android组件化 - gradle配置(一)

一、什么是组件化

什么是组件化呢? 组件化、插件化、模块化之间有什么区别呢?

组件化:每个组件都是独立的功能模块,类似一个公司下面,有多个部门,每个部门可以独立做自己的事情,也可以作为一个整体工作。

插件化:每个插件都是一个APK,类似一个集团,底下有多个子公司。

模块化:和组件化很类似,按功能分模块,是一个整体。
以上只是自己粗略的理解,其实重点是组件化。

二、组件化的架构

image.png

1.每个组件都可以独立运行。
2.组件之间通过路由进行交流。
3.从上往下单向依赖,结构清晰。

三、组件化Demo

  1. 新建一个ComponentDemo工程


    image.png

    2.新建两个module组件,假设为登录组件和订单组件。


    image.png

    3.在工程的根目录下,创建一个config.gradle脚本,抽取通用的全局配置,使所有组件配置统一,一次修改,所有组件生效。
    抽取的通用的gradle配置如下:
    ext {
        buildConfiguration = [
                compileVersion     : 29,
                buildToolsVersion  : "29.0.3",
                minSdkVersion      : 19,
                targetSdkVersion   : 29,
                sourceCompatibility: JavaVersion.VERSION_1_8,
                targetCompatibility: JavaVersion.VERSION_1_8,
        ]
        libraries = [
                android: [
                        'appcompat'       : 'androidx.appcompat:appcompat:1.1.0',
                        'material'        : 'com.google.android.material:material:1.1.0',
                        'constraintlayout': 'androidx.constraintlayout:constraintlayout:1.1.3',
                        'junit4'          : 'junit:junit:4.+',
                        'androidxjunit'   : 'androidx.test.ext:junit:1.1.1',
                        'espresso'        : 'androidx.test.espresso:espresso-core:3.3.0',
                        'AndroidJUnitRunner'        : 'androidx.test.runner.AndroidJUnitRunner',
                ]
        ]
    }
}

接着每个app模块、LoginModule、OrderModule中的build.gradle统一引用

plugins {
    id 'com.android.application'
}
//这里要引入外部的gradle配置
apply from : '../config.gradle'

android {
    compileSdkVersion buildConfiguration.compileVersion
    buildToolsVersion buildConfiguration.buildToolsVersion

    defaultConfig {
       //除了主工程有applicationId,其他module删掉这句
        applicationId "com.lxqljc.componentdemo"
        minSdkVersion buildConfiguration.minSdkVersion
        targetSdkVersion buildConfiguration.targetSdkVersion
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner buildConfiguration.testInstrumentationRunner
    }

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

dependencies {

    implementation libraries.android.appcompat
    implementation libraries.android.material
    implementation libraries.android.constraintlayout
    testImplementation libraries.android.junit4
    androidTestImplementation libraries.android.androidxjunit
    androidTestImplementation libraries.android.espresso
}

在gradle中定义个isRelease变量,true 只有app模块可以运行,false则每个组件支持独立运行,每个独立组件是否支持运行是以这两行代码为关键:通过isRelease控制组件是否可运行。


image.png

每个组件添加下面代码:

apply from: '../config.gradle'

if (isRelease) {
    //可运行
    apply plugin: 'com.android.application'
} else {
    //作为库
    apply plugin: 'com.android.library'
}

isRelease = true 的情况,LoginModule和OrderModule的文件夹图片是条形图。


image.png

isRelease = false 的情况,LoginModule和OrderModule的文件夹变成了一个小绿点,此时变成了一个可单独运行的组件了。


image.png

这还需要为每个组件模块配置applicationId和AndroidManifest.xml文件


image.png

image.png

四、总结

  1. 组件化需要通过gradle脚本配置。

----> 先讲到这里,下节讲讲组件之间通信的路由方案。

你可能感兴趣的:(Android组件化 - gradle配置(一))