Created
February 11, 2023 10:42
-
-
Save Xiryl/fe11b294d38e037957c4ec60836d4164 to your computer and use it in GitHub Desktop.
driveapimedium-github
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
// coroutines | |
// Guava | |
implementation "com.google.guava:guava:24.1-jre" | |
// Guava fix | |
implementation "com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava" | |
//Drive | |
implementation('com.google.api-client:google-api-client-android:1.23.0') { | |
exclude group: 'org.apache.httpcomponents' | |
exclude module: 'guava-jdk5' | |
} | |
implementation('com.google.apis:google-api-services-drive:v3-rev136-1.25.0') { | |
exclude group: 'org.apache.httpcomponents' | |
exclude module: 'guava-jdk5' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment