Posts by Reni Delonzek • 1 point
5 posts
-
0
votes1
answer70
viewsA: Unable to use sdk dialogFlow java together with firestore - Dependency failing
I was able to solve it by adding this to the build.Radle android { // configurations.all { exclude group:'com.google.api.grpc',module:'proto-google-common-protos' exclude group:…
-
0
votes1
answer70
viewsQ: Unable to use sdk dialogFlow java together with firestore - Dependency failing
I need to use the dialogFlow sdk along with the firestore sdk. In separate projects I can use normally, but when I join them, there is a dependency failure. My build.Radle: apply plugin:…
-
0
votes3
answers3185
viewsA: How to connect my android application to an external database
You can use Firebase for this, in addition to database it offers you possibility of authentication of users, pushNotifications and several other tools, and in addition it has a very generous Free…
-
0
votes1
answer72
viewsA: How to get Email after Login to Facebook using Spring for Android Sample?
Do it this way String nome = Profile.getCurrentProfile().getName(); String email; String URL = "https://graph.facebook.com/" + id + "?fields=email&access_token=" + token; HttpURLConnection…
-
0
votes1
answer241
viewsQ: How to share audio from raw internal directory?
I have several audios stored in the app’s raw directory and would like to share with other apps, such as Whatsapp, but I found very confusing the documentation on how to set up File Provider…