Skip to content

rodolfovilaca/react-native-ca-mas

This branch is 9 commits ahead of ArmandoAssuncao/react-native-ca-mas:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Rodolfo VilaçaRodolfo Vilaça
Rodolfo Vilaça
and
Rodolfo Vilaça
Jun 28, 2019
3934a46 · Jun 28, 2019

History

32 Commits
Jun 27, 2019
May 11, 2018
Jun 28, 2019
Jun 28, 2019
Dec 14, 2017
Dec 14, 2017
Dec 14, 2017
Jan 4, 2018
Dec 14, 2017
Jun 1, 2018
Jun 27, 2019
Jun 27, 2019
Jun 28, 2019

Repository files navigation

react-native-ca-mas

Getting started

$ npm install react-native-ca-mas --save

Mostly automatic installation

$ react-native link react-native-ca-mas

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-ca-mas and add RNCaMas.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNCaMas.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/[...]/MainApplication.java
  • Add import com.armandoassuncao.RNCaMasPackage; to the imports at the top of the file
  • Add new RNCaMasPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-ca-mas'
    project(':react-native-ca-mas').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-ca-mas/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-ca-mas')
    

Configure your project

iOS

  1. Open Xcode's "Build Settings" tab in your project and add ../node_modules/react-native-ca-mas/ios/frameworks path to "Framework Search Paths" setting.
    Open Xcode's "General" tab in your project and add the all .framework of the ../node_modules/react-native-ca-mas/ios/frameworks folder in "Embedded Binaries" setting.

  2. do steps 2 of the official documentation:
    step 2

  3. Put your msso_config.json in ios/. Reference

  4. Open your React-Native project iOS with Xcode, click in "Add Files" and select your ios/msso_config.json.

  5. Append the following lines to AppDelegate.m:

#import <MASFoundation/MASFoundation.h> // <- this line

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // other codes

    [MAS startWithDefaultConfiguration:YES completion:^(BOOL completed, NSError *error) { }]; // <- this line

    return YES;

Android

  1. In your project, update app/build.gradle:
android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"

    defaultConfig {
        minSdkVersion 19
        // other configs
    }

    // other configs
}
  1. Put the msso_config.json in android/src/main/assets/.

  2. Append the following lines to MainApplication.java:

import com.ca.mas.foundation.MAS; // <- this line

  @Override
  public void onCreate() {
    super.onCreate();
    MAS.start(getApplicationContext()); // <- this line
    // other methods
  }

Usage

Go to Wiki

Troubleshooting

  1. if your Android project cause error like:
    DexIndexOverflowException: Cannot merge new index 65565 into a non-jumbo instruction!
    add in your app/build.gradle:
android {
    dexOptions {
        jumboMode true
    }
  1. if your Android project cause error like:
    com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: field ID not in [0, 0xffff]: 65536 add in your app/build.gradle:
android {
    defaultConfig {
        multiDexEnabled true
        ...
    }

About

CA MAS SDK for React-Native

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 92.4%
  • Java 6.6%
  • Other 1.0%