-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update RN * Wraps up update * fix windows * Updates changelog and removes todo * Fixes JS tests * Removes iOS Tests target * Revert "Removes iOS Tests target" This reverts commit 5ab26dc. * Fixes scheme * Updates Xcode and more ram for android
- Loading branch information
Showing
35 changed files
with
3,570 additions
and
2,645 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
var sys = require('sys') | ||
var exec = require('child_process').exec; | ||
function puts(error, stdout, stderr) { sys.puts(stdout) } | ||
|
||
var os = require('os'); | ||
|
||
if (os.type() === 'Linux') | ||
exec("Skipping iOS Dependencies", puts); | ||
else if (os.type() === 'Darwin') | ||
exec("./scripts/download-purchases-framework.sh 2.1.0", puts); | ||
else if (os.type() === 'Windows_NT') | ||
exec("Skipping iOS Dependencies", puts); | ||
else | ||
throw new Error("Unsupported OS found: " + os.type()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,4 +54,3 @@ buck-out/ | |
|
||
# Bundle artifact | ||
*.jsbundle | ||
ios/Pods |
Oops, something went wrong.