I want to create xamarin binding (Which requires a jar file) for indoor location SDK available for android . Can anybody share the jar file for the latest version of indoor location SDK . I want to use the binding in a xamarin project for getting location coordinates inside a room.
We currently host our JARs on http://estimote.bintray.com/android/com/estimote/
I think you’ll need the indoorsdk
JAR, as well as its dependencies: (this is from http://estimote.bintray.com/android/com/estimote/indoorsdk/2.4.0/indoorsdk-2.4.0.pom)
<dependencies>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>25.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jre7</artifactId>
<version>1.1.51</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.estimote</groupId>
<artifactId>internal-plugins-api</artifactId>
<version>0.21.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.estimote</groupId>
<artifactId>scanning-plugin</artifactId>
<version>0.17.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.estimote</groupId>
<artifactId>indoor-sdk-module</artifactId>
<version>2.4.0</version>
<scope>compile</scope>
</dependency>
</dependencies>