Commit Graph

354 Commits

Author SHA1 Message Date
BO KANG
6e8eb79a22 Bump package.json and update README.md (#680) 2017-01-24 12:13:21 -08:00
Richard Hua
0a14e3590d Tidy README.md formatting 2017-01-23 18:10:06 -08:00
Vojtech Novak
c17fa24137 Update README.md for possible issue with ios configuration (#648) 2017-01-23 18:06:06 -08:00
Teodors Zeltiņš
24b9d07a87 Update README.md (#677)
Changed the end of line column to a comma and added a bit more context
2017-01-23 17:18:55 -08:00
BO KANG
118dc75284 Update read me
react native version support typo update
2017-01-20 16:01:07 -08:00
Vladimir Kotikov
ec5dba7386 Upgrade example app to react-native 0.40.0 (#638)
* Update sample to react-native@0.40

* Update compatibility with latest react-native

* Fixed Merge Issues with CodePushDemoApp.xcscheme
2017-01-20 09:54:44 -08:00
Sergey Akhalkov
90f0bb81d1 Resolve CodePush.h for new iOS apps created with RN 0.40 (#665)
Instead of `#import "CodePush.h"`, use `#import "<CodePush/CodePush.h>` and export CodePush.h from our module.


* [iOS][Build] Add `Headers` and `Copy Files` build phases

Due to changes in new release of `react-native@0.40.0`
there is `CodePush.h file not found` error occures.
To fix it I've added `CodePush.h` header file in `Headers`
and `Copy Files` build phases and changed
`codePushHeaderImportStatement` variable value from `#import "CodePush.h"`
to `#import <CodePush/CodePush.h>` in `postlink.js` file.
Fix https://github.com/Microsoft/react-native-code-push/issues/662

* readme: update iOS manual plugin installation/usage documentation

Due to changes in React Native v0.40.0 and changes in CodePush project Step 6. of iOS manual plugin installation (add “Header Search Paths”) is not needed anymore. Also changed path to `CodePush.h` file in `AppDelegate.m` to `#import <CodePush/CodePush.h>`
2017-01-19 16:50:20 -08:00
Richard Hua
6da5918b98 Upgrade example app to React Native 0.39 (#630)
* Upgrade example app to react-native@0.39.0

* Fix formatting

* Update README.md to reflect new compatibility
2016-12-02 18:04:10 -08:00
BO KANG
76b4f4d558 Upgrade to rn 0.38 (#624)
* upgrade to RN 0.38
2016-11-28 13:58:13 -08:00
Sota Yamashtia
2431cb8c19 Remove MoveIt! from example section (#622)
Remove Movelt! bacause it is 404 and not maintained anymore according to https://github.com/multunus/moveit-mobile.
2016-11-28 12:56:07 -08:00
Hafiz Ismail
4d6e120e58 Update README for iOS Manual plugin installation (#620)
* Update README for iOS Manual plugin installation

Wrong/incomplete path to Codepush iOS library set in the `Header Search Paths` causes Xcode to fail without specifying any errors.

The path to the library should be changed from 

```
$(SRCROOT)/../node_modules/react-native-code-push

to

$(SRCROOT)/../node_modules/react-native-code-push/ios
```

Small detail but might cause a developer significant amount of time trying to pin down the cause of the build failure, especially when Xcode does not return any useful error.

The Xcode log when the header search path is wrong:

```
# Exit Status 65
Verify final result code for completed build operation

Build operation failed without specifying any errors. Individual build tasks may have failed for unknown reasons.
One possible cause is if there are too many (possibly zombie) processes; in this case, rebooting may fix the problem.
Some individual build task failures (up to 12) may be listed below.

```

Cheers!

* Update related screenshot for `Header Search Path`

Update related screenshot for `Header Search Path` configuration for manual iOS plugin installation
2016-11-28 12:51:53 -08:00
Richard Hua
efd8d8e01e Update README.md 2016-11-22 17:48:52 -08:00
BO KANG
f40495bec7 Update README.md file (#615)
Ensure that users on React Native 0.29-0.32 don't run into a known linking bug
2016-11-21 13:28:35 -08:00
Tristan Tran
e079bb9ece Correct console message in status change example (#609) 2016-11-16 12:07:53 -08:00
Richard Hua
f805fea5ef Update README.md to reflect compatibility 2016-11-15 17:52:36 -08:00
Dan Hassin
e21d31a456 Update broken 'install RN with cocoapods' link (#601) 2016-11-11 17:50:18 -08:00
Richard Hua
641caddd86 Update README.md 2016-10-19 14:09:26 -07:00
Richard Hua
392189fad0 Support React Native 0.35.0 (#562)
* Upgrade example app to RN 0.35.0
* Update supported versions in README
* Support RN 35 - make a copy of objects queued over the bridge if they are mutable

This line was added in React Native 0.35.0: https://github.com/facebook/react-native/blob/v0.35.0/Libraries/Utilities/MessageQueue.js#L194 (facebook/react-native@145109f). It essentially deep freezes (or makes immutable) any object sent from JS to Native over the bridge. This object is already pass-by-value to begin with, so I assume the purpose of this is to avoid any ambiguity or confusion that might occur if the object is modified while it is sitting in the message queue.

We do send a localPackage object over the bridge, which we modify afterwards. Because we only care about the value of this object at the moment that it is queued, the fix is to make a copy of it before sending it over the bridge.

This is relevant to issue #536 (RN version support).
2016-10-11 17:13:46 -07:00
Richard Hua
22d2a146d2 Support RN 0.34 (#557)
* Upgrade example app to RN 0.34.1
* Fix Android reflection logic to support RN 0.34 (as reported in #536), while maintaining backward compatibility
* Bump package.json and update supported RN versions in README
2016-10-06 16:18:07 -07:00
Richard Hua
f4f66fbd30 Update README.md 2016-10-05 15:54:03 -07:00
Richard Hua
bb0d6ceed1 Merge pull request #525 from HustleInc/HEAD
[doc] advice when targeting both android/ios
2016-10-05 15:52:46 -07:00
Richard Hua
69092e2405 Update README.md 2016-10-05 14:59:43 -07:00
Richard Hua
d8bfe1475c Update compatible RN versions in README.md 2016-10-05 14:57:24 -07:00
Richard Hua
ee3519faee Update README.md to reflect RN 0.33 support 2016-09-29 14:37:30 -07:00
Richard Hua
abc1c777db Merge pull request #532 from mobileDevNativeCross/patch-1
Update README.md
2016-09-26 12:39:23 -07:00
mobileDevNativeCross
08dce65fd2 Update README.md
codePushStatusDidChange: syncStatus -> status
2016-09-26 17:04:50 +04:00
mobileDevNativeCross
a91be2778e Update README.md
copushDownloadDidProgress: progess -> progress
2016-09-26 17:01:16 +04:00
Levy Klots
19ea89192e [doc] advice when targeting both android/ios 2016-09-22 16:49:31 -07:00
Geoffrey Goh
0deba45bd1 update compat table for readme 2016-08-31 17:35:33 -07:00
Geoffrey Goh
cf3551fe88 update docs 2016-08-31 15:19:29 -07:00
Geoffrey Goh
120d60969c update docs 2016-08-31 15:18:47 -07:00
Geoffrey Goh
c376c301d5 Merge pull request #491 from igrayson/patch-1
[Android] Support React instances with no Activity
2016-08-30 13:05:54 -07:00
Richard Hua
c2d2e35622 Clarify description of the label field in the README.md 2016-08-30 10:55:42 -07:00
Ian Grayson
f6ea4ec00d [Android] Support React instances with no Activity
This change aims to support applications which run React Native's catalyst instance in the background, sometimes without an activity.

We're using this change today in an RN 0.27 application, which overrides `ReactActivity#createReactInstanceManager` to afford us control of the instance's lifecycle, so that we may run and launch without an `Activity` (i.e., in response to push notifications and other triggers).

If we agree with this approach, I'll update this PR with documentation/etc.
2016-08-29 13:52:28 -07:00
Geoffrey Goh
4353657864 Update README.md 2016-08-12 13:48:31 -07:00
Geoffrey Goh
5ab949ab92 Merge pull request #450 from Microsoft/add-postlink-hooks
Add postlink scripts
2016-08-11 14:09:31 -07:00
Aleck Greenham
b354a0ec11 Update instructions to refer to correct files in Readme 2016-08-09 12:22:45 +01:00
Aleck Greenham
4e2d78c7eb Remove accidental placement of note in code block in Readme 2016-08-09 11:54:51 +01:00
Aleck Greenham
fda5175214 Fix formatting of previous amendment to Readme 2016-08-09 11:51:33 +01:00
Aleck Greenham
c232b00e10 Add separate Android installation step for >= 0.29 2016-08-09 11:50:17 +01:00
Geoffrey Goh
e40d6e46f0 Update README.md 2016-08-05 12:12:43 -07:00
Geoffrey Goh
759352d7f0 Update README.md 2016-08-04 12:58:15 -07:00
Jérémy M
6839d51b20 Mistake in README
Little mistake in README
2016-08-04 15:06:22 +02:00
Geoffrey Goh
370e639fdd update docs 2016-08-02 18:36:35 -07:00
Geoffrey Goh
f0c93e5864 update docs 2016-08-02 18:29:21 -07:00
Richard Hua
cdbf957f7d Update README.md 2016-08-02 18:00:40 -07:00
Geoffrey Goh
d8bdd63ce7 CR feedback 2016-08-02 17:44:02 -07:00
Geoffrey Goh
4fe0f87e98 update docs 2016-08-02 17:36:19 -07:00
Geoffrey Goh
79381ebf0a allow no opts to decorator 2016-08-02 17:34:02 -07:00
Richard Hua
88d325d2a5 Update README.md 2016-08-02 17:30:18 -07:00