Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MOB-10036] Example app: delete old sample #593

Merged
1 change: 0 additions & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ exclude_patterns:
- "docs/"
- "integration-testing/"
- "**/node_modules/"
- "SampleApp/"
- "scripts/"
- "**/__mocks__/"
- "**/__tests__/"
Expand Down
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
SampleApp
integration-testing
jest.config.js
node_modules
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,13 @@ To learn more about the SDK, read:

## Sample projects

For sample code, take a look at the following projects:
For sample code, take a look at the following project:

- [SampleApp (JavaScript)](https://github.com/Iterable/react-native-sdk/tree/master/SampleApp/javascript)
- [SampleApp (TypeScript)](https://github.com/Iterable/react-native-sdk/tree/master/SampleApp/typescript)
- [Example App](https://github.com/Iterable/react-native-sdk/tree/master/example)
evantk91 marked this conversation as resolved.
Show resolved Hide resolved

## Version mapping

For quick reference, the following table lists the versions of the [Android SDK](https://github.com/Iterable/iterable-android-sdk) and the [iOS SDK](https://github.com/Iterable/swift-sdk) the React Native SDK points to for version 1.2.0 and above.
For quick reference, the following table lists the versions of the [Android SDK](https://github.com/Iterable/iterable-android-sdk) and the [iOS SDK](https://github.com/Iterable/swift-sdk) the React Native SDK points to for version 1.2.0 and above.
evantk91 marked this conversation as resolved.
Show resolved Hide resolved

| RN SDK Version | Android SDK Version | iOS SDK Version |
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
Expand Down Expand Up @@ -92,7 +91,7 @@ For quick reference, the following table lists the versions of the [Android SDK]
Release notes:

- [Release Notes - Iterable's React Native SDK](https://support.iterable.com/hc/articles/360045714352) (major releases)
- [Releases page on GitHub](https://github.com/Iterable/react-native-sdk/releases)
- [Releases page on GitHub](https://github.com/Iterable/react-native-sdk/releases)
on GitHub (minor releases)

Support policies:
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@
"eslintIgnore": [
"node_modules/",
"lib/",
"integration-testing/",
"SampleApp/"
"integration-testing/"
evantk91 marked this conversation as resolved.
Show resolved Hide resolved
],
"prettier": {
"quoteProps": "consistent",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"target": "ESNext",
"verbatimModuleSyntax": true
},
"exclude": ["SampleApp/", "integration-testing/"]
"exclude": ["integration-testing/"]
evantk91 marked this conversation as resolved.
Show resolved Hide resolved
}
Loading