Skip to content

Commit 3cdfdc0

Browse files
committed
fix: add missing JSR305 dependency for javax.annotation
The project uses javax.annotation.Nullable which requires the JSR305 library. Added com.google.code.findbugs:jsr305:3.0.2 to resolve compilation errors.
1 parent 9a2b439 commit 3cdfdc0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ dependencies {
8585
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
8686
implementation 'com.google.android.flexbox:flexbox:3.0.0'
8787
implementation "androidx.annotation:annotation:1.2.0"
88+
// JSR305 annotations for javax.annotation
89+
implementation 'com.google.code.findbugs:jsr305:3.0.2'
8890
// 3rd part Dependencies...
8991
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
9092
implementation 'io.reactivex.rxjava2:rxjava:2.1.3'

0 commit comments

Comments
 (0)