Baike.dev
All toolsTrendingOpen sourceNewsSubmit
Log in
< 返回工具列表
A

ARouter

> 编程语言
开源

💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)

14.5K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

💪 A framework for assisting in the renovation of Android componentization (帮助 Android App 进行组件化改造的路由框架)

    A framework for assisting in the renovation of Android app componentization

中文文档


Latest version

module arouter-api arouter-compiler arouter-register arouter-idea-plugin version

Demo

Demo apk、Demo Gif

I. Feature

  1. Supports direct parsing of standard URLs for jumps and automatic injection of parameters into target pages
  2. Support for multi-module
  3. Support for interceptor
  4. Support for dependency injection
  5. InstantRun support
  6. MultiDex support
  7. Mappings are grouped by group, multi-level management, on-demand initialization
  8. Supports users to specify global demotion and local demotion strategies
  9. Activity, interceptor and service can be automatically registered to the framework
  10. Support multiple ways to configure transition animation
  11. Support for fragment
  12. Full kotlin support (Look at Other#2)
  13. Generate route doc support
  14. Provide IDE plugin for quick navigation to target class
  15. Support Incremental annotation processing
  16. Support register route meta dynamic.

II. Classic Case

  1. Forward from external URLs to internal pages, and parsing parameters
  2. Jump and decoupling between multi-module
  3. Intercept jump process, handle login, statistics and other logic
  4. Cross-module communication, decouple components by IoC

III. Configuration

The current development line uses AndroidX natively. Applications consuming it must enable android.useAndroidX=true; ARouter itself does not require Jetifier. Projects that still use the legacy Support Library should remain on an ARouter 1.x release until the application has migrated to AndroidX. The namespace change is a source and binary compatibility boundary, so its release will be handled as a major-version change.

ARouter's runtime keeps minSdkVersion=14. The demo application and its Gson-based module-java use minSdkVersion=21; Gson is not an ARouter runtime dependency.

  1. Adding dependencies and configurations
…
  1. Add annotations

    // Add annotations on pages that support routing (required)
    // The path here needs to pay attention to need at least two levels : /xx/xx
    @Route(path = "/test/activity")
    public class YourActivity extend Activity {
        ...
    }
    

    Static route paths must be unique within one module. Route.priority is copied into route metadata; it is not an override rule and does not select between destinations that declare the same path.

  2. Initialize the SDK

    if (isDebug()) {           // These two lines must be written before init, otherwise these configurations will be invalid in the init process
        ARouter.openLog();     // Print log
        ARouter.openDebug();   // Turn on debugging mode (If you are running in InstantRun mode, you must turn on debug mode! Online version needs to be closed, otherwise there is a security risk)
    }
    ARouter.init(mApplication); // As early as possible, it is recommended to initialize in the Application
    
  3. Initiate the routing

    // 1. Simple jump within application (Jump via URL in 'Advanced usage')
    ARouter.getInstance().build("/test/activity").navigation();
    
    // 2. Jump with parameters
    ARouter.getInstance().build("/test/1")
                .withLong("key1", 666L)
                .withString("key3", "888")
                .withObject("key4", new Test("Jack", "Rose"))
                .navigation();
    
  4. Add confusing rules (If Proguard is turn on)

…
  1. Using the custom gradle plugin to autoload the routing table

    apply plugin: 'com.alibaba.arouter'
    
    buildscript {
        repositories {
            mavenCentral()
        }
    
        dependencies {
            // Replace with the latest version
            classpath "com.alibaba:arouter-register:?"
        }
    }
    

    Optional, use the registration plugin provided by the ARouter to automatically load the routing table(power by AutoRegister). By default, the ARouter will scanned the dex files . Performing an auto-registration via the gradle plugin can shorten the initialization time , it should be noted that the plugin must be used with api above 1.3.0!

    With Android Gradle Plugin 7.4 or newer, the registration plugin uses the public Scoped Artifacts API and supports Gradle Configuration Cache. Older AGP versions use the legacy Transform API and cannot provide reliable Configuration Cache reuse.

  2. use ide plugin for quick navigation to target class (Optional)

    Search for ARouter Helper in the Android Studio plugin market, or directly download the arouter-idea-plugin zip installation package listed in the Latest version above the documentation, after installation plugin without any settings, U can find an icon at the beginning of the jump code. () click the icon to jump to the target class that identifies the path in the code.

    The current plugin recognizes Java and Kotlin ARouter.getInstance().build(...) calls whose paths are string literals or compile-time constants, and it can navigate to @Route destinations.

IV. Advanced usage

  1. Jump via URL

    // Create a new Activity for monitoring Scheme events, and then directly pass url to ARouter
    public class SchemeFilterActivity extends Activity {
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
            Uri uri = getIntent().getData();
            ARouter.getInstance().build(uri).navigation();
            finish();
        }
    }
    

    AndroidManifest.xml

    <activity android:name=".activity.SchemeFilterActivity">
        
        <intent-filter>
            <data
                android:host="m.aliyun.com"
                android:scheme="arouter"/>
    
            <action android:name="android.intent.action.VIEW"/>
    
            <category android:name="android.intent.category.DEFAULT"/>
            <category android:name="android.intent.category.BROWSABLE"/>
        </intent-filter>
    </activity>
    
  2. Parse the parameters in the URL

