Skip to content

Commit 61a5c22

Browse files
committed
feat: 修复必须依赖Support包问题
1 parent bbb2df4 commit 61a5c22

File tree

55 files changed

+154
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+154
-82
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Rudolph Android Router Framework(鲁道夫安卓路由框架组件)
2121

2222
- 支持组件API模块自动生成
2323
- 自动生成路由Builder类与服务类的接口层;
24-
- 加载更快,更稳定,无需dex扫描方式加载
24+
- 加载更快,更稳定,无需插桩与dex扫描
2525
- 无需指定模块名,接入更简单;
2626
- 显式跳转与URL路由地址跳转融为一体,更方便快捷;
2727
- 通过Builder方式传参,无需手动写参数名,从而减少参数传错和修改带来的Bug隐患;

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies {
2828
implementation fileTree(include: ['*.jar'], dir: 'libs')
2929
implementation "com.android.support:appcompat-v7:${versions.supportLib}"
3030
implementation project(':rudolph')
31-
implementation project(':module-a')
32-
implementation project(':module-b')
31+
implementation project(':sampleA')
32+
implementation project(':sampleB')
3333

3434
}
3535
repositories {

app/src/main/java/cn/wzbos/android/rudolph/example/SplashActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import android.support.v7.app.AppCompatActivity;
66

77
import cn.wzbos.android.rudolph.Rudolph;
8-
import cn.wzbos.android.rudolph.example.module_a.MainActivityRouter;
8+
import cn.wzbos.samplea.MainActivityRouter;
99

1010
public class SplashActivity extends AppCompatActivity {
1111

build.gradle

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ buildscript {
1212
]
1313

1414
repositories {
15-
jcenter()
15+
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
1616
google()
17+
jcenter()
1718
}
1819

1920
dependencies {
@@ -27,13 +28,9 @@ buildscript {
2728

2829
allprojects {
2930
repositories {
30-
jcenter()
31+
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
3132
google()
32-
}
33-
34-
configurations.all {
35-
// check for updates every build
36-
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
33+
jcenter()
3734
}
3835
}
3936

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ siteUrl=https://github.com/wzbos/Android-Rudolph-Router
1818
gitUrl=https://github.com/wzbos/Android-Rudolph-Router.git
1919
licenseName=The Apache Software License, Version 2.0
2020
licenseUrl=http://www.apache.org/licenses/LICENSE-2.0.txt
21-
rudolph_version=1.0.3
21+
rudolph_version=1.0.5
2222
developerId=wzbos
2323
developerName=zongbo.wu
2424
developerEmail=sckoo@163.com

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Tue Sep 25 10:38:07 CST 2018
1+
#Thu Jun 11 16:52:49 CST 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

module-a-api/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
This file was deleted.

module-a-api/src/main/java/cn/wzbos/android/rudolph/example/module_a_api/Test.java

Lines changed: 0 additions & 7 deletions
This file was deleted.

module-b-api/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
This file was deleted.

rudolph-annotations/src/main/java/cn/wzbos/android/rudolph/RouteType.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ public enum RouteType {
99
METHOD,
1010
FRAGMENT,
1111
FRAGMENT_V4,
12+
FRAGMENT_AndroidX,
1213
SERVICE,
1314
UNKNOWN,
1415
}

0 commit comments

Comments
 (0)