Skip to content
This repository was archived by the owner on Dec 7, 2021. It is now read-only.

Commit 628c4e7

Browse files
authored
Merge pull request #46 from adamjmcgrath/upgrade-0.32
Move example app out of library
2 parents 8447933 + c34eab2 commit 628c4e7

File tree

22 files changed

+24
-1662
lines changed

22 files changed

+24
-1662
lines changed

.flowconfig

Lines changed: 0 additions & 33 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,7 @@
1-
# OSX
2-
#
31
.DS_Store
4-
5-
# Xcode
6-
#
7-
build/
8-
*.pbxuser
9-
!default.pbxuser
10-
*.mode1v3
11-
!default.mode1v3
12-
*.mode2v3
13-
!default.mode2v3
14-
*.perspectivev3
15-
!default.perspectivev3
16-
xcuserdata
17-
*.xccheckout
18-
*.moved-aside
19-
DerivedData
20-
*.hmap
21-
*.ipa
22-
*.xcuserstate
23-
project.xcworkspace
24-
*.xcworkspace
25-
project.pbxproj
26-
Podfile.lock
27-
Pods
28-
29-
# node.js
30-
#
312
node_modules/
323
npm-debug.log
33-
34-
secrets.js
354
.idea
36-
docs
375
.travis/deploy_key
386
.travis/deploy_key.pem
397
.travis/deploy_key.pub

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
language: node_js
22

33
node_js:
4-
- '0.12'
4+
- '6'
55

66
deploy:
77
provider: npm
8-
edge: true
98
109
api_key:
1110
secure: p2RtKFppPgLZME2ceK8SROmpXcreGoBeqpxJIee3Y5a2XXOa+ughWAN/tcvO8gTngVHYr2XEU+TlDpidC1KGRTZv/4cx1WH0XwnDw1gpcNB3v8G6znx0X0i9XgBCH/HlzLbW2+/zIVVqfzBW3Z2YMf9nen9aO/LhvlOeiu4B4FO2o54ODYcpQO6jdZLhSf7aC+ua29ixvTOG97Z31DUxRI+Idg83VxbCWNEfKmZuxDPrabZhKIDUZK/3LqsmF0HE11kAe/a4lHD0mjO+DAQpWXkauP6FeeKKDnDASs7Sc/XdWCEFTuP9JtN1d7XWTRKPBj/1D62+LCp6jHwzSFPxM6oO7i63iP6y7Fqgod9Okh6qvwkn3nKmXm7WmQJbLS7VGTNQ/G5O6HlQVgmnYRBh3iRptYUHF9wmBcdfXTVQ4bdL7QLVUuzaIBlOGv/9O5M0a19erkq+xQUrasZpnVRW+BcIjbNwNoLRFitDSK6BlRrItj2TT2OOokA9XqMorjMJl9IXReGmKDD1cGctPP1KfSOUEjnollP5JX7IgNf1O13ZRqjfkTuWvCgmXsGN52iD8+CP1KD9SMeu9vH99tMxXIl7JLgjkzZ8o4Z+LZda0Qf3kvCIYikz17G+5hDOalaaDktvDmjEzshFL0riR+SlbVWf9rs1Z3+bXVRmK7VM0go=

Podfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ Screencast
1212

1313
![Screencast](https://raw.githubusercontent.com/adamjmcgrath/react-native-simple-auth/master/screencast.gif)
1414

15+
Source of example app: https://github.com/adamjmcgrath/ReactNativeSimpleAuthExample
16+
1517
Install
1618
=======
17-
1. Install react native and make sure it works. There are currently two supported approaches for installing React-Native, [npm](https://facebook.github.io/react-native/docs/getting-started.html#quick-start) or [CocoaPods](https://cocoapods.org/pods/React). Users have found the `npm` approach more stable for this library.
19+
1. Install [react native](https://facebook.github.io/react-native/docs/getting-started.html#quick-start)
1820
2. `npm install react-native-simple-auth`
1921
3. In XCode, in the project navigator right click `Libraries``Add Files to [your project's name]`
20-
4. Go to `node_modules``react-native-simple-auth`➜ iOS and add `SimpleAuthWrapper.h` and `SimpleAuthWrapper.m`
21-
5. Go to your project's root directory and add a Podfile similar to [this example](https://github.com/adamjmcgrath/react-native-simple-auth/blob/master/Podfile).
22-
* You may need to tell the podfile where to find your xcode project by adding the following to the podfile:
23-
```xcodeproj './path/to/your/.xcodeproj/project'```
22+
4. Go to `node_modules``react-native-simple-auth``ios` and add `SimpleAuthWrapper.h` and `SimpleAuthWrapper.m`
23+
5. Go to your project's root directory and add a Podfile similar to [this example](https://github.com/adamjmcgrath/ReactNativeSimpleAuthExample/blob/master/Podfile).
2424
6. Install CocoaPods https://guides.cocoapods.org/using/getting-started.html
2525
7. Run `pod install`
2626

@@ -38,7 +38,7 @@ Create a configuration object for each of the providers you want to authorize wi
3838
- tumblr (`consumer_key`, `consumer_secret`)
3939
- linkedin-web (`client_id`, `client_secret`, `redirect_uri`)
4040

41-
See [secrets.example.js](/secrets.example.js).
41+
See [secrets.example.js](https://github.com/adamjmcgrath/ReactNativeSimpleAuthExample/blob/master/secrets.example.js).
4242

4343
[Other providers supported by SimpleAuth](https://github.com/calebd/SimpleAuth#simpleauth) may work, but haven't been tested.
4444

@@ -96,4 +96,3 @@ Thanks
9696
======
9797

9898
- [calebd](https://github.com/calebd) for the code review and [SimpleAuth](https://github.com/calebd/SimpleAuth) library
99-

0 commit comments

Comments
 (0)