java-photoslibrary
java-photoslibrary copied to clipboard
Java client library for the Google Photos Library API
It was discovered during integration with Google Photos using java-photoslibrary, please see its details com.google.photos.library google-photos-library-client 1.7.0 For example, real test account has 468 files in Photos App, although Photos...
As per https://github.com/google/java-photoslibrary/issues/30#issuecomment-904352898, I can confirm that interrupting the upload via interrupting the thread blocked on `client.uploadMediaItemCallable().futureCall(uploadRequest).get()` works. However, as before, both `client.uploadMediaItem()` and `client.uploadMediaItemCallable().call(uploadRequest)` block uninterruptibly, because `ApiExceptions.callAndTranslateApiException` calls...
Most Google libraries use protobuf-lite which isn't compatible with protobuf-java: AGPBI: {"kind":"error","text":"Program type already present: com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream","sources":[{}],"tool":"R8"} Libraries e.g.: com.google.android.gms:play-services-cast-framework:17.1.0 com.google.firebase:firebase-config:19.0.2 com.google.android.datatransport:transport-backend-cct:2.0.1
Hi, how would one authenticate when using android. Can't really find any tutorials.
Is it possible to use this library with the Google Credential Manager integrated sign in? For instance, using the GoogleIdTokenCredential? [https://developer.android.com/training/sign-in/credential-manager](url)
How do we go about connecting the Google photos library with a Java Modularity application? Simply adding `implementation 'com.google.photos.library:google-photos-library-client:1.7.3'` to the build.gradle results in a ton of conflicts. Has someone...
The google-java-format won't work properly when updating the Gradle Wrapper to use the latest gradle version (currently 8.4) The owner of the google-java-format plugin confirmed that the plugin is no...
this PR contains the following: - Update gradle wrapper to 8.4 (requires numerous changes to gradle build files) - Replace [google-java-format](https://github.com/sherter/google-java-format-gradle-plugin) with [com.diffplug.spotless](https://github.com/diffplug/spotless) (which supports google-java-format as well) - Add...
The issues doesn't seem to impact this library, as it only concerns parsing user-provided content as a protobuf, while here it only parses google-provided content. But nevertheless, automated code scanning...
The root cause of the issue is actually due to the improper usage of Photos Client in "sample" folder. The Google Photos library client is perfectly working fine. I have...