npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-movesense

v3.1.2

Published

React Native Movesense library

Downloads

14

Readme

react-native-movesense

Getting started

yarn add react-native-movesense

then

cd ios && pod install

Additional steps

iOS

  1. Intall Movesense iOS library using CocoaPods by adding this line to your app's Podfile:
pod 'Movesense', :git => 'ssh://[email protected]:443/suunto/movesense-mobile-lib.git'
  1. Add 'libmds.a' from Movesense pod to your list of linked libraries. You may need to also add library search path for it.

Android

  1. Download 'mdslib-x.x.x-release.aar' from movesense-mobile-lib repository and put it somewhere under 'android' folder of your app. Preferably create a new folder named 'android/libs' and put it there. Minimum supported version is 1.6.0.

  2. In 'build.gradle' of your android project, add the following lines (assuming .aar file is in android/libs):

allprojects {
    repositories {
        ...
        flatDir{
            dirs "$rootDir/libs"
        }
    }
}

Troubleshoot

Android

  1. 'minSdkVersion' needs to be at least 18.

iOS

  1. You may need to set "Swift Language Version" for Movesense Pod to 5.0. This setting can be found in "Build Settings" of Movesense pod in XCode project of your app.

  2. If you get the following error while building your app:

ld: library not found for -lswiftSwiftOnoneSupport for architecture arm64

then you need to add library search path for that library. One of the common places is:

-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos

However, the correct answer may depend on XCode version.

  1. Movesense library doesn't have bitcode support at the moment. You need to disable it for your app as well.

Usage

import movesense from 'react-native-movesense';

// Scan for bluetooth devices
movesense.scan((name, address) => {
  this.scanHandler(name, address);
});

// Stop scanning
movesense.stopScan();

// Set handlers
movesense.setConnectionHandlers(
  (serial) => {
    this.deviceConnected(serial);
  },
  (serial) => {
    this.deviceDisconnected(serial);
  },
  () => {
    this.deviceConnectFailed();
  }
);

// Connect to a device using address
movesense.connect(address);

// Disconnect from a device using address
movesense.disconnect(address);

// Get a resource
const response = await movesense.get(serial, resource, contract);

// Put a resource
const response = await movesense.put(serial, resource, contract);

// Post a resource
const response = await movesense.post(serial, resource, contract);

// Del a resource
const response = await movesense.del(serial, resource, contract);

// Subscribes to movesense notifications
movesense.setNotificationHandlers();

// Subscribe to a resource
var key = movesense.subscribe(
  serial,
  resource,
  contract,
  (notification) => {
    this.onResponse(notification);
  },
  (error) => {
    this.onError(error);
  }
);

// Unsubscribe from a subsciption
movesense.unsubscribe(key);

// Remove native event handlers (generally called once you're done with everything - i.e. no longer subscribed to events)
movesense.removeNotificationHandlers();