Skip to content Skip to sidebar Skip to footer

How To Set Up Google Drive Api On Android?

I have been attempting to integrate Google Drive functionality within my application but I am not able to use any of the built-in functions therefore I believe I either missed a st

Solution 1:

You need to go to your app/build.gradle file and add Google Play Services as a dependency:

compile 'com.google.android.gms:play-services-drive:9.2.0'

Then resync Gradle and those classes should be available.

Post a Comment for "How To Set Up Google Drive Api On Android?"