You are about to create a library on Android.

Asked 2 years ago, Updated 2 years ago, 25 views

You need to create a library with RxJava, which is also used for projects that apply it. So is there no problem using the same library on both sides?

android

2022-09-22 10:37

1 Answers

When adding a library to dependency information, you can use exclude as shown in the example below to exclude specific overlapping libraries. However, it would be okay if you create and apply a library yourself, but sometimes there are additional issues with the version of the library used in this project and the specific library used in the library, so it is necessary to check the compatible version before using it.

 compile (project(':viewpagerIndicator')) {
     exclude group: "com.android.support", module: "support-v4"
 }


2022-09-22 10:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.