Add Spreadsheet API to the project.

This commit is contained in:
Andres Gomez, Thomas (ITDV CC) - AF (ext) 2023-07-16 09:40:46 +02:00
parent f2357c6151
commit 6cfd673335
11 changed files with 274 additions and 143 deletions

View file

@ -99,13 +99,18 @@ dependencies {
// Google service
implementation("com.google.android.gms:play-services-auth:20.6.0")
implementation(
dependencyNotation = "com.google.api-client:google-api-client-android:1.23.0",
dependencyConfiguration = { exclude("org.apache.httpcomponents") },
)
implementation(
dependencyNotation = "com.google.apis:google-api-services-sheets:v4-rev20220927-2.0.0",
dependencyConfiguration = { exclude("org.apache.httpcomponents") },
)
// Image
implementation("com.github.skydoves:landscapist-glide:2.1.11")
kapt("com.github.bumptech.glide:compiler:4.14.2") // this have to be align with landscapist-glide
// Retrofit : Network
implementation("com.squareup.retrofit2:retrofit:2.9.0")
}
private val NamedDomainObjectContainer<SigningConfig>.pixelized get() = this.getByName("pixelized")