A collection of sample applications demonstrating how to use the Pathsense SDK. For more information, take a look at the Javadocs or connect with us on our website or developer portal.
You can see the additional information for each sample in their respective README files.
-
Obtain a Pathsense SDK Client ID and API Key from here. Click “GET STARTED” and enter your email address.
-
In AndroidManifest.xml, add the following elements as children of the <application> element, by inserting them just before the closing </application> tag:
<meta-data android:name="com.pathsense.android.sdk.CLIENT_ID" android:value="YOUR_PATHSENSE_SDK_CLIENT_ID" /> <meta-data android:name="com.pathsense.android.sdk.API_KEY" android:value="YOUR_PATHSENSE_SDK_API_KEY" />
-
Substitute your CLIENT_ID key for YOUR_PATHSENSE_SDK_CLIENT_ID in the value attribute. This element sets the key com.pathsense.android.sdk.CLIENT_ID to the value of your Pathsense SDK Client ID.
-
Substitute your API_KEY key for YOUR_PATHSENSE_SDK_API_KEY in the value attribute. This element sets the key com.pathsense.android.sdk.API_KEY to the value of your Pathsense SDK API key.
-
-
Save AndroidManifest.xml.
-
Add new module pathsense-android-sdk
-
create folder pathsense-android-sdk to root
-
add
':pathsense-android-sdk'
module to settings.gradle
-
-
Place pathsense-android-sdk-bundle-release-2.3.0.0.aar in module pathsense-android-sdk
-
In module pathsense-android-sdk create file build.gradle
configurations.maybeCreate("default") artifacts.add("default", file('pathsense-android-sdk-bundle-release-2.3.0.0.aar'))
-
Add dependency to your module
- to the dependencies element:
compile project(':pathsense-android-sdk')
-
Re-build application.