I am working on Salesforce Chatbot
development for mobile applications. I have to develop it on xamarin
(.Net). For that I need to have .Net
libraries but those are doesn't seem to available.
Alternate way is to get .jar
files of those Android libraries, add in .Net
project and use it for development.
I am looking jar file for below configuration
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://s3.amazonaws.com/salesforcesos.com/android/maven/release'
}
}
}
implementation 'com.salesforce.service:chat-ui:4.3.2'
I found above information here developer.salesforce.com/docs. I am unable to download .jar files for above configuration on internet.
Than I tried to develop sample project using above libraries in android studio
and get .jar
files from it. I have made the project. I want to get .jar
files.
I have two question now
- How to download .jar files for above configuration from internet OR
- How can I download .jar files from android studio from sample project I created
Edit 1:
Below screenshot of ChatUIConfiguration
from C# .dll
, there is no create
method. While create
there for Android public static ChatUIConfiguration create
. ChatUIConfiguration
has 278 lines of code in android file and C#
has only 100 lines. Am I missing any dependency or I need to add multiple jars from dependency folder?