All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avito.http.Files.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2023.22
Show newest version
@file:JvmName("FileUtils")

package com.avito.http

import okhttp3.MediaType.Companion.toMediaType
import okhttp3.MultipartBody
import okhttp3.RequestBody.Companion.asRequestBody
import java.io.File

public fun File.convertToImageMultipart(
    name: String = "image",
    filename: String = "image"
): MultipartBody.Part {
    return MultipartBody.Part.createFormData(
        name,
        filename,
        this.asRequestBody(MEDIA_TYPE_IMAGE)
    )
}

private val MEDIA_TYPE_IMAGE = "image/*".toMediaType()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy