1.0.8 • Published 5 months ago

@dashx/react-native v1.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@dashx/react-native

DashX SDK for React Native

Install

npm

npm install @dashx/react-native

yarn

yarn add @dashx/react-native

Setup for Android

DashX requires Google Services installed in your app for Firebase to work:

  • Add google-services plugin in your /android/build.gradle
buildscript {
  dependencies {
    // ... other dependencies
    classpath 'com.google.gms:google-services:4.3.3'
  }
}
  • Add this line in your /android/app/build.gradle
apply plugin: 'com.google.gms.google-services'
  • Add your Android app on Firebase Console: Project Overview > Add App > Android

  • Download google-services.json from there.

  • Add google-services.json at the following location: /android/app/google-services.json

Setup for iOS

#import <FirebaseCore/FirebaseCore.h>
#import <FirebaseMessaging/FirebaseMessaging.h>
  • In the same file, inside your didFinishLaunchingWithOptions add this:
// Register for remote notifications. This shows a permission dialog on first run, to
// show the dialog at a more appropriate time move this registration accordingly.
// [START register_for_notifications]
[UNUserNotificationCenter currentNotificationCenter].delegate = self;
UNAuthorizationOptions authOptions = UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge;
[[UNUserNotificationCenter currentNotificationCenter]
    requestAuthorizationWithOptions:authOptions
    completionHandler:^(BOOL granted, NSError * _Nullable error) {
}];

[application registerForRemoteNotifications];
// [END register_for_notifications]

// [START configure_firebase]
if ([FIRApp defaultApp] == nil) {
  [FIRApp configure];
}
// [END configure_firebase]

// [START set_messaging_delegate]
[FIRMessaging messaging].delegate = self;
// [END set_messaging_delegate]
  • In your Podfile add this:
pod 'FirebaseMessaging', :modular_headers => true
  • Add your iOS app on Firebase Console: Project Overview > Add App > iOS

  • Download GoogleService-Info.plist

  • Add GoogleService-Info.plist using XCode by right clicking on project and select Add Files, select your downloaded file and make sure Copy items if needed is checked.

Usage

For detailed usage, refer to the documentation.

Contributing

Please follow these steps to set-up development environment.

You'll also need Apollo CLI to generate files.

$ npm i -g apollo

For the next steps, please follow the guide for the respective platform:

Publishing

Simply use yarn publish to bump the version & release. Once done, push the commit that yarn adds to GitHub:

$ yarn publish
$ git push origin main
1.0.8

5 months ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.2

2 years ago

1.0.3

2 years ago

0.1.23

2 years ago

0.1.24

2 years ago

0.1.25

2 years ago

0.1.20

2 years ago

0.1.21

2 years ago

0.1.22

2 years ago

0.1.14

2 years ago

0.1.15

2 years ago

0.1.16

2 years ago

0.1.17

2 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.10

2 years ago

0.1.11

2 years ago

0.1.12

2 years ago

0.1.13

2 years ago

0.1.9

2 years ago

0.1.8-alpha

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.0

4 years ago