New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@opacity-labs/react-native-opacity

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opacity-labs/react-native-opacity

Opacity Networks library for React Native

  • 5.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
98
increased by78.18%
Maintainers
0
Weekly downloads
 
Created
Source

react-native-opacity

Opacity Networks library for React Native.

Install

yarn add @opacity-labs/react-native-opacity

Expo

If you are using an Expo app, the native configuration changes below have been abstracted into an expo-plugin, just add it to the plugins section in you app.json:

{
  // In the plugins sectino add the following
  "plugins": [
    // ...,
    "@opacity-labs/react-native-opacity"
  ]
}

Bare React Native App

iOS

You need to bump your minimum deployment target to iOS 14. On the latest versions of RN this should be the default target, if not you can do it via:

Xcode → Project Explorer → [YOUR TARGET] → General → Deployment Target

Do a pod install Module is a Turbo Module, therefore you need to enable the new arch. Again, on the latest RN versions the new architecture should be turned on by default if not run:

cd ios && RCT_ENABLE_NEW_ARCH=1 pod install

Or modify the top of your podfile and do a pod install:

env['RCT_ENABLE_NEW_ARCH'] = '1'

If you are pulling on the latest version the package, sometimes cocoapods refuses to update it's main repo specs. You can force an update via:

rm -rf ~/.cocoapods/repos/trunk
pod repo update
RCT_ENABLE_NEW_ARCH=1 pod install --repo-update

Android

First add the necessary repos to download the dependencies. On your root android/build.gradle add:

allprojects {
  repositories {
    google()
    mavenCentral()
    // If you already have allprojects->respositories just make sure you have these two added
    maven { url "https://maven.mozilla.org/maven2/" }
    maven { url 'https://jitpack.io' }
  }
}

On your apps AndroidManifest.xml add an activity:

      // Put this on the same level as other activities
      <activity
        android:name="com.opacitylabs.opacitycore.InAppBrowserActivity"
        android:theme="@style/Theme.AppCompat.DayNight"
      />

Codegen config

Indenpendtly of Expo or a bare React Native app.l You need to make sure react-native.config.js is properly set up for code generation to work:

module.exports = {
  project: {
    android: {
      packageName: 'your.package.name', // must match your android apps package name, take a look into your apps build.gradle
    },
  },
};

API

Once everything is setup you can call the init method on your JS:

// Create an OpacityInstance.ts file
import {
  init,
  get,
  OpacityEnvironment,
} from '@opacity-labs/react-native-opacity';

try {
  init('Your API key', false, OpacityEnvironment.PRODUCTION);
} catch (e) {
  console.error(`Could not start opacity SDK: ${e}`);
}

export async function getUberRiderProfile() {
  try {
    let profileResponse = await get('flow:uber_rider:profile');
    console.log(profileResponse);
  } catch (e) {
    console.error(`Could not get profile ${e}`);
  }
}

Then somewhere on your app you can just call the functions:

// App.tsx
import { getUberRiderProfile } from './OpacityInstance';

return <Button onPress={getUberRiderProfile} title="Get Uber Rider Profile" />;

Keywords

FAQs

Package last updated on 05 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc