Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit 6d356bf

Browse files
prepare 2.0.3 release (#27)
1 parent 813fe02 commit 6d356bf

File tree

7 files changed

+18
-17
lines changed

7 files changed

+18
-17
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
node_modules/
99
npm-debug.log
1010
yarn-error.log
11+
target/
1112

1213
# Xcode
1314
#

.ldrelease/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ template:
1010
name: npm
1111

1212
sdk:
13-
displayName: React Native
13+
displayName: React Native

CONTRIBUTING.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
Contributing to the LaunchDarkly Client-side SDK for React Native
22
================================================
3-
3+
44
LaunchDarkly has published an [SDK contributor's guide](https://docs.launchdarkly.com/docs/sdk-contributors-guide) that provides a detailed explanation of how our SDKs work. See below for additional information on how to contribute to this SDK.
5-
5+
66
Submitting bug reports and feature requests
77
------------------
8-
8+
99
The LaunchDarkly SDK team monitors the [issue tracker](https://github.com/launchdarkly/react-native-client-sdk/issues) in the SDK repository. Bug reports and feature requests specific to this SDK should be filed in this issue tracker. The SDK team will respond to all newly filed issues within two business days.
10-
10+
1111
Submitting pull requests
1212
------------------
13-
13+
1414
We encourage pull requests and other contributions from the community. Before submitting pull requests, ensure that all temporary or unintended code is removed. Don't worry about adding reviewers to the pull request; the LaunchDarkly SDK team will add themselves. The SDK team will acknowledge all pull requests within two business days.
15-
15+
1616
Build instructions
1717
------------------
18-
18+
1919
### Prerequisites
20-
20+
2121
This SDK requires that you have [`npm`](https://www.npmjs.com/) and [`react-native-cli`](https://www.npmjs.com/package/react-native-cli) installed in order to develop with it.
22-
22+
2323
### Building and running
2424

2525
You can modify and verify changes by developing within the LaunchDarkly React Native SDK sample application (`hello-react-native`).
2626

27-
1. In your `react-native-client-sdk` directory, run `npm link`.
28-
2. Clone and setup the [`hello-react-native`](https://github.com/launchdarkly/hello-react-native) repository.
29-
3. In your `hello-react-native` directory, copy your `react-native-client-sdk` into `node_modules` or use [wml](https://github.com/wix/wml) to monitor and copy files.
27+
1. Clone and setup the [`hello-react-native`](https://github.com/launchdarkly/hello-react-native) repository.
28+
2. In your `hello-react-native` directory, copy your `react-native-client-sdk` directory into `node_modules` as `launchdarkly-react-native-client-sdk`. Alternatively, you can use [wml](https://github.com/wix/wml) to monitor and copy files.
29+
3. Launch your emulator (`emulator -avd <NAME>` for Android) or connect your device.
3030
4. Test your changes in `hello-react-native` by running either `react-native run-ios` or `react-native run-android` depending on your desired runtime environment.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<manifest package="com.reactlibrary">
1+
<manifest package="com.launchdarkly.reactnative">
22

33
</manifest>

android/src/main/java/com/reactlibrary/LaunchdarklyReactNativeClientModule.java renamed to android/src/main/java/com/launchdarkly/reactnative/LaunchdarklyReactNativeClientModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.reactlibrary;
1+
package com.launchdarkly.reactnative;
22

33
import android.app.Application;
44
import android.net.Uri;

android/src/main/java/com/reactlibrary/LaunchdarklyReactNativeClientPackage.java renamed to android/src/main/java/com/launchdarkly/reactnative/LaunchdarklyReactNativeClientPackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
package com.reactlibrary;
2+
package com.launchdarkly.reactnative;
33

44
import java.util.Arrays;
55
import java.util.Collections;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://docs.launchdarkly.com/docs/react-native-sdk-reference",
2222
"peerDependencies": {
23-
"react-native": "0.61.2",
23+
"react-native": "~0.61.2",
2424
"react": "16.9.0"
2525
},
2626
"devDependencies": {

0 commit comments

Comments
 (0)