Abhinav Tyagi

Results 18 comments of Abhinav Tyagi

Well, we can't use the vanilla method as that can't help our use case.

Following method is called in normal use, but in accessibility state ON it is not called. The onClick is never called in talkback or switch access modes. ``` method.setOnLinkClickListener((textView, url)...

I am starting to develop an enterprise app. Can I use this SDK or it will be deprecated? @matthewayne Can you answer?

Here is my implementation https://medium.com/@abhi007tyagi/android-chatbot-with-dialogflow-8c0dcc8d8018

any V2 support using Objective C or Swift?

@Marucss I have not updated the project in 4 years. There may be new changes to the libraries.

@billgeyts20 should get automatically created. I haven't looked at this in a few years. The version would be pretty old one in my code.

Add dependency ``` // Java V2 implementation 'com.google.cloud:google-cloud-dialogflow:0.67.0-alpha' implementation 'io.grpc:grpc-okhttp:1.15.1' ``` Initiate Dialogflow Agent ``` try { InputStream stream = getResources().openRawResource(R.raw.test_agent_credentials); GoogleCredentials credentials = GoogleCredentials.fromStream(stream); String projectId = ((ServiceAccountCredentials)credentials).getProjectId(); SessionsSettings.Builder...

Please check my [repo](https://github.com/abhi007tyagi/DialogflowChat). Check the readme to understand the key you will need for old API.ai way or my [medium post](https://medium.com/@abhi007tyagi/android-chatbot-with-dialogflow-8c0dcc8d8018) for usage with Java API for V2