Loop SDK Sample
Перейти к файлу
microsoft-github-policy-service[bot] 6e8c58a28e
Auto merge mandatory file pr
This pr is auto merged as it contains a mandatory file and is opened for more than 10 days.
2023-06-27 13:07:28 +00:00
app Update build tools version 2016-07-07 10:32:30 -07:00
gradle/wrapper initial commit 2016-06-20 15:21:05 -07:00
.gitignore initial commit 2016-06-20 15:21:05 -07:00
.travis.yml Travis verfication tests 2016-07-06 22:44:16 -07:00
LICENSE.txt initial commit 2016-06-20 15:21:05 -07:00
README.md Updated redme 2016-06-20 16:40:29 -07:00
SECURITY.md Microsoft mandatory file 2023-06-12 19:12:10 +00:00
build.gradle Update build tools version, test Travis verification 2016-07-07 10:14:06 -07:00
gradle.properties initial commit 2016-06-20 15:21:05 -07:00
gradlew initial commit 2016-06-20 15:21:05 -07:00
gradlew.bat initial commit 2016-06-20 15:21:05 -07:00
lint.xml Correct for Lint errors and warnings 2016-06-22 17:25:45 -07:00
settings.gradle initial commit 2016-06-20 15:21:05 -07:00

README.md

Loop Android Sample - Download test profiles

These instructions will get you a copy of a Loop sample app for downloading user profiles from the Loop platform for development and testing purposes.

  1. If you havent already, signup for a Loop account and create an app on the Loop Developer Site
  2. Get the sample app 0. Clone this sample app git clone https://github.com/Microsoft/Loop-Sample-TestUser-Android.git 0. Open it in Android Studio 0. Add your appId and appToken in LoopTestUserApplication.java OnCreate
```
    String appId = "YOUR_APP_ID";
    String appToken = "YOUR_APP_TOKEN";
```
  1. Create test users in your user dashboard (user link in the left navigation)
  2. Fill in the userId and deviceId in LoopTestUserApplication.java OnCreate with a test user's userId and deviceId obtained from the Loop Developer Site
```
    String userId = "YOUR_USER_ID";
    String deviceId = "YOUR_DEVICE_ID";
```
  1. Build and run the app

After this is done, you can see the test profiles in your app. You can use the Loop-Sample-Hello-Android test app to send more test signals and see them updated in this app. This is the same mechanism using test signals that the Loop uses when it creates home & work profiles.