Skip to content

Commit

Permalink
update gradle to fix build err
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaviva committed Jan 20, 2021
1 parent 01698fc commit 958a343
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,16 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.0.0'
implementation "androidx.fragment:fragment:$fragment_version"
if (codeDepend) {
implementation 'com.github.fragivity:processor:0.1.0'
implementation project(path: ':processor')
implementation project(':library')
implementation project(':processor')
kapt project(':processor')
} else {
implementation 'com.github.fragivity:core:0.1.1'
implementation project(path: ':processor')
implementation 'com.github.fragivity:processor:0.1.0'
kapt 'com.github.fragivity:processor:0.1.0'
}
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'

kapt project(":processor")
}

0 comments on commit 958a343

Please sign in to comment.