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

@forstaglobal/react-native-mobilesdk

v3.13.0

Published

The Forsta Digital Feedback Mobile SDK provides seamless in-app feedback for any touch point within your mobile application.

Downloads

3

Readme

Digital Feedback Mobile SDK

The Forsta Digital Feedback Mobile SDK provides seamless in-app feedback for any touch point within your mobile application.

Documentation

Everything you need to get started with integration can be found in the repository wiki.

Setup (Android)

Prerequisites

  • Android API Level 21 or higher (Android 5.0 and above)

  • AndroidX enabled

    • More information about setup and migration for AndroidX can be found here
  • Dependencies

    These dependencies will be automatically downloaded by Gradle sync

Installation

Add the SDK dependency to the application level build.gradle file.

// build.gradle (Module)
dependencies {
    ...
    implementation 'com.confirmit.mobilesdk:mobilesdk:3.13.0'
}

Once you make these two changes, simply refresh / sync your gradle dependencies.

R8 / ProGuard

If you are using R8, the shrinking and obfuscation rules will be included automatically.

ProGuard users must manually add following rules.

# Rhino
-keep class org.mozilla.javascript.** { public *; }
-dontwarn org.mozilla.javascript.**

Setup (iOS)

Prerequisites

  • Xcode 14.3 or higher
  • Target of iOS 11 or higher
  • Swift 5.8 or higher

Installation

1. Using Swift Package Manager

Step 1. Add package URL and dependency to Package.swift

// swift-tools-version:5.8

import PackageDescription

let package = Package(
    name: "<Your Product Name>",
    dependencies: [
		.package(url: "https://github.com/ForstaGlobal/DigitalFeedbackMobileSDK.git", .upToNextMajor(from: "3.13.0"))
    ],
    targets: [
        .target(
		    name: "<Your Target Name>",
		    dependencies: [
		        .product(name: "ConfirmitMobileSDK", package: "DigitalFeedbackMobileSDK")
		    ]
		),
    ]
)

Step 2. Run swift package resolve

2. Using CocoaPods

Step 1. Add local pod path to the Podfile.

use_frameworks!
platform :ios, '11.0'

# Your target
target 'MyApp' do
  # ... others pods
  pod 'ConfirmitMobileSDK', '3.13.0'
end

Step 2. Run pod update.

3. Manual Method

Step 1. Clone Github repository.

Step 2. If the Framework folder doesn't already exist, right-click on your project in the project navigator (top-most entry), and select “New Group”. Name the new group Frameworks.

Step 3. Drag and drop it from Finder into the Frameworks folder. Make sure that the destination is just under the Frameworks folder before dropping.

Step 4. Then, make sure the following options are selected for adding files:

  • Both “Copy items if needed” and “Create groups” should be checked and selected.
  • Click Finish.

Setup (React Native)

Prerequisites

  • Platform
    • react-native 0.72.4 or higher
  • Dependencies
    • react-native-webview (>=13.6.2)

Installation

Step 1. NPM install packages

react-native-webview needs to be installed manually before the SDK, or else the native modules will have to be linked up manually.

// Please install react-native-webview manually
// npm install react-native-webview
npm install @forstaglobal/react-native-mobilesdk

Step 2. Run pod install inside ios folder