ctlabvn / react-native-utils

Utils for react-native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-agiletech

Getting started

$ npm install react-native-agiletech --save

Mostly automatic installation

$ react-native link react-native-agiletech

Manual installation

iOS

  • Using Cocoapod
#ios/Podfile

pod 'RNUtilities', path: '../node_modules/react-native-agiletech/ios/'
  • Or import library directly
  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-agiletech and add RNUtilities.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNUtilities.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import vn.agiletech.rnutils.RNUtilitiesPackage; to the imports at the top of the file
  • Add new RNUtilitiesPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-agiletech'
    project(':react-native-agiletech').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-agiletech/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-agiletech')
    

Usage

import RNUtils from 'react-native-agiletech';

// Share action
RNutils.share({ url, message, subject })
  .then(result => console.log('share', result))
  .catch(e => console.log('err', e));

// static informations:
console.log(RNutils);
{
  appVersion: "1.0",
  buildVersion: 1,
  bundleIdentifier: "vn.agiletech.demo",
  country: "United States",
  countryCode: "US",
  locale: "en",
}

About

Utils for react-native

License:MIT License


Languages

Language:Java 81.9%Language:Objective-C 8.3%Language:JavaScript 5.5%Language:Ruby 4.4%