Christian Melchior
d05725c914
Add support for Android Gradle Plugin 3.0 "implementation" keyword. ( #1958 )
2018-08-14 13:12:06 +02:00
Christian Melchior
21d28f9780
Use inlined version of Base64 encoder
2018-05-09 09:43:05 +02:00
Kenneth Geisshirt
462856a24d
Partial sync ( #1583 )
...
The new Partial Sync API
2018-02-20 13:40:54 +01:00
blagoev
97d695d615
fix android test app build and the script for android tests
...
address review comments
2017-12-14 12:17:49 +02:00
blagoev
106cf09c27
remove commented code
2017-12-13 22:48:48 +02:00
blagoev
72cb0d845e
fix RealmExample app to use the new RN navigation
2017-12-13 18:36:10 +02:00
blagoev
9f41664309
try fix ReactExample test app
2017-12-06 14:44:00 +02:00
Kenneth Geisshirt
92ab314ba5
Updating packages in ReactExample
2017-11-22 18:05:26 +02:00
Thomas Goyne
6c1748b622
Add the js files to the ReactExample xcode project
2017-09-08 11:38:15 -07:00
Yavor Georgiev
6b07937c8b
Upgrade react-test-app to RN 0.40 ( #784 )
...
* Upgrade react-test-app to RN 0.40.
* Give the test harness enough time to subscribe
to the `realm-test-names` event
* Disable parallel builds in the test app
http://stackoverflow.com/questions/41477241/react-native-xcode-upgrade-and-now-rctconvert-h-not-found
* Update ReactExample to RN 0.40.0
2017-01-10 14:00:23 +01:00
Kristian Dupont
5684fd5aa8
Disable dead code elimination ( #757 )
...
* Disable dead code elimination
* Remove changes from realmjs project
2016-12-21 16:27:04 +01:00
Kristian Dupont
14a62e5f76
Make eslint happy
2016-11-16 21:18:08 +01:00
Adam Fish
70e0a33f98
Merge pull request #654 from realm/af/node-example
...
Node example
2016-11-15 22:54:26 +01:00
Adam Fish
842e5e3476
Minor tweaks to README language and folder name
2016-11-15 22:49:22 +01:00
Adam Fish
6b6b2fa11a
Node example with Realm and Express/Winston to demonstrate interprocess communication.
2016-11-15 12:57:35 +01:00
Nabil Hachicha
fdf88c2f78
Adding a build type to switch between Core & Core+Sync
2016-11-14 13:26:33 +00:00
Nabil Hachicha
f764032ef5
fixing Android example
2016-11-12 10:47:36 +00:00
Ari Lazier
15bb3014b9
example fixes
2016-11-11 18:23:44 -08:00
Ari Lazier
bb7e98cbbe
use latest rn version
2016-11-11 12:01:31 -08:00
Ari Lazier
7970e9d575
remove outdated/out of place examples
2016-11-11 11:12:46 -08:00
Ari Lazier
08ffc3bf15
ccache support
2016-11-10 23:55:26 -08:00
Ari Lazier
9d0df0de3d
Sync and fine grained notifications
2016-10-04 15:07:14 -07:00
Ari Lazier
1ea107258f
don't run npm install multiple times
2016-08-19 10:07:15 -07:00
Ari Lazier
9c8a1ed8ae
fixes for RN 0.31.0
2016-08-07 09:33:36 -07:00
Ari Lazier
d2f733f168
support latest react-native version
2016-07-31 14:23:12 -07:00
Scott Kyle
e8ea8e493e
Fix for linker error when building for iOS 7
...
By default, React Native projects target a minimum of iOS 7, but our projects were set to iOS 8 because previously we used a dynamic framework.
When building for an iOS 7 minimum target version, the linker would complain about thread local variables not working on iOS 7. So it was necessary to add even more checks (iOS >= 8 or OS X >= 10.7) before using native thread local variables rather than our shim.
This also changes our projects to target iOS 7 so we can catch these issues quicker in the future.
2016-06-27 12:16:35 -07:00
Scott Kyle
c8df1cddec
Update projects to React Native 0.27.1
2016-06-07 18:23:11 -07:00
Scott Kyle
b76ed20020
Update projects to React Native 0.26.2
...
Fixed some minor issues along the way.
2016-05-27 11:30:17 -07:00
Scott Kyle
02b770b79a
Fix ESLint errors
2016-05-16 14:15:56 -07:00
Scott Kyle
e304cd0032
Fix some warnings in benchmark app from RN upgrade
2016-05-16 13:21:55 -07:00
Scott Kyle
d29a6498dc
Fix some warnings in ReactExample from RN upgrade
2016-05-16 13:21:28 -07:00
Scott Kyle
8db0161ed8
Update projects to React Native 0.25
2016-05-16 13:20:50 -07:00
Scott Kyle
26d2c169a9
Support ES6 class inheritance from Realm.Object
...
Unfortunately, this was broken because our native Realm.Object constructor was not presenting itself as a function in JS. This fixes that and adds tests.
2016-05-09 16:49:05 -07:00
Ari Lazier
f66dcf943f
Header fix
2016-05-09 12:36:25 -07:00
Scott Kyle
933e6070c5
Update test and example apps to use React Native 0.24.1
...
This might make tests run more reliably on iOS due to some internal changes, mainly "Stop the runloop from invalidate instead of dealloc" (99c7de2).
2016-05-02 16:19:29 -07:00
Scott Kyle
c9c941aac9
Update apps to use React Native 0.22
...
React is now a peer dependency, which means we need to add it to our package.json for npm v3 to work properly.
2016-03-24 17:35:46 -07:00
Scott Kyle
02b81ac056
Convert RealmReact to be a static library
...
We needed to do this due to the way React Native modules work. Our hacky solution for using a framework ended up falling apart due to it relying on symbols not getting stripped from the main application.
This static library is in its own Xcode project because rnpm links in *all* static libraries from a given Xcode project.
2016-03-23 10:50:19 -07:00
Scott Kyle
401b501aab
Explicitly opt-in to building Android module
...
Fixes #277
2016-03-16 13:01:38 -07:00
Scott Kyle
27073a9e66
Properly configure ESLint for syntax checking
...
Added a test case to run on CI as well.
2016-03-16 13:01:38 -07:00
Scott Kyle
7e123f8ae2
Use new StyleSheet.hairlineWidth in ReactExample
2016-03-04 13:31:14 -08:00
Scott Kyle
21b74e8e38
Update ReactNativeBenchmarks to React Native 0.21
2016-03-04 13:31:14 -08:00
Scott Kyle
50ec358e5f
Update ReactExample to React Native 0.21
2016-03-04 13:31:14 -08:00
Scott Kyle
4ea2e729b4
Support many Array methods on List and Results
...
Resolves #18
2016-02-29 03:24:58 -08:00
Tim Anglade
7cc2f69736
Merge pull request #264 from realm/km-js-fixlicense
...
License update
2016-02-21 18:56:59 -08:00
Scott Kyle
ab94f5f314
Merge pull request #270 from realm/sk-port-forward
...
Automatically forward port 8082 for Android
2016-02-21 18:05:09 -08:00
Scott Kyle
52a1fa9196
Automatically forward port 8082 for Android
...
Fixes #249
2016-02-21 16:57:05 -08:00
Ari Lazier
349d227252
use classes in the examples
2016-02-21 12:16:42 -08:00
Scott Kyle
1ab3a8a985
No longer delete before npm installing local modules
...
This doesn't appear to have been necessary and seems to sometimes cause an issue because the packager will start and look for a JS file that was just deleted.
2016-02-19 02:03:54 -08:00
Karson Miller
84b06fd8e0
missed a couple
2016-02-18 15:30:44 -08:00
Karson Miller
5e9333b699
no message
2016-02-18 15:30:44 -08:00