Skip to content

Commit

Permalink
fix(network): missing no-op methods added (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
srtvprateek authored Sep 14, 2023
1 parent 8a362d0 commit bf991ce
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ package com.pluto.plugins.network.ktor
import io.ktor.client.HttpClient

@SuppressWarnings("EmptyFunctionBlock")
fun HttpClient.addPlutoKtorPlugin() {
fun HttpClient.addPlutoKtorInterceptor() {
}
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,5 @@ android {
}

dependencies {
implementation "androidx.core:core-ktx:$androidXCoreVersion"
implementation "com.squareup.okhttp3:okhttp:$okhttpVersion"
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.pluto.plugins.network.okhttp

import okhttp3.OkHttpClient

@SuppressWarnings("EmptyFunctionBlock")
fun OkHttpClient.Builder.addPlutoOkhttpInterceptor() {
}

0 comments on commit bf991ce

Please sign in to comment.