Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,16 @@ dependencies {
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'org.jetbrains:annotations:16.0.1'
implementation 'com.apollographql.apollo:apollo-runtime:2.5.14'

// Apollo with excluded vulnerable dependencies
implementation('com.apollographql.apollo:apollo-runtime:2.5.14') {
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
}

// Explicitly add secure versions to replace excluded ones
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:2.1.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.0'
}
Loading