@hybrone_repo/react-native-tuya
TypeScript icon, indicating that this package has built-in type declarations

0.4.5 • Public • Published

Feature Overview

Tuya Smart APP SDK provides the interface package for the communication with hardware and Tuya Cloud to accelerate the application development process, including the following features:

Hardware functions (network configuration, control, status reporting, regular tasks, groups, firmware upgrades, sharing) Account system (phone number, email registration, login, password reset and other general account functions) Tuya Cloud HTTP API interface package

Getting started

npm install @hybrone_repo/react-native-tuya

This library contains native code which is automatically linked in React Native >= 0.59. For iOS, run cd ios && pod install.

Installation

In the Tuya development environment create a new app and make sure you have an "App key", "App secret" and "Secure image". Read how to do this.

iOS

Put the secure image into the root path of your project as explained here.

In ios/AppDelegate.m, add the following import;

#import <TuyaSmartHomeKit/TuyaSmartKit.h>

Then, under the roootView.backgroundColor line in the same file, add this:

  #ifdef DEBUG
    [[TuyaSmartSDK sharedInstance] setDebugMode:YES];
  #endif

  [[TuyaSmartSDK sharedInstance] startWithAppKey:@"xxx" secretKey:@"xxx"];

Now replace the xxx with your app key and secret key.

Android

Assuming you already have created an app in the Tuya development environment (otherwise follow the iOS steps before this), follow these steps. You should now have an app key, app secret and security image for Android. Make sure the security image is put in android/src/main/assets/t_s.bmp.

Open your AndroidManifest.xml and put the following in the <application> tag:

<meta-data
  android:name="TUYA_SMART_APPKEY"
  android:value="xxx" />
<meta-data
  android:name="TUYA_SMART_SECRET"
  android:value="xxx" />

Replace the xxx with your app key and secret key.

Now open MainApplication.java and add the following import to the top:

import com.tuya.smart.rnsdk.core.TuyaCoreModule;

Change the onCreate function to look like this:

@Override
public void onCreate() {
  super.onCreate();
  SoLoader.init(this, /* native exopackage */ false);
  initializeFlipper(this); // Remove this line if you don't want Flipper enabled
  TuyaCoreModule.Companion.initTuyaSDKWithoutOptions(this);
}

Now you can try to build, but you'll probably run into an error saying that it can't choose between libc++_shared or something. One fix for this (don't know if it's the best fix) is to open android/app/build.gradle and add this;

android {
    ...
    packagingOptions {
        pickFirst '**/armeabi-v7a/libc++_shared.so'
        pickFirst '**/x86/libc++_shared.so'
        pickFirst '**/arm64-v8a/libc++_shared.so'
        pickFirst '**/x86_64/libc++_shared.so'
        pickFirst '**/x86/libjsc.so'
        pickFirst '**/armeabi-v7a/libjsc.so'
    }
}

Package Sidebar

Install

npm i @hybrone_repo/react-native-tuya

Weekly Downloads

3

Version

0.4.5

License

MIT

Unpacked Size

861 kB

Total Files

144

Last publish

Collaborators

  • hybrone_repo