…
  1. Declaration Interceptor (Intercept jump process, AOP)
…
An interceptor must complete each request exactly once. When redirecting to a login route,
terminate the original request and normally bypass the same interceptor chain for the redirect:
``` java
callback.onInterrupt(new IllegalStateException("Login is required"));
ARouter.getInstance()
    .build("/account/login")
    .greenChannel()
    .navigation(postcard.getContext());
```
Omitting both callback methods leaves the original navigation pending until its timeout.
  1. Processing jump results

    // U can get the result of a single jump
    ARouter.getInstance().build("/test/1").navigation(this, new NavigationCallback() {
        @Override
        public void onFound(Postcard postcard) {
        ...
        }
    
        @Override
        public void onLost(Postcard postcard) {
        ...
        }
    });
    
    // Check the current route table without launching the destination.
    // The route group is loaded lazily; invalid or unavailable paths return false.
    boolean available = ARouter.getInstance().hasRoute("/test/1");
    
  2. Custom global demotion strategy

    // Implement the DegradeService interface
    @Route(path = "/xxx/xxx")
    public class DegradeServiceImpl implements DegradeService {
        @Override
        public void onLost(Context context, Postcard postcard) {
            // do something.
        }
    
        @Override
        public void init(Context context) {
    
        }
    }
    
  3. Decoupled by dependency injection : Service management -- Exposure services

    // Declaration interface, other components get the service instance through the interface
    public interface HelloService extends IProvider {
        String sayHello(String name);
    }
    
    @Route(path = "/yourservicegroupname/hello", name = "test service")
    public class HelloServiceImpl implements HelloService {
    
        @Override
        public String sayHello(String name) {
            return "hello, " + name;
        }
    
        @Override
        public void init(Context context) {
    
        }
    }
    
  4. Decoupled by dependency injection : Service management -- Discovery service

…
  1. Pretreatment Service

    @Route(path = "/xxx/xxx")
    public class PretreatmentServiceImpl implements PretreatmentService {
        @Override
        public boolean onPretreatment(Context context, Postcard postcard) {
            // Do something before the navigation, if you need to handle the navigation yourself, the method returns false
        }
    
        @Override
        public void init(Context context) {
    
        }
    }
    
  2. Dynamic register route meta Applicable to apps with plug-in architectures or some scenarios where routing information needs to be dynamically registered,Dynamic registration can be achieved through the interface provided by ARouter, The target page and service need not be marked with @Route annotation,Only the routing information of the same group can be registered in the same batch

…

V. More features

  1. Other settings in initialization

    ARouter.openLog(); // Open log
    ARouter.openDebug(); // When using InstantRun, you need to open this switch and turn it off after going online. Otherwise, there is a security risk.
    ARouter.printStackTrace(); // Print thread stack when printing logs
    
  2. API description

…
  1. Get the original URI

    String uriStr = getIntent().getStringExtra(ARouter.RAW_URI);
    
  2. Rewrite URL

    // Implement the PathReplaceService interface
    @Route(path = "/xxx/xxx")
    public class PathReplaceServiceImpl implements PathReplaceService {
        /**
        * For normal path.
        *
        * @param path raw path
        */
        String forString(String path) {
            // Custom logic
            return path;
        }
    
    /**
        * For uri type.
        *
        * @param uri raw uri
        */
        Uri forUri(Uri uri) {
            // Custom logic
            return url;
        }
    }
    
  3. Generate router doc Java modules using annotationProcessor:

    // Edit build.gradle, add option 'AROUTER_GENERATE_DOC = enable'
    // Doc file : build/generated/source/apt/(debug or release)/com/alibaba/android/arouter/docs/arouter-map-of-${moduleName}.json
    android {
        defaultConfig {
            ...
            javaCompileOptions {
                annotationProcessorOptions {
                    arguments = [AROUTER_MODULE_NAME: project.getName(), AROUTER_GENERATE_DOC: "enable"]
                }
            }
        }
    }
    

    Kotlin modules must pass the same option through KAPT instead of javaCompileOptions. The generated file is under build/generated/source/kapt/<variant>/. The processor remov

核心特点

  • •For normal path.
  • •@param path raw path
  • •For uri type.
  • •@param uri raw uri

> 标签

Javaandroidcomponentizationdependency-injectioninterceptor

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月9日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言
Baike.dev

baike.dev helps you discover great languages, frameworks, databases, DevOps and cloud-native tools.

Quick links

  • Home
  • All tools
  • Trending
  • Open source

About

  • About us
  • Community
  • News

Contribute

Found a great developer tool? Share it with the community.

Submit a tool
© 2026 baike.dev Developer EncyclopediaUpdated daily · Discover great developer tools