├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── enhancement.yml ├── PULL_REQUEST_TEMPLATE └── workflows │ ├── lint-md.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── apps ├── app │ ├── .gitignore │ ├── App.tsx │ ├── app.config.js │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── index.js │ ├── meta │ │ └── screenshots │ │ │ └── android │ │ │ ├── en-US │ │ │ └── APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png │ │ │ ├── nl-NL │ │ │ └── APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png │ │ │ └── zh-CN │ │ │ └── APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png │ ├── package.json │ ├── scripts │ │ └── start-metro.sh │ ├── src │ │ └── react-native-adjust │ │ │ └── App.tsx │ └── tsconfig.json ├── apple-settings │ ├── app.config.ts │ ├── app.json │ ├── index.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ └── SettingsViews.tsx │ └── tsconfig.json ├── ios-stickers │ ├── app.config.js │ ├── app.json │ ├── assets │ │ ├── imessage-icon.png │ │ └── stickers │ │ │ ├── annoyed.png │ │ │ ├── avocool.png │ │ │ ├── cant.png │ │ │ ├── coder-girl.png │ │ │ ├── cozzy copy.png │ │ │ ├── cozzy.png │ │ │ ├── crazy.png │ │ │ ├── cuddle.png │ │ │ ├── donno.png │ │ │ ├── dork.png │ │ │ ├── focus.png │ │ │ └── teapot.png │ ├── expo-template-bare-minimum-50.0.17.tgz │ ├── index.js │ ├── package.json │ ├── src │ │ └── App.js │ └── tsconfig.json ├── react-native-branch │ ├── app.config.js │ ├── app.json │ ├── index.js │ ├── package.json │ ├── src │ │ └── App.js │ └── tsconfig.json ├── react-native-dynamic-app-icon │ ├── app.config.js │ ├── app.json │ ├── assets │ │ └── icons │ │ │ ├── autumn.png │ │ │ ├── fall.png │ │ │ ├── solstice.png │ │ │ ├── spring.png │ │ │ ├── summer.png │ │ │ └── winter.png │ ├── index.js │ ├── package.json │ ├── src │ │ └── App.js │ └── tsconfig.json ├── react-native-pdf │ ├── app.config.js │ ├── app.json │ ├── index.js │ ├── package.json │ └── src │ │ └── App.js ├── react-native-siri-shortcut │ ├── app.config.js │ ├── app.json │ ├── index.js │ ├── package.json │ ├── src │ │ ├── App.ios.tsx │ │ └── App.tsx │ └── tsconfig.json └── react-native-webrtc │ ├── app.config.js │ ├── app.json │ ├── index.js │ ├── package.json │ ├── src │ └── App.js │ └── tsconfig.json ├── fixtures ├── AppDelegate.mm ├── AppDelegate.swift ├── Podfile ├── README.md ├── app-Bridging-Header.h ├── app-build.gradle ├── build.gradle └── getFixtures.ts ├── lerna.json ├── package.json ├── packages ├── android-jsc-intl │ └── README.md ├── apple-settings │ ├── .eslintrc.js │ ├── README.md │ ├── __mocks__ │ │ ├── @expo │ │ │ └── image-utils.ts │ │ └── fs.ts │ ├── jest.config.js │ ├── jest │ │ └── setup.js │ ├── package.json │ ├── src │ │ ├── base-mods │ │ │ ├── strings.ts │ │ │ ├── withSettingsPlist.ts │ │ │ ├── withSettingsStrings.ts │ │ │ └── withXcparse.ts │ │ ├── index.tsx │ │ ├── models.ts │ │ ├── schema │ │ │ ├── SettingsPlist.json │ │ │ └── SettingsPlist.ts │ │ ├── static.ts │ │ └── withLinkedSettingsBundle.ts │ └── tsconfig.json ├── ios-stickers │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── __mocks__ │ │ ├── @expo │ │ │ └── image-utils.ts │ │ └── fs.ts │ ├── jest.config.js │ ├── jest │ │ └── setup.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── fixtures │ │ │ │ └── icon.png │ │ │ ├── generateImessageIconsAsync.test.ts │ │ │ └── withStickerPack-test.ts │ │ ├── generateImessageIconsAsync.ts │ │ ├── options.json │ │ ├── withStickerAssets.ts │ │ ├── withStickerInfoPlist.ts │ │ ├── withStickerPack.ts │ │ ├── withStickerXcodeTarget.ts │ │ └── xcodeSticker.ts │ └── tsconfig.json ├── react-native-adjust │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── package.json │ ├── src │ │ └── withReactNativeAdjust.ts │ └── tsconfig.json ├── react-native-ble-plx │ └── README.md ├── react-native-blob-util │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── withReactNativeBlobUtil-test.ts.snap │ │ │ └── withReactNativeBlobUtil-test.ts │ │ └── withReactNativeBlobUtil.ts │ └── tsconfig.json ├── react-native-branch │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── expo │ │ │ └── modules │ │ │ └── adapters │ │ │ └── branch │ │ │ ├── BranchApplicationLifecycleListener.kt │ │ │ ├── BranchPackage.kt │ │ │ └── BranchReactActivityLifecycleListener.kt │ ├── app.plugin.js │ ├── expo-module.config.json │ ├── ios │ │ ├── ExpoAdapterBranch.podspec │ │ └── ExpoAdapterBranch │ │ │ └── BranchAppDelegate.swift │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── fixtures │ │ │ │ └── react-native-AndroidManifest.xml │ │ │ ├── withBranchAndroid.test.ts │ │ │ └── withBranchIOS.test.ts │ │ ├── types.ts │ │ ├── withBranch.ts │ │ ├── withBranchAndroid.ts │ │ └── withBranchIOS.ts │ └── tsconfig.json ├── react-native-callkeep │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── ensureHeaderSearchPath.ts │ │ └── withCallkeep.ts │ └── tsconfig.json ├── react-native-dynamic-app-icon │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json ├── react-native-pdf │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── withPdf.test.ts.snap │ │ │ └── withPdf.test.ts │ │ └── withPdf.ts │ └── tsconfig.json ├── react-native-quick-actions │ └── README.md ├── react-native-siri-shortcut │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── __snapshots__ │ │ │ │ └── withReactNativeSiriShortcut.test.ts.snap │ │ │ └── withReactNativeSiriShortcut.test.ts │ │ └── withReactNativeSiriShortcut.ts │ └── tsconfig.json ├── react-native-webrtc │ ├── .eslintrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── app.plugin.js │ ├── jest.config.js │ ├── package.json │ ├── src │ │ ├── withBitcodeDisabled.ts │ │ ├── withPermissions.ts │ │ └── withWebRTC.ts │ └── tsconfig.json └── tv │ └── README.md ├── scripts ├── generate-plugin.ts ├── gh-issues-config.ts ├── template │ ├── README.md │ ├── index.ts │ ├── package.json │ └── tsconfig.json └── update-dependabot-config.ts └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/workflows/lint-md.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/workflows/lint-md.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/README.md -------------------------------------------------------------------------------- /apps/app/.gitignore: -------------------------------------------------------------------------------- 1 | /scripts/start.command 2 | /artifacts -------------------------------------------------------------------------------- /apps/app/App.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./src/react-native-adjust/App"; 2 | -------------------------------------------------------------------------------- /apps/app/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/app.config.js -------------------------------------------------------------------------------- /apps/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/app.json -------------------------------------------------------------------------------- /apps/app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /apps/app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/assets/favicon.png -------------------------------------------------------------------------------- /apps/app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/assets/icon.png -------------------------------------------------------------------------------- /apps/app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/assets/splash.png -------------------------------------------------------------------------------- /apps/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/index.js -------------------------------------------------------------------------------- /apps/app/meta/screenshots/android/en-US/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/meta/screenshots/android/en-US/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png -------------------------------------------------------------------------------- /apps/app/meta/screenshots/android/nl-NL/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/meta/screenshots/android/nl-NL/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png -------------------------------------------------------------------------------- /apps/app/meta/screenshots/android/zh-CN/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/meta/screenshots/android/zh-CN/APP_EMULATOR-5554 (PIXEL_6_PRO_API_33)_0.png -------------------------------------------------------------------------------- /apps/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/package.json -------------------------------------------------------------------------------- /apps/app/scripts/start-metro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/scripts/start-metro.sh -------------------------------------------------------------------------------- /apps/app/src/react-native-adjust/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/src/react-native-adjust/App.tsx -------------------------------------------------------------------------------- /apps/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/app/tsconfig.json -------------------------------------------------------------------------------- /apps/apple-settings/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/app.config.ts -------------------------------------------------------------------------------- /apps/apple-settings/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/app.json -------------------------------------------------------------------------------- /apps/apple-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/index.js -------------------------------------------------------------------------------- /apps/apple-settings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/package.json -------------------------------------------------------------------------------- /apps/apple-settings/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/src/App.tsx -------------------------------------------------------------------------------- /apps/apple-settings/src/SettingsViews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/src/SettingsViews.tsx -------------------------------------------------------------------------------- /apps/apple-settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/apple-settings/tsconfig.json -------------------------------------------------------------------------------- /apps/ios-stickers/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/app.config.js -------------------------------------------------------------------------------- /apps/ios-stickers/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/app.json -------------------------------------------------------------------------------- /apps/ios-stickers/assets/imessage-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/imessage-icon.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/annoyed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/annoyed.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/avocool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/avocool.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/cant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/cant.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/coder-girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/coder-girl.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/cozzy copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/cozzy copy.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/cozzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/cozzy.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/crazy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/crazy.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/cuddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/cuddle.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/donno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/donno.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/dork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/dork.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/focus.png -------------------------------------------------------------------------------- /apps/ios-stickers/assets/stickers/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/assets/stickers/teapot.png -------------------------------------------------------------------------------- /apps/ios-stickers/expo-template-bare-minimum-50.0.17.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/expo-template-bare-minimum-50.0.17.tgz -------------------------------------------------------------------------------- /apps/ios-stickers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/index.js -------------------------------------------------------------------------------- /apps/ios-stickers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/package.json -------------------------------------------------------------------------------- /apps/ios-stickers/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/src/App.js -------------------------------------------------------------------------------- /apps/ios-stickers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/ios-stickers/tsconfig.json -------------------------------------------------------------------------------- /apps/react-native-branch/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/app.config.js -------------------------------------------------------------------------------- /apps/react-native-branch/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/app.json -------------------------------------------------------------------------------- /apps/react-native-branch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/index.js -------------------------------------------------------------------------------- /apps/react-native-branch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/package.json -------------------------------------------------------------------------------- /apps/react-native-branch/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/src/App.js -------------------------------------------------------------------------------- /apps/react-native-branch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-branch/tsconfig.json -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/app.config.js -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/app.json -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/autumn.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/fall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/fall.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/solstice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/solstice.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/spring.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/summer.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/assets/icons/winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/assets/icons/winter.png -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/index.js -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/package.json -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/src/App.js -------------------------------------------------------------------------------- /apps/react-native-dynamic-app-icon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-dynamic-app-icon/tsconfig.json -------------------------------------------------------------------------------- /apps/react-native-pdf/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-pdf/app.config.js -------------------------------------------------------------------------------- /apps/react-native-pdf/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-pdf/app.json -------------------------------------------------------------------------------- /apps/react-native-pdf/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-pdf/index.js -------------------------------------------------------------------------------- /apps/react-native-pdf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-pdf/package.json -------------------------------------------------------------------------------- /apps/react-native-pdf/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-pdf/src/App.js -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/app.config.js -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/app.json -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/index.js -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/package.json -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/src/App.ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/src/App.ios.tsx -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/src/App.tsx -------------------------------------------------------------------------------- /apps/react-native-siri-shortcut/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-siri-shortcut/tsconfig.json -------------------------------------------------------------------------------- /apps/react-native-webrtc/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/app.config.js -------------------------------------------------------------------------------- /apps/react-native-webrtc/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/app.json -------------------------------------------------------------------------------- /apps/react-native-webrtc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/index.js -------------------------------------------------------------------------------- /apps/react-native-webrtc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/package.json -------------------------------------------------------------------------------- /apps/react-native-webrtc/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/src/App.js -------------------------------------------------------------------------------- /apps/react-native-webrtc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/apps/react-native-webrtc/tsconfig.json -------------------------------------------------------------------------------- /fixtures/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/AppDelegate.mm -------------------------------------------------------------------------------- /fixtures/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/AppDelegate.swift -------------------------------------------------------------------------------- /fixtures/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/Podfile -------------------------------------------------------------------------------- /fixtures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/README.md -------------------------------------------------------------------------------- /fixtures/app-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/app-Bridging-Header.h -------------------------------------------------------------------------------- /fixtures/app-build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/app-build.gradle -------------------------------------------------------------------------------- /fixtures/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/build.gradle -------------------------------------------------------------------------------- /fixtures/getFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/fixtures/getFixtures.ts -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/package.json -------------------------------------------------------------------------------- /packages/android-jsc-intl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/android-jsc-intl/README.md -------------------------------------------------------------------------------- /packages/apple-settings/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/.eslintrc.js -------------------------------------------------------------------------------- /packages/apple-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/README.md -------------------------------------------------------------------------------- /packages/apple-settings/__mocks__/@expo/image-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/__mocks__/@expo/image-utils.ts -------------------------------------------------------------------------------- /packages/apple-settings/__mocks__/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/__mocks__/fs.ts -------------------------------------------------------------------------------- /packages/apple-settings/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/jest.config.js -------------------------------------------------------------------------------- /packages/apple-settings/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/jest/setup.js -------------------------------------------------------------------------------- /packages/apple-settings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/package.json -------------------------------------------------------------------------------- /packages/apple-settings/src/base-mods/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/base-mods/strings.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/base-mods/withSettingsPlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/base-mods/withSettingsPlist.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/base-mods/withSettingsStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/base-mods/withSettingsStrings.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/base-mods/withXcparse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/base-mods/withXcparse.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/index.tsx -------------------------------------------------------------------------------- /packages/apple-settings/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/models.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/schema/SettingsPlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/schema/SettingsPlist.json -------------------------------------------------------------------------------- /packages/apple-settings/src/schema/SettingsPlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/schema/SettingsPlist.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/static.ts -------------------------------------------------------------------------------- /packages/apple-settings/src/withLinkedSettingsBundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/src/withLinkedSettingsBundle.ts -------------------------------------------------------------------------------- /packages/apple-settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/apple-settings/tsconfig.json -------------------------------------------------------------------------------- /packages/ios-stickers/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/.eslintrc.js -------------------------------------------------------------------------------- /packages/ios-stickers/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/CHANGELOG.md -------------------------------------------------------------------------------- /packages/ios-stickers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/README.md -------------------------------------------------------------------------------- /packages/ios-stickers/__mocks__/@expo/image-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/__mocks__/@expo/image-utils.ts -------------------------------------------------------------------------------- /packages/ios-stickers/__mocks__/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/__mocks__/fs.ts -------------------------------------------------------------------------------- /packages/ios-stickers/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/jest.config.js -------------------------------------------------------------------------------- /packages/ios-stickers/jest/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/jest/setup.js -------------------------------------------------------------------------------- /packages/ios-stickers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/package.json -------------------------------------------------------------------------------- /packages/ios-stickers/src/__tests__/fixtures/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/__tests__/fixtures/icon.png -------------------------------------------------------------------------------- /packages/ios-stickers/src/__tests__/generateImessageIconsAsync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/__tests__/generateImessageIconsAsync.test.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/__tests__/withStickerPack-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/__tests__/withStickerPack-test.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/generateImessageIconsAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/generateImessageIconsAsync.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/options.json -------------------------------------------------------------------------------- /packages/ios-stickers/src/withStickerAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/withStickerAssets.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/withStickerInfoPlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/withStickerInfoPlist.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/withStickerPack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/withStickerPack.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/withStickerXcodeTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/withStickerXcodeTarget.ts -------------------------------------------------------------------------------- /packages/ios-stickers/src/xcodeSticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/src/xcodeSticker.ts -------------------------------------------------------------------------------- /packages/ios-stickers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/ios-stickers/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-adjust/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-adjust/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-adjust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/README.md -------------------------------------------------------------------------------- /packages/react-native-adjust/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withReactNativeAdjust"); 2 | -------------------------------------------------------------------------------- /packages/react-native-adjust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/package.json -------------------------------------------------------------------------------- /packages/react-native-adjust/src/withReactNativeAdjust.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/src/withReactNativeAdjust.ts -------------------------------------------------------------------------------- /packages/react-native-adjust/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-adjust/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-ble-plx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-ble-plx/README.md -------------------------------------------------------------------------------- /packages/react-native-blob-util/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-blob-util/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-blob-util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/README.md -------------------------------------------------------------------------------- /packages/react-native-blob-util/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withReactNativeBlobUtil"); 2 | -------------------------------------------------------------------------------- /packages/react-native-blob-util/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-blob-util/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/package.json -------------------------------------------------------------------------------- /packages/react-native-blob-util/src/__tests__/__snapshots__/withReactNativeBlobUtil-test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/src/__tests__/__snapshots__/withReactNativeBlobUtil-test.ts.snap -------------------------------------------------------------------------------- /packages/react-native-blob-util/src/__tests__/withReactNativeBlobUtil-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/src/__tests__/withReactNativeBlobUtil-test.ts -------------------------------------------------------------------------------- /packages/react-native-blob-util/src/withReactNativeBlobUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/src/withReactNativeBlobUtil.ts -------------------------------------------------------------------------------- /packages/react-native-blob-util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-blob-util/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-branch/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-branch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-branch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/README.md -------------------------------------------------------------------------------- /packages/react-native-branch/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/.gitignore -------------------------------------------------------------------------------- /packages/react-native-branch/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/build.gradle -------------------------------------------------------------------------------- /packages/react-native-branch/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchApplicationLifecycleListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchApplicationLifecycleListener.kt -------------------------------------------------------------------------------- /packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchPackage.kt -------------------------------------------------------------------------------- /packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchReactActivityLifecycleListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/android/src/main/java/expo/modules/adapters/branch/BranchReactActivityLifecycleListener.kt -------------------------------------------------------------------------------- /packages/react-native-branch/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withBranch"); 2 | -------------------------------------------------------------------------------- /packages/react-native-branch/expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/expo-module.config.json -------------------------------------------------------------------------------- /packages/react-native-branch/ios/ExpoAdapterBranch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/ios/ExpoAdapterBranch.podspec -------------------------------------------------------------------------------- /packages/react-native-branch/ios/ExpoAdapterBranch/BranchAppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/ios/ExpoAdapterBranch/BranchAppDelegate.swift -------------------------------------------------------------------------------- /packages/react-native-branch/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-branch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/package.json -------------------------------------------------------------------------------- /packages/react-native-branch/src/__tests__/fixtures/react-native-AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/__tests__/fixtures/react-native-AndroidManifest.xml -------------------------------------------------------------------------------- /packages/react-native-branch/src/__tests__/withBranchAndroid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/__tests__/withBranchAndroid.test.ts -------------------------------------------------------------------------------- /packages/react-native-branch/src/__tests__/withBranchIOS.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/__tests__/withBranchIOS.test.ts -------------------------------------------------------------------------------- /packages/react-native-branch/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/types.ts -------------------------------------------------------------------------------- /packages/react-native-branch/src/withBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/withBranch.ts -------------------------------------------------------------------------------- /packages/react-native-branch/src/withBranchAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/withBranchAndroid.ts -------------------------------------------------------------------------------- /packages/react-native-branch/src/withBranchIOS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/src/withBranchIOS.ts -------------------------------------------------------------------------------- /packages/react-native-branch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-branch/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-callkeep/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-callkeep/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-callkeep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/README.md -------------------------------------------------------------------------------- /packages/react-native-callkeep/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withCallkeep"); 2 | -------------------------------------------------------------------------------- /packages/react-native-callkeep/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-callkeep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/package.json -------------------------------------------------------------------------------- /packages/react-native-callkeep/src/ensureHeaderSearchPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/src/ensureHeaderSearchPath.ts -------------------------------------------------------------------------------- /packages/react-native-callkeep/src/withCallkeep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/src/withCallkeep.ts -------------------------------------------------------------------------------- /packages/react-native-callkeep/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-callkeep/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/README.md -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/package.json -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/src/index.ts -------------------------------------------------------------------------------- /packages/react-native-dynamic-app-icon/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-dynamic-app-icon/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-pdf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-pdf/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/README.md -------------------------------------------------------------------------------- /packages/react-native-pdf/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withPdf"); 2 | -------------------------------------------------------------------------------- /packages/react-native-pdf/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-pdf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/package.json -------------------------------------------------------------------------------- /packages/react-native-pdf/src/__tests__/__snapshots__/withPdf.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/src/__tests__/__snapshots__/withPdf.test.ts.snap -------------------------------------------------------------------------------- /packages/react-native-pdf/src/__tests__/withPdf.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/src/__tests__/withPdf.test.ts -------------------------------------------------------------------------------- /packages/react-native-pdf/src/withPdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/src/withPdf.ts -------------------------------------------------------------------------------- /packages/react-native-pdf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-pdf/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-quick-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-quick-actions/README.md -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/README.md -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withReactNativeSiriShortcut"); -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/package.json -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/src/__tests__/__snapshots__/withReactNativeSiriShortcut.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/src/__tests__/__snapshots__/withReactNativeSiriShortcut.test.ts.snap -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/src/__tests__/withReactNativeSiriShortcut.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/src/__tests__/withReactNativeSiriShortcut.test.ts -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/src/withReactNativeSiriShortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/src/withReactNativeSiriShortcut.ts -------------------------------------------------------------------------------- /packages/react-native-siri-shortcut/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-siri-shortcut/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native-webrtc/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/.eslintrc.js -------------------------------------------------------------------------------- /packages/react-native-webrtc/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native-webrtc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/README.md -------------------------------------------------------------------------------- /packages/react-native-webrtc/app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./build/withWebRTC"); 2 | -------------------------------------------------------------------------------- /packages/react-native-webrtc/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/jest.config.js -------------------------------------------------------------------------------- /packages/react-native-webrtc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/package.json -------------------------------------------------------------------------------- /packages/react-native-webrtc/src/withBitcodeDisabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/src/withBitcodeDisabled.ts -------------------------------------------------------------------------------- /packages/react-native-webrtc/src/withPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/src/withPermissions.ts -------------------------------------------------------------------------------- /packages/react-native-webrtc/src/withWebRTC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/src/withWebRTC.ts -------------------------------------------------------------------------------- /packages/react-native-webrtc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/react-native-webrtc/tsconfig.json -------------------------------------------------------------------------------- /packages/tv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/packages/tv/README.md -------------------------------------------------------------------------------- /scripts/generate-plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/generate-plugin.ts -------------------------------------------------------------------------------- /scripts/gh-issues-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/gh-issues-config.ts -------------------------------------------------------------------------------- /scripts/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/template/README.md -------------------------------------------------------------------------------- /scripts/template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/template/index.ts -------------------------------------------------------------------------------- /scripts/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/template/package.json -------------------------------------------------------------------------------- /scripts/template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/template/tsconfig.json -------------------------------------------------------------------------------- /scripts/update-dependabot-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/scripts/update-dependabot-config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/expo/config-plugins/HEAD/yarn.lock --------------------------------------------------------------------------------