Router for componentization.
Add spi-gradle-plugin to your project !
buildscript {
ext {
kotlin_version = '1.5.31'
booster_version = '4.6.0'
}
repositories {
mavenCentral()
google()
// jcenter()
// didi booster
maven { url 'https://oss.sonatype.org/content/repositories/public/' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
// add maven repository for spi-plugin at build.gradle file of root project
maven { url "https://raw.githubusercontent.com/afirez/spi/master/repo/" }
}
dependencies {
classpath 'com.afirez.spi:spi-gradle-plugin:3.0.0'
// ①
classpath "com.didiglobal.booster:booster-gradle-plugin:$booster_version"
// ② figure out the features you really need, then choose the right module for integration
// ② 弄清楚真正需要的特性,然后从下面的模块列表中选择正确的模块进行集成
// classpath "com.didiglobal.booster:booster-task-all:$booster_version"
// classpath "com.didiglobal.booster:booster-transform-all:$booster_version"
// gradle plugin version <= 4.1.2
// classpath 'com.afirez.spi:spi-gradle-plugin:2.0.0'
// gradle plugin version <= 3.6.4
// classpath 'com.afirez.spi:spi-gradle-plugin:1.0.1'
}
}
// in module build.gradle
apply plugin: 'com.android.application'
// didi booster
apply plugin: 'com.didiglobal.booster' // ③
// gradle plugin version <= 4.1.2
// apply plugin: 'spi'
// or apply plugin: 'com.afirez.spi'
Add spi to module project if needed !
allprojects {
repositories {
...
mavenCentral()
google()
// jcenter()
// didi booster
maven { url 'https://oss.sonatype.org/content/repositories/public/' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
// add maven repository for spi at build.gradle file of root project
maven { url "https://raw.githubusercontent.com/afirez/apps_android_repo/master" }
...
}
}
implementation "com.afirez.spi:spi:1.0.1"
implementation "com.afirez.applike:applike:1.0.1"
Add irouter to module project if needed !
allprojects {
repositories {
...
mavenCentral()
google()
// jcenter()
// didi booster
maven { url 'https://oss.sonatype.org/content/repositories/public/' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
// add maven repository for spi at build.gradle file of root project
maven { url "https://raw.githubusercontent.com/afirez/apps_android_repo/master" }
...
}
}
implementation "com.afirez.irouter:irouter-api:1.0.1"
implementation "com.afirez.rxactivityresult:rxactivityresult:1.0.0"
implementation "io.reactivex.rxjava2:rxjava:2.2.12"
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
1、 Load extensions by SPI like AppLike, if you need discovery extensions from other module.
2、 Route Fragment with IRouter can pass arguments like routing Activity.
Copyright 2019 afirez
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.