Lines Matching refs:example
15 …de scaffolding for Android, iOS, and TypeScript. It will also provide an example project to intera…
23 In our example, we won't need the view module included by `create-expo-module`. Let's clean up the …
36 …le.swift**, **ExpoNativeConfigurationModule.kt**, **src/index.ts** and **example/App.tsx** and rep…
77 ```typescript example/App.tsx
90 ## 3. Run the example project
92 Now let's run the example project to make sure everything is working. Start the TypeScript compiler…
102 In another terminal window, compile and run the example app:
105 cmdCopy="cd example && npx expo run:ios"
107 '$ cd example',
108 '# Run the example app on iOS',
110 '# Run the example app on Android',
121 Here is an example of how a basic config plugin function looks:
173 … left to configure is our example project to use our plugin. We can achieve this by adding the fol…
175 ```json example/app.json
184 Now when running `npx expo prebuild` inside our **example** folder we should see our 'my custom plu…
186 <Terminal cmd={['$ cd example', '$ npx expo prebuild --clean']} />
188 …mods/#what-are-mods), which makes it easy to modify native files. In our example, we will use two …
255 …, let's update the example app to pass our API key to the plugin as a configuration option. Modify…
257 ```json example/app.json
266 …example** folder. This will execute our plugin and update native files, injecting "MY_CUSTOM_API_K…
312 With our native modules reading the fields we added to the native files, we can now run the example…
315 cmdCopy="cd example && npx expo run:ios"
317 '$ cd example',
320 '# Run the example app on iOS',
322 '# Run the example app on Android',