Notice: We have git subtree'd this repo into https://github.com/wordpress-mobile/gutenberg-mobile. It is recommended that any new development happens on that one instead. Thanks!
Wrapping Aztec Android and Aztec iOS in a React Native component
This work is dual licensed under the Mozilla Public License version 2.0 (MPL-2.0) or the GNU General Public License v2.0 or later (GPL-2.0).
You can choose between one of them, or both if you use this work.
Make sure to have an emulator running or an Android device connected, and then:
$ cd example/
$ yarn clean:install
$ yarn android
This will build the Android library (via gradle
) and example app, then launch the main example activity on your connected device and run the Metro bundler at the same time.
Before being able to run the Example App, you'll need to install Carthage and the dependencies for this project:
cd ios
carthage bootstrap --platform iOS
Then go back to the root directory of the project and do:
$ cd example/
$ yarn clean:install
$ yarn ios
This will compile the example project, launch metro, run the simulator and run the app.
Q: The example app doesn't run
A: Make sure you have yarn and babel installed (https://yarnpkg.com/lang/en/docs/install/)
Q: The example app gets compiled but ReactNative cannot connect to Metro bundler (I'm on a real device attached through USB)
A: To debug on the device through USB, remember to revert ports before launching metro:
adb reverse tcp:8081 tcp:8081
Q: The example app gets compiled but ReactNative shows an error
A: try running, from the root folder in the project
$ cd example/
$ yarn start --reset-cache
Open a new shell window and run either of these depending on the platform:
$ yarn android
or
$ yarn ios