Skip to content

Instantly share code, notes, and snippets.

@sreereddymenon
Forked from danielgomezrico/UploadService.kt
Created February 26, 2016 11:31
Show Gist options
  • Save sreereddymenon/c863f964f635408750f7 to your computer and use it in GitHub Desktop.
Save sreereddymenon/c863f964f635408750f7 to your computer and use it in GitHub Desktop.
Android / Retrofit - how to upload a file without multipart (as binary) for Kotlin
interface UploadService {
@Headers("Content-Type: image/jpeg")
@POST("/files")
fun uploadFile(@Body file: TypedFile): Observable<UploadedFile>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment