Skip to content

Commit be0e743

Browse files
committed
CI
1 parent 185ff0d commit be0e743

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ implementation 'com.king.frame:mvvmframe:1.0.2'
4545
</dependency>
4646
```
4747

48-
### **dagger****room** 的注解处理器
48+
### **Dagger****Room** 的注解处理器
4949

5050
您需要引入下面的列出的编译时的注解处理器,用于自动生成相关代码。其它对应版本具体详情可查看 [Versions](https://github.com/jenly1314/MVVMFrame/releases)
5151
```gradle
@@ -67,7 +67,7 @@ implementation 'com.king.frame:mvvmframe:1.0.2'
6767
6868
```
6969

70-
### MVVMFrame引入的库(具体对应版本请查看[Versions](versions.gradle)
70+
### MVVMFrame引入的库(具体对应版本请查看 [Versions](versions.gradle)
7171
```gradle
7272
//appcompat
7373
compileOnly deps.appcompat

app/src/main/java/com/king/mvvmframe/App.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ protected void attachBaseContext(Context base) {
5353
@Override
5454
public void onCreate() {
5555
super.onCreate();
56+
57+
//开始构建项目时,DaggerApplicationComponent类可能不存在,您需要执行Make Project才能生成,Make Project快捷键 Ctrl + F9
5658
ApplicationComponent appComponent = DaggerApplicationComponent.builder()
5759
.appComponent(getAppComponent())
5860
.build();

example/src/main/java/com/king/mvvmframe/example/App.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ protected void attachBaseContext(Context base) {
5151
@Override
5252
public void onCreate() {
5353
super.onCreate();
54+
55+
//开始构建项目时,DaggerApplicationComponent类可能不存在,您需要执行Make Project才能生成,Make Project快捷键 Ctrl + F9
5456
ApplicationComponent appComponent = DaggerApplicationComponent.builder()
5557
.appComponent(getAppComponent())
5658
.build();

0 commit comments

Comments
 (0)