-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec033f6
commit 3daa2fc
Showing
5 changed files
with
62 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
SAND_API_KEY=value | ||
DEV_API_KEY=value | ||
PROD_API_KEY=value | ||
SAND_API_URL=value | ||
DEV_API_URL=value | ||
PROD_API_URL=value | ||
SAND_CHECKOUT_API_URL=value | ||
DEV_CHECKOUT_API_URL=value | ||
PROD_CHECKOUT_API_URL=value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,93 @@ | ||
This is a new [**React Native**](https://reactnative.dev) project, bootstrapped using [`@react-native-community/cli`](https://github.com/react-native-community/cli). | ||
|
||
# Getting Started | ||
|
||
>**Note**: Make sure you have completed the [React Native - Environment Setup](https://reactnative.dev/docs/environment-setup) instructions till "Creating a new application" step, before proceeding. | ||
## Step 1: Start the Metro Server | ||
- Installation | ||
- Usage | ||
|
||
First, you will need to start **Metro**, the JavaScript _bundler_ that ships _with_ React Native. | ||
## Step 1: Installation | ||
|
||
To start Metro, run the following command from the _root_ of your React Native project: | ||
Add the module to your react native project by executing: | ||
|
||
```bash | ||
# using npm | ||
npm start | ||
npm install @getivy/react-native-sdk | ||
|
||
# OR using Yarn | ||
yarn start | ||
yarn add @getivy/react-native-sdk | ||
``` | ||
|
||
## Step 2: Start your Application | ||
|
||
Let Metro Bundler run in its _own_ terminal. Open a _new_ terminal from the _root_ of your React Native project. Run the following command to start your _Android_ or _iOS_ app: | ||
Create a personal Github access token with permission _read:packages_ and add the following in your Android application root _build.gradle_ file: | ||
|
||
### For Android | ||
|
||
```bash | ||
# using npm | ||
npm run android | ||
|
||
# OR using Yarn | ||
yarn android | ||
``` | ||
allprojects { | ||
repositories { | ||
maven { | ||
name = "GitHub" | ||
url = uri("https://maven.pkg.github.com/getivy/android-sdk-public") | ||
credentials { | ||
username = <Github_username> | ||
password = <Github_token> | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
### For iOS | ||
Even though the Maven repository is public, Github requires this to be able to get the package. | ||
|
||
```bash | ||
# using npm | ||
npm run ios | ||
## Step 2: Usage | ||
|
||
# OR using Yarn | ||
yarn ios | ||
Import the package: | ||
|
||
``` | ||
import * as GetivySDK from '@getivy/react-native-sdk'; | ||
``` | ||
|
||
If everything is set up _correctly_, you should see your new app running in your _Android Emulator_ or _iOS Simulator_ shortly provided you have set up your emulator/simulator correctly. | ||
Initialize the SDK with data session or checkout session id and environment: | ||
|
||
This is one way to run your app — you can also run it directly from within Android Studio and Xcode respectively. | ||
``` | ||
// Data session | ||
GetivySDK.initializeDataSession(dataSessionId, "production"); | ||
``` | ||
|
||
## Step 3: Modifying your App | ||
``` | ||
// Checkout session | ||
GetivySDK.initializeCheckoutSession(checkoutSessionId, "sandbox"); | ||
``` | ||
|
||
Now that you have successfully run the app, let's modify it. | ||
Possible environment values: _production_ and _sandbox_ | ||
|
||
1. Open `App.tsx` in your text editor of choice and edit some lines. | ||
2. For **Android**: Press the <kbd>R</kbd> key twice or select **"Reload"** from the **Developer Menu** (<kbd>Ctrl</kbd> + <kbd>M</kbd> (on Window and Linux) or <kbd>Cmd ⌘</kbd> + <kbd>M</kbd> (on macOS)) to see your changes! | ||
Open SDK UI: | ||
|
||
For **iOS**: Hit <kbd>Cmd ⌘</kbd> + <kbd>R</kbd> in your iOS Simulator to reload the app and see your changes! | ||
``` | ||
GetivySDK.openSDK(); | ||
``` | ||
|
||
## Congratulations! :tada: | ||
It will open a modal view on top of your application in iOS, and new activity in Android. | ||
|
||
You've successfully run and modified your React Native App. :partying_face: | ||
Listen for SDK events: | ||
|
||
### Now what? | ||
``` | ||
import { NativeEventEmitter } from 'react-native'; | ||
- If you want to add this new React Native code to an existing application, check out the [Integration guide](https://reactnative.dev/docs/integration-with-existing-apps). | ||
- If you're curious to learn more about React Native, check out the [Introduction to React Native](https://reactnative.dev/docs/getting-started). | ||
// Component implementation | ||
# Troubleshooting | ||
useEffect(() => { | ||
const eventEmitter = new NativeEventEmitter(eventsEmitter); | ||
const onSuccess = eventEmitter.addListener('onSuccess', (eventData) => { | ||
Alert.alert('Success', JSON.stringify(eventData)); | ||
}); | ||
If you can't get this to work, see the [Troubleshooting](https://reactnative.dev/docs/troubleshooting) page. | ||
const onError = eventEmitter.addListener('onError', (eventData) => { | ||
Alert.alert('Error', JSON.stringify(eventData)); | ||
}); | ||
# Learn More | ||
return () => { | ||
onSuccess.remove(); | ||
onError.remove(); | ||
}; | ||
}, []); | ||
``` | ||
|
||
To learn more about React Native, take a look at the following resources: | ||
While going through SDK, closing, succeeding to pay or failing, events will be delivered by the listeners. | ||
|
||
- [React Native Website](https://reactnative.dev) - learn more about React Native. | ||
- [Getting Started](https://reactnative.dev/docs/environment-setup) - an **overview** of React Native and how setup your environment. | ||
- [Learn the Basics](https://reactnative.dev/docs/getting-started) - a **guided tour** of the React Native **basics**. | ||
- [Blog](https://reactnative.dev/blog) - read the latest official React Native **Blog** posts. | ||
- [`@facebook/react-native`](https://github.com/facebook/react-native) - the Open Source; GitHub **repository** for React Native. | ||
Refer to the _example_ application for more indepth usage example. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters