8000 GitHub - Mack-Hoo/Router: 🍭灵活的组件化路由框架.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Mack-Hoo/Router

 
 

Repository files navigation

Build Status license PullRequest

Router

建议浏览中文wiki.

screenshot

Getting started

  • Add dependencies by adding the following lines to your top level project/build.gradle:
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
    	...
        classpath 'com.chenenyu.router:gradle-plugin:最新版本'
    }
}

// 可选配置.
ext {
    ...
    routerVersion = "x.y.z" // 指定特定的router版本
    compilerVersion = "x.y.z" // 指定特定的router-compiler版本
}
  • Apply router plugin in your module/build.gradle:
apply plugin: 'com.android.application'
...
apply plugin: 'com.chenenyu.router'

current router-gradle-plugin version: Download

current router version: Download

current router-compiler version: compiler

Simple usage

Router uses annotation to specify the mapping relationship.

@Route("test")
public class TestActivity extends AppCompatActivity {
	...
}

Then you can just call Router.build("test").go(context) to open TestActivity, so cool! ​:clap:​​:clap:​​:clap:​

If you configured multiple route @Route({"test","wtf"}), both test and wtf can lead to TestActivity.

Advanced usage

Please refer to the wiki for more informations.

ProGuard

See wiki.

Contact

QQ group: 271849001

License

Apache 2.0

About

🍭灵活的组件化路由框架.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 93.5%
  • Groovy 6.5%
0