├── .gitignore
├── .npmignore
├── LICENSE
├── README.md
├── ReactNativeWebPFormat.podspec
├── example
├── .bundle
│ └── config
├── .eslintrc.js
├── .gitignore
├── .prettierrc.js
├── .watchmanconfig
├── App.tsx
├── Gemfile
├── Gemfile.lock
├── __tests__
│ ├── App-test.tsx
│ └── App.test.tsx
├── android
│ ├── app
│ │ ├── build.gradle
│ │ ├── debug.keystore
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ │ └── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ ├── MainActivity.kt
│ │ │ │ └── MainApplication.kt
│ │ │ └── res
│ │ │ ├── drawable
│ │ │ └── rn_edit_text_material.xml
│ │ │ ├── mipmap-hdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-mdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ ├── ic_launcher.png
│ │ │ └── ic_launcher_round.png
│ │ │ └── values
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── app.json
├── assets
│ ├── 1.sm.webp
│ ├── 3.sm.webp
│ └── animated-webp-supported.webp
├── babel.config.js
├── index.js
├── ios
│ ├── .xcode.env
│ ├── Podfile
│ ├── Podfile.lock
│ ├── example.xcodeproj
│ │ ├── project.pbxproj
│ │ └── xcshareddata
│ │ │ └── xcschemes
│ │ │ └── example.xcscheme
│ ├── example.xcworkspace
│ │ └── contents.xcworkspacedata
│ └── example
│ │ ├── AppDelegate.swift
│ │ ├── Images.xcassets
│ │ ├── AppIcon.appiconset
│ │ │ └── Contents.json
│ │ └── Contents.json
│ │ ├── Info.plist
│ │ ├── LaunchScreen.storyboard
│ │ └── PrivacyInfo.xcprivacy
├── jest.config.js
├── metro.config.js
├── package-lock.json
├── package.json
└── tsconfig.json
├── ios
├── ReactNativeWebPFormat.xcodeproj
│ └── project.pbxproj
├── WebPImageDataDecoder.h
└── WebPImageDataDecoder.m
└── package.json
/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | project.xcworkspace
24 | .idea
25 |
--------------------------------------------------------------------------------
/.npmignore:
--------------------------------------------------------------------------------
1 | example
2 | .idea
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) Alex Fomushkin.
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 | React Native WebP Format
3 |
4 |
5 | Save tens of megabytes with this simple trick...
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 | WebP image integration for React Native apps.
22 |
23 | By utilizing WebP instead of png/jpg you can significantly reduce the size of your app without quality loss.
24 |
25 | Works with both Image and ImageBackground React Native components.
26 |
27 | iOS uses [SDWebImage](https://github.com/SDWebImage/SDWebImage) implementation and Android utilizes [Fresco](https://github.com/facebook/fresco) to boost the gained performance even more.
28 |
29 |
30 | [Here's a detailed article](https://medium.com/@aleksefo/reduce-react-native-application-size-with-webp-image-format-41bdd767a7ac) with extra information on what is the best way to convert your regular images to WebP.
31 |
32 | ## Prerequisites:
33 | - React Native version `0.61` or higher (last tested on `0.78.0`). Older versions might work too, but that's not guaranteed.
34 |
35 | ## Installation
36 | ```
37 | yarn add react-native-webp-format
38 | npm i react-native-webp-format
39 | ```
40 | #### iOS
41 | ```
42 | cd ios && pod install
43 | ```
44 | #### Android
45 | Add the following dependencies to `android/app/build.gradle`:
46 | ```
47 | dependencies {
48 | ...
49 | implementation 'com.facebook.fresco:webpsupport:3.2.0'
50 | // Optionally, to display animated WebP images, you have to add:
51 | implementation 'com.facebook.fresco:animated-webp:3.2.0'
52 | ...
53 | }
54 | ```
55 |
56 | Check the example app if you have any issues.
57 | Remember to restart your packager to see the changes. If you still have any issues, try resetting the cache.
58 |
59 | ## Usage
60 | Simply replace .png or .jpg with .webp after you've converted your files
61 |
62 |
63 | ## Known issues
64 | 1. [If you use Expo try this](https://github.com/Aleksefo/react-native-webp-format/issues/18)
65 |
66 |
67 | 2. .getSize() doesn't work on WebP images. Use instead:
68 | ```
69 | const {width, height} = Image.resolveAssetSource(require('./assets/1.sm.webp'));
70 | ```
71 |
72 | 3. Multiple animated images of too large size (~5MB) may crash iOS app due to running out of memory. [Possible solution](https://github.com/Aleksefo/react-native-webp-format/issues/28)
73 |
74 |
75 | PRs are welcomed ❤️
76 |
--------------------------------------------------------------------------------
/ReactNativeWebPFormat.podspec:
--------------------------------------------------------------------------------
1 | require 'json'
2 |
3 | package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4 |
5 | Pod::Spec.new do |s|
6 | s.name = 'ReactNativeWebPFormat'
7 | s.version = package['version']
8 | s.summary = package['description']
9 | s.license = package['license']
10 | s.homepage = package['homepage']
11 | s.author = package['author']['name']
12 | s.source = { :git => package["repository"]["url"], :tag => s.version}
13 | s.source_files = 'ios/*.{h,m}'
14 | s.requires_arc = true
15 | s.platforms = { :ios => "9.0" }
16 | s.dependency 'React-Core'
17 | s.dependency 'SDWebImageWebPCoder'
18 | end
19 |
--------------------------------------------------------------------------------
/example/.bundle/config:
--------------------------------------------------------------------------------
1 | BUNDLE_PATH: "vendor/bundle"
2 | BUNDLE_FORCE_RUBY_PLATFORM: 1
3 |
--------------------------------------------------------------------------------
/example/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: '@react-native',
4 | };
5 |
--------------------------------------------------------------------------------
/example/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 | **/.xcode.env.local
24 |
25 | # Android/IntelliJ
26 | #
27 | build/
28 | .idea
29 | .gradle
30 | local.properties
31 | *.iml
32 | *.hprof
33 | .cxx/
34 | *.keystore
35 | !debug.keystore
36 | .kotlin/
37 |
38 | # node.js
39 | #
40 | node_modules/
41 | npm-debug.log
42 | yarn-error.log
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | **/fastlane/report.xml
52 | **/fastlane/Preview.html
53 | **/fastlane/screenshots
54 | **/fastlane/test_output
55 |
56 | # Bundle artifact
57 | *.jsbundle
58 |
59 | # Ruby / CocoaPods
60 | **/Pods/
61 | /vendor/bundle/
62 |
63 | # Temporary files created by Metro to check the health of the file watcher
64 | .metro-health-check*
65 |
66 | # testing
67 | /coverage
68 |
69 | # Yarn
70 | .yarn/*
71 | !.yarn/patches
72 | !.yarn/plugins
73 | !.yarn/releases
74 | !.yarn/sdks
75 | !.yarn/versions
76 |
--------------------------------------------------------------------------------
/example/.prettierrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | arrowParens: 'avoid',
3 | bracketSameLine: true,
4 | bracketSpacing: false,
5 | singleQuote: true,
6 | trailingComma: 'all',
7 | };
8 |
--------------------------------------------------------------------------------
/example/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/example/App.tsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import {
3 | Image,
4 | ImageBackground,
5 | SafeAreaView,
6 | StatusBar,
7 | StyleSheet,
8 | Text,
9 | useColorScheme,
10 | View,
11 | } from 'react-native';
12 | import {Colors} from 'react-native/Libraries/NewAppScreen';
13 |
14 | function App(): React.JSX.Element {
15 | const isDarkMode = useColorScheme() === 'dark';
16 |
17 | const backgroundStyle = {
18 | backgroundColor: isDarkMode ? Colors.darker : Colors.lighter,
19 | };
20 |
21 | return (
22 |
23 |
27 |
28 |
32 | RN WebP example
33 | WebP Image
34 |
35 | Animated WebP Image
36 |
40 | WebP Image from a website
41 |
47 | WebP ImageBackground
48 |
51 | Text inside of the image
52 |
53 |
54 |
55 | );
56 | }
57 |
58 | const styles = StyleSheet.create({
59 | title: {
60 | fontSize: 24,
61 | fontWeight: '600',
62 | alignSelf: 'center',
63 | },
64 | image: {
65 | height: '20%',
66 | width: '100%',
67 | },
68 | imageBackground: {
69 | height: 150,
70 | width: '100%',
71 | resizeMode: 'cover',
72 | justifyContent: 'center',
73 | },
74 | description: {
75 | fontSize: 24,
76 | fontWeight: '600',
77 | color: Colors.white,
78 | },
79 | });
80 |
81 | export default App;
82 |
--------------------------------------------------------------------------------
/example/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 |
3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
4 | ruby ">= 2.6.10"
5 |
6 | # Exclude problematic versions of cocoapods and activesupport that causes build failures.
7 | gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
8 | gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
9 | gem 'xcodeproj', '< 1.26.0'
10 | gem 'concurrent-ruby', '< 1.3.4'
11 |
--------------------------------------------------------------------------------
/example/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | remote: https://rubygems.org/
3 | specs:
4 | CFPropertyList (3.0.7)
5 | base64
6 | nkf
7 | rexml
8 | activesupport (7.1.5.1)
9 | base64
10 | benchmark (>= 0.3)
11 | bigdecimal
12 | concurrent-ruby (~> 1.0, >= 1.0.2)
13 | connection_pool (>= 2.2.5)
14 | drb
15 | i18n (>= 1.6, < 2)
16 | logger (>= 1.4.2)
17 | minitest (>= 5.1)
18 | mutex_m
19 | securerandom (>= 0.3)
20 | tzinfo (~> 2.0)
21 | addressable (2.8.7)
22 | public_suffix (>= 2.0.2, < 7.0)
23 | algoliasearch (1.27.5)
24 | httpclient (~> 2.8, >= 2.8.3)
25 | json (>= 1.5.1)
26 | atomos (0.1.3)
27 | base64 (0.2.0)
28 | benchmark (0.4.0)
29 | bigdecimal (3.1.9)
30 | claide (1.1.0)
31 | cocoapods (1.15.2)
32 | addressable (~> 2.8)
33 | claide (>= 1.0.2, < 2.0)
34 | cocoapods-core (= 1.15.2)
35 | cocoapods-deintegrate (>= 1.0.3, < 2.0)
36 | cocoapods-downloader (>= 2.1, < 3.0)
37 | cocoapods-plugins (>= 1.0.0, < 2.0)
38 | cocoapods-search (>= 1.0.0, < 2.0)
39 | cocoapods-trunk (>= 1.6.0, < 2.0)
40 | cocoapods-try (>= 1.1.0, < 2.0)
41 | colored2 (~> 3.1)
42 | escape (~> 0.0.4)
43 | fourflusher (>= 2.3.0, < 3.0)
44 | gh_inspector (~> 1.0)
45 | molinillo (~> 0.8.0)
46 | nap (~> 1.0)
47 | ruby-macho (>= 2.3.0, < 3.0)
48 | xcodeproj (>= 1.23.0, < 2.0)
49 | cocoapods-core (1.15.2)
50 | activesupport (>= 5.0, < 8)
51 | addressable (~> 2.8)
52 | algoliasearch (~> 1.0)
53 | concurrent-ruby (~> 1.1)
54 | fuzzy_match (~> 2.0.4)
55 | nap (~> 1.0)
56 | netrc (~> 0.11)
57 | public_suffix (~> 4.0)
58 | typhoeus (~> 1.0)
59 | cocoapods-deintegrate (1.0.5)
60 | cocoapods-downloader (2.1)
61 | cocoapods-plugins (1.0.0)
62 | nap
63 | cocoapods-search (1.0.1)
64 | cocoapods-trunk (1.6.0)
65 | nap (>= 0.8, < 2.0)
66 | netrc (~> 0.11)
67 | cocoapods-try (1.2.0)
68 | colored2 (3.1.2)
69 | concurrent-ruby (1.3.3)
70 | connection_pool (2.5.0)
71 | drb (2.2.1)
72 | escape (0.0.4)
73 | ethon (0.16.0)
74 | ffi (>= 1.15.0)
75 | ffi (1.17.1)
76 | fourflusher (2.3.1)
77 | fuzzy_match (2.0.4)
78 | gh_inspector (1.1.3)
79 | httpclient (2.9.0)
80 | mutex_m
81 | i18n (1.14.7)
82 | concurrent-ruby (~> 1.0)
83 | json (2.10.1)
84 | logger (1.6.6)
85 | minitest (5.25.4)
86 | molinillo (0.8.0)
87 | mutex_m (0.3.0)
88 | nanaimo (0.3.0)
89 | nap (1.1.0)
90 | netrc (0.11.0)
91 | nkf (0.2.0)
92 | public_suffix (4.0.7)
93 | rexml (3.4.1)
94 | ruby-macho (2.5.1)
95 | securerandom (0.3.2)
96 | typhoeus (1.4.1)
97 | ethon (>= 0.9.0)
98 | tzinfo (2.0.6)
99 | concurrent-ruby (~> 1.0)
100 | xcodeproj (1.25.1)
101 | CFPropertyList (>= 2.3.3, < 4.0)
102 | atomos (~> 0.1.3)
103 | claide (>= 1.0.2, < 2.0)
104 | colored2 (~> 3.1)
105 | nanaimo (~> 0.3.0)
106 | rexml (>= 3.3.6, < 4.0)
107 |
108 | PLATFORMS
109 | ruby
110 |
111 | DEPENDENCIES
112 | activesupport (>= 6.1.7.5, != 7.1.0)
113 | cocoapods (>= 1.13, != 1.15.1, != 1.15.0)
114 | concurrent-ruby (< 1.3.4)
115 | xcodeproj (< 1.26.0)
116 |
117 | RUBY VERSION
118 | ruby 2.7.6p219
119 |
120 | BUNDLED WITH
121 | 2.4.10
122 |
--------------------------------------------------------------------------------
/example/__tests__/App-test.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import 'react-native';
6 | import React from 'react';
7 | import App from '../App';
8 |
9 | // Note: test renderer must be required after react-native.
10 | import renderer from 'react-test-renderer';
11 |
12 | it('renders correctly', () => {
13 | renderer.create();
14 | });
15 |
--------------------------------------------------------------------------------
/example/__tests__/App.test.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import React from 'react';
6 | import ReactTestRenderer from 'react-test-renderer';
7 | import App from '../App';
8 |
9 | test('renders correctly', async () => {
10 | await ReactTestRenderer.act(() => {
11 | ReactTestRenderer.create();
12 | });
13 | });
14 |
--------------------------------------------------------------------------------
/example/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 | apply plugin: "org.jetbrains.kotlin.android"
3 | apply plugin: "com.facebook.react"
4 |
5 | /**
6 | * This is the configuration block to customize your React Native Android app.
7 | * By default you don't need to apply any configuration, just uncomment the lines you need.
8 | */
9 | react {
10 | /* Folders */
11 | // The root of your project, i.e. where "package.json" lives. Default is '../..'
12 | // root = file("../../")
13 | // The folder where the react-native NPM package is. Default is ../../node_modules/react-native
14 | // reactNativeDir = file("../../node_modules/react-native")
15 | // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
16 | // codegenDir = file("../../node_modules/@react-native/codegen")
17 | // The cli.js file which is the React Native CLI entrypoint. Default is ../../node_modules/react-native/cli.js
18 | // cliFile = file("../../node_modules/react-native/cli.js")
19 |
20 | /* Variants */
21 | // The list of variants to that are debuggable. For those we're going to
22 | // skip the bundling of the JS bundle and the assets. By default is just 'debug'.
23 | // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants.
24 | // debuggableVariants = ["liteDebug", "prodDebug"]
25 |
26 | /* Bundling */
27 | // A list containing the node command and its flags. Default is just 'node'.
28 | // nodeExecutableAndArgs = ["node"]
29 | //
30 | // The command to run when bundling. By default is 'bundle'
31 | // bundleCommand = "ram-bundle"
32 | //
33 | // The path to the CLI configuration file. Default is empty.
34 | // bundleConfig = file(../rn-cli.config.js)
35 | //
36 | // The name of the generated asset file containing your JS bundle
37 | // bundleAssetName = "MyApplication.android.bundle"
38 | //
39 | // The entry file for bundle generation. Default is 'index.android.js' or 'index.js'
40 | // entryFile = file("../js/MyApplication.android.js")
41 | //
42 | // A list of extra flags to pass to the 'bundle' commands.
43 | // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle
44 | // extraPackagerArgs = []
45 |
46 | /* Hermes Commands */
47 | // The hermes compiler command to run. By default it is 'hermesc'
48 | // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc"
49 | //
50 | // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
51 | // hermesFlags = ["-O", "-output-source-map"]
52 |
53 | /* Autolinking */
54 | autolinkLibrariesWithApp()
55 | }
56 |
57 | /**
58 | * Set this to true to Run Proguard on Release builds to minify the Java bytecode.
59 | */
60 | def enableProguardInReleaseBuilds = false
61 |
62 | /**
63 | * The preferred build flavor of JavaScriptCore (JSC)
64 | *
65 | * For example, to use the international variant, you can use:
66 | * `def jscFlavor = io.github.react-native-community:jsc-android-intl:2026004.+`
67 | *
68 | * The international variant includes ICU i18n library and necessary data
69 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
70 | * give correct results when using with locales other than en-US. Note that
71 | * this variant is about 6MiB larger per architecture than default.
72 | */
73 | def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
74 |
75 | android {
76 | ndkVersion rootProject.ext.ndkVersion
77 | buildToolsVersion rootProject.ext.buildToolsVersion
78 | compileSdk rootProject.ext.compileSdkVersion
79 |
80 | namespace "com.example"
81 | defaultConfig {
82 | applicationId "com.example"
83 | minSdkVersion rootProject.ext.minSdkVersion
84 | targetSdkVersion rootProject.ext.targetSdkVersion
85 | versionCode 1
86 | versionName "1.0"
87 | }
88 | signingConfigs {
89 | debug {
90 | storeFile file('debug.keystore')
91 | storePassword 'android'
92 | keyAlias 'androiddebugkey'
93 | keyPassword 'android'
94 | }
95 | }
96 | buildTypes {
97 | debug {
98 | signingConfig signingConfigs.debug
99 | }
100 | release {
101 | // Caution! In production, you need to generate your own keystore file.
102 | // see https://reactnative.dev/docs/signed-apk-android.
103 | signingConfig signingConfigs.debug
104 | minifyEnabled enableProguardInReleaseBuilds
105 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
106 | }
107 | }
108 | }
109 |
110 | dependencies {
111 | // The version of react-native is set by the React Native Gradle Plugin
112 | implementation("com.facebook.react:react-android")
113 | implementation 'com.facebook.fresco:animated-webp:3.2.0'
114 | implementation 'com.facebook.fresco:webpsupport:3.2.0'
115 |
116 | if (hermesEnabled.toBoolean()) {
117 | implementation("com.facebook.react:hermes-android")
118 | } else {
119 | implementation jscFlavor
120 | }
121 | }
122 |
--------------------------------------------------------------------------------
/example/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/debug.keystore
--------------------------------------------------------------------------------
/example/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
--------------------------------------------------------------------------------
/example/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
9 |
10 |
--------------------------------------------------------------------------------
/example/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
13 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/com/example/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example
2 |
3 | import com.facebook.react.ReactActivity
4 | import com.facebook.react.ReactActivityDelegate
5 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
6 | import com.facebook.react.defaults.DefaultReactActivityDelegate
7 |
8 | class MainActivity : ReactActivity() {
9 |
10 | /**
11 | * Returns the name of the main component registered from JavaScript. This is used to schedule
12 | * rendering of the component.
13 | */
14 | override fun getMainComponentName(): String = "example"
15 |
16 | /**
17 | * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
18 | * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
19 | */
20 | override fun createReactActivityDelegate(): ReactActivityDelegate =
21 | DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
22 | }
23 |
--------------------------------------------------------------------------------
/example/android/app/src/main/java/com/example/MainApplication.kt:
--------------------------------------------------------------------------------
1 | package com.example
2 |
3 | import android.app.Application
4 | import com.facebook.react.PackageList
5 | import com.facebook.react.ReactApplication
6 | import com.facebook.react.ReactHost
7 | import com.facebook.react.ReactNativeHost
8 | import com.facebook.react.ReactPackage
9 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
10 | import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
11 | import com.facebook.react.defaults.DefaultReactNativeHost
12 | import com.facebook.react.soloader.OpenSourceMergedSoMapping
13 | import com.facebook.soloader.SoLoader
14 |
15 | class MainApplication : Application(), ReactApplication {
16 |
17 | override val reactNativeHost: ReactNativeHost =
18 | object : DefaultReactNativeHost(this) {
19 | override fun getPackages(): List =
20 | PackageList(this).packages.apply {
21 | // Packages that cannot be autolinked yet can be added manually here, for example:
22 | // add(MyReactNativePackage())
23 | }
24 |
25 | override fun getJSMainModuleName(): String = "index"
26 |
27 | override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
28 |
29 | override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
30 | override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
31 | }
32 |
33 | override val reactHost: ReactHost
34 | get() = getDefaultReactHost(applicationContext, reactNativeHost)
35 |
36 | override fun onCreate() {
37 | super.onCreate()
38 | SoLoader.init(this, OpenSourceMergedSoMapping)
39 | if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
40 | // If you opted-in for the New Architecture, we load the native entry point for this app.
41 | load()
42 | }
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/drawable/rn_edit_text_material.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
22 |
23 |
24 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | example
3 |
4 |
--------------------------------------------------------------------------------
/example/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/example/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext {
3 | buildToolsVersion = "35.0.0"
4 | minSdkVersion = 24
5 | compileSdkVersion = 35
6 | targetSdkVersion = 35
7 | ndkVersion = "27.1.12297006"
8 | kotlinVersion = "2.0.21"
9 | }
10 | repositories {
11 | google()
12 | mavenCentral()
13 | }
14 | dependencies {
15 | classpath("com.android.tools.build:gradle")
16 | classpath("com.facebook.react:react-native-gradle-plugin")
17 | classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
18 | }
19 | }
20 |
21 | apply plugin: "com.facebook.react.rootproject"
22 |
--------------------------------------------------------------------------------
/example/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | # AndroidX package structure to make it clearer which packages are bundled with the
21 | # Android operating system, and which are packaged with your app's APK
22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
23 | android.useAndroidX=true
24 |
25 | # Use this property to specify which architecture you want to build.
26 | # You can also override it from the CLI using
27 | # ./gradlew -PreactNativeArchitectures=x86_64
28 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
29 |
30 | # Use this property to enable support to the new architecture.
31 | # This will allow you to use TurboModules and the Fabric render in
32 | # your application. You should enable this flag either if you want
33 | # to write custom TurboModules/Fabric components OR use libraries that
34 | # are providing them.
35 | newArchEnabled=true
36 |
37 | # Use this property to enable or disable the Hermes JS engine.
38 | # If set to false, you will be using JSC instead.
39 | hermesEnabled=true
40 |
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/example/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
4 | networkTimeout=10000
5 | validateDistributionUrl=true
6 | zipStoreBase=GRADLE_USER_HOME
7 | zipStorePath=wrapper/dists
8 |
--------------------------------------------------------------------------------
/example/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | #
4 | # Copyright © 2015-2021 the original authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 | # SPDX-License-Identifier: Apache-2.0
19 | #
20 |
21 | ##############################################################################
22 | #
23 | # Gradle start up script for POSIX generated by Gradle.
24 | #
25 | # Important for running:
26 | #
27 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
28 | # noncompliant, but you have some other compliant shell such as ksh or
29 | # bash, then to run this script, type that shell name before the whole
30 | # command line, like:
31 | #
32 | # ksh Gradle
33 | #
34 | # Busybox and similar reduced shells will NOT work, because this script
35 | # requires all of these POSIX shell features:
36 | # * functions;
37 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
38 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
39 | # * compound commands having a testable exit status, especially «case»;
40 | # * various built-in commands including «command», «set», and «ulimit».
41 | #
42 | # Important for patching:
43 | #
44 | # (2) This script targets any POSIX shell, so it avoids extensions provided
45 | # by Bash, Ksh, etc; in particular arrays are avoided.
46 | #
47 | # The "traditional" practice of packing multiple parameters into a
48 | # space-separated string is a well documented source of bugs and security
49 | # problems, so this is (mostly) avoided, by progressively accumulating
50 | # options in "$@", and eventually passing that to Java.
51 | #
52 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
53 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
54 | # see the in-line comments for details.
55 | #
56 | # There are tweaks for specific operating systems such as AIX, CygWin,
57 | # Darwin, MinGW, and NonStop.
58 | #
59 | # (3) This script is generated from the Groovy template
60 | # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
61 | # within the Gradle project.
62 | #
63 | # You can find Gradle at https://github.com/gradle/gradle/.
64 | #
65 | ##############################################################################
66 |
67 | # Attempt to set APP_HOME
68 |
69 | # Resolve links: $0 may be a link
70 | app_path=$0
71 |
72 | # Need this for daisy-chained symlinks.
73 | while
74 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
75 | [ -h "$app_path" ]
76 | do
77 | ls=$( ls -ld "$app_path" )
78 | link=${ls#*' -> '}
79 | case $link in #(
80 | /*) app_path=$link ;; #(
81 | *) app_path=$APP_HOME$link ;;
82 | esac
83 | done
84 |
85 | # This is normally unused
86 | # shellcheck disable=SC2034
87 | APP_BASE_NAME=${0##*/}
88 | # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89 | APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
90 |
91 | # Use the maximum available, or set MAX_FD != -1 to use that value.
92 | MAX_FD=maximum
93 |
94 | warn () {
95 | echo "$*"
96 | } >&2
97 |
98 | die () {
99 | echo
100 | echo "$*"
101 | echo
102 | exit 1
103 | } >&2
104 |
105 | # OS specific support (must be 'true' or 'false').
106 | cygwin=false
107 | msys=false
108 | darwin=false
109 | nonstop=false
110 | case "$( uname )" in #(
111 | CYGWIN* ) cygwin=true ;; #(
112 | Darwin* ) darwin=true ;; #(
113 | MSYS* | MINGW* ) msys=true ;; #(
114 | NONSTOP* ) nonstop=true ;;
115 | esac
116 |
117 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
118 |
119 |
120 | # Determine the Java command to use to start the JVM.
121 | if [ -n "$JAVA_HOME" ] ; then
122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
123 | # IBM's JDK on AIX uses strange locations for the executables
124 | JAVACMD=$JAVA_HOME/jre/sh/java
125 | else
126 | JAVACMD=$JAVA_HOME/bin/java
127 | fi
128 | if [ ! -x "$JAVACMD" ] ; then
129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
130 |
131 | Please set the JAVA_HOME variable in your environment to match the
132 | location of your Java installation."
133 | fi
134 | else
135 | JAVACMD=java
136 | if ! command -v java >/dev/null 2>&1
137 | then
138 | die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
139 |
140 | Please set the JAVA_HOME variable in your environment to match the
141 | location of your Java installation."
142 | fi
143 | fi
144 |
145 | # Increase the maximum file descriptors if we can.
146 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
147 | case $MAX_FD in #(
148 | max*)
149 | # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
150 | # shellcheck disable=SC2039,SC3045
151 | MAX_FD=$( ulimit -H -n ) ||
152 | warn "Could not query maximum file descriptor limit"
153 | esac
154 | case $MAX_FD in #(
155 | '' | soft) :;; #(
156 | *)
157 | # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
158 | # shellcheck disable=SC2039,SC3045
159 | ulimit -n "$MAX_FD" ||
160 | warn "Could not set maximum file descriptor limit to $MAX_FD"
161 | esac
162 | fi
163 |
164 | # Collect all arguments for the java command, stacking in reverse order:
165 | # * args from the command line
166 | # * the main class name
167 | # * -classpath
168 | # * -D...appname settings
169 | # * --module-path (only if needed)
170 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
171 |
172 | # For Cygwin or MSYS, switch paths to Windows format before running java
173 | if "$cygwin" || "$msys" ; then
174 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176 |
177 | JAVACMD=$( cygpath --unix "$JAVACMD" )
178 |
179 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
180 | for arg do
181 | if
182 | case $arg in #(
183 | -*) false ;; # don't mess with options #(
184 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
185 | [ -e "$t" ] ;; #(
186 | *) false ;;
187 | esac
188 | then
189 | arg=$( cygpath --path --ignore --mixed "$arg" )
190 | fi
191 | # Roll the args list around exactly as many times as the number of
192 | # args, so each arg winds up back in the position where it started, but
193 | # possibly modified.
194 | #
195 | # NB: a `for` loop captures its iteration list before it begins, so
196 | # changing the positional parameters here affects neither the number of
197 | # iterations, nor the values presented in `arg`.
198 | shift # remove old arg
199 | set -- "$@" "$arg" # push replacement arg
200 | done
201 | fi
202 |
203 |
204 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
205 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206 |
207 | # Collect all arguments for the java command:
208 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209 | # and any embedded shellness will be escaped.
210 | # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211 | # treated as '${Hostname}' itself on the command line.
212 |
213 | set -- \
214 | "-Dorg.gradle.appname=$APP_BASE_NAME" \
215 | -classpath "$CLASSPATH" \
216 | org.gradle.wrapper.GradleWrapperMain \
217 | "$@"
218 |
219 | # Stop when "xargs" is not available.
220 | if ! command -v xargs >/dev/null 2>&1
221 | then
222 | die "xargs is not available"
223 | fi
224 |
225 | # Use "xargs" to parse quoted args.
226 | #
227 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
228 | #
229 | # In Bash we could simply go:
230 | #
231 | # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
232 | # set -- "${ARGS[@]}" "$@"
233 | #
234 | # but POSIX shell has neither arrays nor command substitution, so instead we
235 | # post-process each arg (as a line of input to sed) to backslash-escape any
236 | # character that might be a shell metacharacter, then use eval to reverse
237 | # that process (while maintaining the separation between arguments), and wrap
238 | # the whole thing up as a single "set" statement.
239 | #
240 | # This will of course break if any of these variables contains a newline or
241 | # an unmatched quote.
242 | #
243 |
244 | eval "set -- $(
245 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
246 | xargs -n1 |
247 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
248 | tr '\n' ' '
249 | )" '"$@"'
250 |
251 | exec "$JAVACMD" "$@"
252 |
--------------------------------------------------------------------------------
/example/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 | @rem SPDX-License-Identifier: Apache-2.0
17 | @rem
18 |
19 | @if "%DEBUG%"=="" @echo off
20 | @rem ##########################################################################
21 | @rem
22 | @rem Gradle startup script for Windows
23 | @rem
24 | @rem ##########################################################################
25 |
26 | @rem Set local scope for the variables with windows NT shell
27 | if "%OS%"=="Windows_NT" setlocal
28 |
29 | set DIRNAME=%~dp0
30 | if "%DIRNAME%"=="" set DIRNAME=.
31 | @rem This is normally unused
32 | set APP_BASE_NAME=%~n0
33 | set APP_HOME=%DIRNAME%
34 |
35 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
36 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
37 |
38 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
39 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
40 |
41 | @rem Find java.exe
42 | if defined JAVA_HOME goto findJavaFromJavaHome
43 |
44 | set JAVA_EXE=java.exe
45 | %JAVA_EXE% -version >NUL 2>&1
46 | if %ERRORLEVEL% equ 0 goto execute
47 |
48 | echo. 1>&2
49 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2
50 | echo. 1>&2
51 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2
52 | echo location of your Java installation. 1>&2
53 |
54 | goto fail
55 |
56 | :findJavaFromJavaHome
57 | set JAVA_HOME=%JAVA_HOME:"=%
58 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
59 |
60 | if exist "%JAVA_EXE%" goto execute
61 |
62 | echo. 1>&2
63 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2
64 | echo. 1>&2
65 | echo Please set the JAVA_HOME variable in your environment to match the 1>&2
66 | echo location of your Java installation. 1>&2
67 |
68 | goto fail
69 |
70 | :execute
71 | @rem Setup the command line
72 |
73 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
74 |
75 |
76 | @rem Execute Gradle
77 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
78 |
79 | :end
80 | @rem End local scope for the variables with windows NT shell
81 | if %ERRORLEVEL% equ 0 goto mainEnd
82 |
83 | :fail
84 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
85 | rem the _cmd.exe /c_ return code!
86 | set EXIT_CODE=%ERRORLEVEL%
87 | if %EXIT_CODE% equ 0 set EXIT_CODE=1
88 | if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
89 | exit /b %EXIT_CODE%
90 |
91 | :mainEnd
92 | if "%OS%"=="Windows_NT" endlocal
93 |
94 | :omega
95 |
--------------------------------------------------------------------------------
/example/android/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement { includeBuild("../node_modules/@react-native/gradle-plugin") }
2 | plugins { id("com.facebook.react.settings") }
3 | extensions.configure(com.facebook.react.ReactSettingsExtension){ ex -> ex.autolinkLibrariesFromCommand() }
4 | rootProject.name = 'example'
5 | include ':app'
6 | includeBuild('../node_modules/@react-native/gradle-plugin')
7 |
--------------------------------------------------------------------------------
/example/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "displayName": "example"
4 | }
5 |
--------------------------------------------------------------------------------
/example/assets/1.sm.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/assets/1.sm.webp
--------------------------------------------------------------------------------
/example/assets/3.sm.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/assets/3.sm.webp
--------------------------------------------------------------------------------
/example/assets/animated-webp-supported.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aleksefo/react-native-webp-format/80fa669ef87a5dc5380a0ca778160dd1e1195524/example/assets/animated-webp-supported.webp
--------------------------------------------------------------------------------
/example/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: ['module:@react-native/babel-preset'],
3 | };
4 |
--------------------------------------------------------------------------------
/example/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import {AppRegistry} from 'react-native';
6 | import App from './App';
7 | import {name as appName} from './app.json';
8 |
9 | AppRegistry.registerComponent(appName, () => App);
10 |
--------------------------------------------------------------------------------
/example/ios/.xcode.env:
--------------------------------------------------------------------------------
1 | # This `.xcode.env` file is versioned and is used to source the environment
2 | # used when running script phases inside Xcode.
3 | # To customize your local environment, you can create an `.xcode.env.local`
4 | # file that is not versioned.
5 |
6 | # NODE_BINARY variable contains the PATH to the node executable.
7 | #
8 | # Customize the NODE_BINARY variable here.
9 | # For example, to use nvm with brew, add the following line
10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use
11 | export NODE_BINARY=$(command -v node)
12 |
--------------------------------------------------------------------------------
/example/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Resolve react_native_pods.rb with node to allow for hoisting
2 | require Pod::Executable.execute_command('node', ['-p',
3 | 'require.resolve(
4 | "react-native/scripts/react_native_pods.rb",
5 | {paths: [process.argv[1]]},
6 | )', __dir__]).strip
7 |
8 | platform :ios, min_ios_version_supported
9 | prepare_react_native_project!
10 |
11 | linkage = ENV['USE_FRAMEWORKS']
12 | if linkage != nil
13 | Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
14 | use_frameworks! :linkage => linkage.to_sym
15 | end
16 |
17 | target 'example' do
18 | config = use_native_modules!
19 |
20 | use_react_native!(
21 | :path => config[:reactNativePath],
22 | # An absolute path to your application root.
23 | :app_path => "#{Pod::Config.instance.installation_root}/.."
24 | )
25 |
26 | post_install do |installer|
27 | # https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
28 | react_native_post_install(
29 | installer,
30 | config[:reactNativePath],
31 | :mac_catalyst_enabled => false,
32 | # :ccache_enabled => true
33 | )
34 | end
35 | end
36 |
--------------------------------------------------------------------------------
/example/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost (1.84.0)
3 | - DoubleConversion (1.1.6)
4 | - fast_float (6.1.4)
5 | - FBLazyVector (0.78.0)
6 | - fmt (11.0.2)
7 | - glog (0.3.5)
8 | - hermes-engine (0.78.0):
9 | - hermes-engine/Pre-built (= 0.78.0)
10 | - hermes-engine/Pre-built (0.78.0)
11 | - libwebp (1.5.0):
12 | - libwebp/demux (= 1.5.0)
13 | - libwebp/mux (= 1.5.0)
14 | - libwebp/sharpyuv (= 1.5.0)
15 | - libwebp/webp (= 1.5.0)
16 | - libwebp/demux (1.5.0):
17 | - libwebp/webp
18 | - libwebp/mux (1.5.0):
19 | - libwebp/demux
20 | - libwebp/sharpyuv (1.5.0)
21 | - libwebp/webp (1.5.0):
22 | - libwebp/sharpyuv
23 | - RCT-Folly (2024.11.18.00):
24 | - boost
25 | - DoubleConversion
26 | - fast_float (= 6.1.4)
27 | - fmt (= 11.0.2)
28 | - glog
29 | - RCT-Folly/Default (= 2024.11.18.00)
30 | - RCT-Folly/Default (2024.11.18.00):
31 | - boost
32 | - DoubleConversion
33 | - fast_float (= 6.1.4)
34 | - fmt (= 11.0.2)
35 | - glog
36 | - RCT-Folly/Fabric (2024.11.18.00):
37 | - boost
38 | - DoubleConversion
39 | - fast_float (= 6.1.4)
40 | - fmt (= 11.0.2)
41 | - glog
42 | - RCTDeprecation (0.78.0)
43 | - RCTRequired (0.78.0)
44 | - RCTTypeSafety (0.78.0):
45 | - FBLazyVector (= 0.78.0)
46 | - RCTRequired (= 0.78.0)
47 | - React-Core (= 0.78.0)
48 | - React (0.78.0):
49 | - React-Core (= 0.78.0)
50 | - React-Core/DevSupport (= 0.78.0)
51 | - React-Core/RCTWebSocket (= 0.78.0)
52 | - React-RCTActionSheet (= 0.78.0)
53 | - React-RCTAnimation (= 0.78.0)
54 | - React-RCTBlob (= 0.78.0)
55 | - React-RCTImage (= 0.78.0)
56 | - React-RCTLinking (= 0.78.0)
57 | - React-RCTNetwork (= 0.78.0)
58 | - React-RCTSettings (= 0.78.0)
59 | - React-RCTText (= 0.78.0)
60 | - React-RCTVibration (= 0.78.0)
61 | - React-callinvoker (0.78.0)
62 | - React-Core (0.78.0):
63 | - glog
64 | - hermes-engine
65 | - RCT-Folly (= 2024.11.18.00)
66 | - RCTDeprecation
67 | - React-Core/Default (= 0.78.0)
68 | - React-cxxreact
69 | - React-featureflags
70 | - React-hermes
71 | - React-jsi
72 | - React-jsiexecutor
73 | - React-jsinspector
74 | - React-perflogger
75 | - React-runtimescheduler
76 | - React-utils
77 | - SocketRocket (= 0.7.1)
78 | - Yoga
79 | - React-Core/CoreModulesHeaders (0.78.0):
80 | - glog
81 | - hermes-engine
82 | - RCT-Folly (= 2024.11.18.00)
83 | - RCTDeprecation
84 | - React-Core/Default
85 | - React-cxxreact
86 | - React-featureflags
87 | - React-hermes
88 | - React-jsi
89 | - React-jsiexecutor
90 | - React-jsinspector
91 | - React-perflogger
92 | - React-runtimescheduler
93 | - React-utils
94 | - SocketRocket (= 0.7.1)
95 | - Yoga
96 | - React-Core/Default (0.78.0):
97 | - glog
98 | - hermes-engine
99 | - RCT-Folly (= 2024.11.18.00)
100 | - RCTDeprecation
101 | - React-cxxreact
102 | - React-featureflags
103 | - React-hermes
104 | - React-jsi
105 | - React-jsiexecutor
106 | - React-jsinspector
107 | - React-perflogger
108 | - React-runtimescheduler
109 | - React-utils
110 | - SocketRocket (= 0.7.1)
111 | - Yoga
112 | - React-Core/DevSupport (0.78.0):
113 | - glog
114 | - hermes-engine
115 | - RCT-Folly (= 2024.11.18.00)
116 | - RCTDeprecation
117 | - React-Core/Default (= 0.78.0)
118 | - React-Core/RCTWebSocket (= 0.78.0)
119 | - React-cxxreact
120 | - React-featureflags
121 | - React-hermes
122 | - React-jsi
123 | - React-jsiexecutor
124 | - React-jsinspector
125 | - React-perflogger
126 | - React-runtimescheduler
127 | - React-utils
128 | - SocketRocket (= 0.7.1)
129 | - Yoga
130 | - React-Core/RCTActionSheetHeaders (0.78.0):
131 | - glog
132 | - hermes-engine
133 | - RCT-Folly (= 2024.11.18.00)
134 | - RCTDeprecation
135 | - React-Core/Default
136 | - React-cxxreact
137 | - React-featureflags
138 | - React-hermes
139 | - React-jsi
140 | - React-jsiexecutor
141 | - React-jsinspector
142 | - React-perflogger
143 | - React-runtimescheduler
144 | - React-utils
145 | - SocketRocket (= 0.7.1)
146 | - Yoga
147 | - React-Core/RCTAnimationHeaders (0.78.0):
148 | - glog
149 | - hermes-engine
150 | - RCT-Folly (= 2024.11.18.00)
151 | - RCTDeprecation
152 | - React-Core/Default
153 | - React-cxxreact
154 | - React-featureflags
155 | - React-hermes
156 | - React-jsi
157 | - React-jsiexecutor
158 | - React-jsinspector
159 | - React-perflogger
160 | - React-runtimescheduler
161 | - React-utils
162 | - SocketRocket (= 0.7.1)
163 | - Yoga
164 | - React-Core/RCTBlobHeaders (0.78.0):
165 | - glog
166 | - hermes-engine
167 | - RCT-Folly (= 2024.11.18.00)
168 | - RCTDeprecation
169 | - React-Core/Default
170 | - React-cxxreact
171 | - React-featureflags
172 | - React-hermes
173 | - React-jsi
174 | - React-jsiexecutor
175 | - React-jsinspector
176 | - React-perflogger
177 | - React-runtimescheduler
178 | - React-utils
179 | - SocketRocket (= 0.7.1)
180 | - Yoga
181 | - React-Core/RCTImageHeaders (0.78.0):
182 | - glog
183 | - hermes-engine
184 | - RCT-Folly (= 2024.11.18.00)
185 | - RCTDeprecation
186 | - React-Core/Default
187 | - React-cxxreact
188 | - React-featureflags
189 | - React-hermes
190 | - React-jsi
191 | - React-jsiexecutor
192 | - React-jsinspector
193 | - React-perflogger
194 | - React-runtimescheduler
195 | - React-utils
196 | - SocketRocket (= 0.7.1)
197 | - Yoga
198 | - React-Core/RCTLinkingHeaders (0.78.0):
199 | - glog
200 | - hermes-engine
201 | - RCT-Folly (= 2024.11.18.00)
202 | - RCTDeprecation
203 | - React-Core/Default
204 | - React-cxxreact
205 | - React-featureflags
206 | - React-hermes
207 | - React-jsi
208 | - React-jsiexecutor
209 | - React-jsinspector
210 | - React-perflogger
211 | - React-runtimescheduler
212 | - React-utils
213 | - SocketRocket (= 0.7.1)
214 | - Yoga
215 | - React-Core/RCTNetworkHeaders (0.78.0):
216 | - glog
217 | - hermes-engine
218 | - RCT-Folly (= 2024.11.18.00)
219 | - RCTDeprecation
220 | - React-Core/Default
221 | - React-cxxreact
222 | - React-featureflags
223 | - React-hermes
224 | - React-jsi
225 | - React-jsiexecutor
226 | - React-jsinspector
227 | - React-perflogger
228 | - React-runtimescheduler
229 | - React-utils
230 | - SocketRocket (= 0.7.1)
231 | - Yoga
232 | - React-Core/RCTSettingsHeaders (0.78.0):
233 | - glog
234 | - hermes-engine
235 | - RCT-Folly (= 2024.11.18.00)
236 | - RCTDeprecation
237 | - React-Core/Default
238 | - React-cxxreact
239 | - React-featureflags
240 | - React-hermes
241 | - React-jsi
242 | - React-jsiexecutor
243 | - React-jsinspector
244 | - React-perflogger
245 | - React-runtimescheduler
246 | - React-utils
247 | - SocketRocket (= 0.7.1)
248 | - Yoga
249 | - React-Core/RCTTextHeaders (0.78.0):
250 | - glog
251 | - hermes-engine
252 | - RCT-Folly (= 2024.11.18.00)
253 | - RCTDeprecation
254 | - React-Core/Default
255 | - React-cxxreact
256 | - React-featureflags
257 | - React-hermes
258 | - React-jsi
259 | - React-jsiexecutor
260 | - React-jsinspector
261 | - React-perflogger
262 | - React-runtimescheduler
263 | - React-utils
264 | - SocketRocket (= 0.7.1)
265 | - Yoga
266 | - React-Core/RCTVibrationHeaders (0.78.0):
267 | - glog
268 | - hermes-engine
269 | - RCT-Folly (= 2024.11.18.00)
270 | - RCTDeprecation
271 | - React-Core/Default
272 | - React-cxxreact
273 | - React-featureflags
274 | - React-hermes
275 | - React-jsi
276 | - React-jsiexecutor
277 | - React-jsinspector
278 | - React-perflogger
279 | - React-runtimescheduler
280 | - React-utils
281 | - SocketRocket (= 0.7.1)
282 | - Yoga
283 | - React-Core/RCTWebSocket (0.78.0):
284 | - glog
285 | - hermes-engine
286 | - RCT-Folly (= 2024.11.18.00)
287 | - RCTDeprecation
288 | - React-Core/Default (= 0.78.0)
289 | - React-cxxreact
290 | - React-featureflags
291 | - React-hermes
292 | - React-jsi
293 | - React-jsiexecutor
294 | - React-jsinspector
295 | - React-perflogger
296 | - React-runtimescheduler
297 | - React-utils
298 | - SocketRocket (= 0.7.1)
299 | - Yoga
300 | - React-CoreModules (0.78.0):
301 | - DoubleConversion
302 | - fast_float (= 6.1.4)
303 | - fmt (= 11.0.2)
304 | - RCT-Folly (= 2024.11.18.00)
305 | - RCTTypeSafety (= 0.78.0)
306 | - React-Core/CoreModulesHeaders (= 0.78.0)
307 | - React-jsi (= 0.78.0)
308 | - React-jsinspector
309 | - React-NativeModulesApple
310 | - React-RCTBlob
311 | - React-RCTFBReactNativeSpec
312 | - React-RCTImage (= 0.78.0)
313 | - ReactCommon
314 | - SocketRocket (= 0.7.1)
315 | - React-cxxreact (0.78.0):
316 | - boost
317 | - DoubleConversion
318 | - fast_float (= 6.1.4)
319 | - fmt (= 11.0.2)
320 | - glog
321 | - hermes-engine
322 | - RCT-Folly (= 2024.11.18.00)
323 | - React-callinvoker (= 0.78.0)
324 | - React-debug (= 0.78.0)
325 | - React-jsi (= 0.78.0)
326 | - React-jsinspector
327 | - React-logger (= 0.78.0)
328 | - React-perflogger (= 0.78.0)
329 | - React-runtimeexecutor (= 0.78.0)
330 | - React-timing (= 0.78.0)
331 | - React-debug (0.78.0)
332 | - React-defaultsnativemodule (0.78.0):
333 | - hermes-engine
334 | - RCT-Folly
335 | - React-domnativemodule
336 | - React-featureflagsnativemodule
337 | - React-idlecallbacksnativemodule
338 | - React-jsi
339 | - React-jsiexecutor
340 | - React-microtasksnativemodule
341 | - React-RCTFBReactNativeSpec
342 | - React-domnativemodule (0.78.0):
343 | - hermes-engine
344 | - RCT-Folly
345 | - React-Fabric
346 | - React-FabricComponents
347 | - React-graphics
348 | - React-jsi
349 | - React-jsiexecutor
350 | - React-RCTFBReactNativeSpec
351 | - ReactCommon/turbomodule/core
352 | - Yoga
353 | - React-Fabric (0.78.0):
354 | - DoubleConversion
355 | - fast_float (= 6.1.4)
356 | - fmt (= 11.0.2)
357 | - glog
358 | - hermes-engine
359 | - RCT-Folly/Fabric (= 2024.11.18.00)
360 | - RCTRequired
361 | - RCTTypeSafety
362 | - React-Core
363 | - React-cxxreact
364 | - React-debug
365 | - React-Fabric/animations (= 0.78.0)
366 | - React-Fabric/attributedstring (= 0.78.0)
367 | - React-Fabric/componentregistry (= 0.78.0)
368 | - React-Fabric/componentregistrynative (= 0.78.0)
369 | - React-Fabric/components (= 0.78.0)
370 | - React-Fabric/consistency (= 0.78.0)
371 | - React-Fabric/core (= 0.78.0)
372 | - React-Fabric/dom (= 0.78.0)
373 | - React-Fabric/imagemanager (= 0.78.0)
374 | - React-Fabric/leakchecker (= 0.78.0)
375 | - React-Fabric/mounting (= 0.78.0)
376 | - React-Fabric/observers (= 0.78.0)
377 | - React-Fabric/scheduler (= 0.78.0)
378 | - React-Fabric/telemetry (= 0.78.0)
379 | - React-Fabric/templateprocessor (= 0.78.0)
380 | - React-Fabric/uimanager (= 0.78.0)
381 | - React-featureflags
382 | - React-graphics
383 | - React-jsi
384 | - React-jsiexecutor
385 | - React-logger
386 | - React-rendererdebug
387 | - React-runtimescheduler
388 | - React-utils
389 | - ReactCommon/turbomodule/core
390 | - React-Fabric/animations (0.78.0):
391 | - DoubleConversion
392 | - fast_float (= 6.1.4)
393 | - fmt (= 11.0.2)
394 | - glog
395 | - hermes-engine
396 | - RCT-Folly/Fabric (= 2024.11.18.00)
397 | - RCTRequired
398 | - RCTTypeSafety
399 | - React-Core
400 | - React-cxxreact
401 | - React-debug
402 | - React-featureflags
403 | - React-graphics
404 | - React-jsi
405 | - React-jsiexecutor
406 | - React-logger
407 | - React-rendererdebug
408 | - React-runtimescheduler
409 | - React-utils
410 | - ReactCommon/turbomodule/core
411 | - React-Fabric/attributedstring (0.78.0):
412 | - DoubleConversion
413 | - fast_float (= 6.1.4)
414 | - fmt (= 11.0.2)
415 | - glog
416 | - hermes-engine
417 | - RCT-Folly/Fabric (= 2024.11.18.00)
418 | - RCTRequired
419 | - RCTTypeSafety
420 | - React-Core
421 | - React-cxxreact
422 | - React-debug
423 | - React-featureflags
424 | - React-graphics
425 | - React-jsi
426 | - React-jsiexecutor
427 | - React-logger
428 | - React-rendererdebug
429 | - React-runtimescheduler
430 | - React-utils
431 | - ReactCommon/turbomodule/core
432 | - React-Fabric/componentregistry (0.78.0):
433 | - DoubleConversion
434 | - fast_float (= 6.1.4)
435 | - fmt (= 11.0.2)
436 | - glog
437 | - hermes-engine
438 | - RCT-Folly/Fabric (= 2024.11.18.00)
439 | - RCTRequired
440 | - RCTTypeSafety
441 | - React-Core
442 | - React-cxxreact
443 | - React-debug
444 | - React-featureflags
445 | - React-graphics
446 | - React-jsi
447 | - React-jsiexecutor
448 | - React-logger
449 | - React-rendererdebug
450 | - React-runtimescheduler
451 | - React-utils
452 | - ReactCommon/turbomodule/core
453 | - React-Fabric/componentregistrynative (0.78.0):
454 | - DoubleConversion
455 | - fast_float (= 6.1.4)
456 | - fmt (= 11.0.2)
457 | - glog
458 | - hermes-engine
459 | - RCT-Folly/Fabric (= 2024.11.18.00)
460 | - RCTRequired
461 | - RCTTypeSafety
462 | - React-Core
463 | - React-cxxreact
464 | - React-debug
465 | - React-featureflags
466 | - React-graphics
467 | - React-jsi
468 | - React-jsiexecutor
469 | - React-logger
470 | - React-rendererdebug
471 | - React-runtimescheduler
472 | - React-utils
473 | - ReactCommon/turbomodule/core
474 | - React-Fabric/components (0.78.0):
475 | - DoubleConversion
476 | - fast_float (= 6.1.4)
477 | - fmt (= 11.0.2)
478 | - glog
479 | - hermes-engine
480 | - RCT-Folly/Fabric (= 2024.11.18.00)
481 | - RCTRequired
482 | - RCTTypeSafety
483 | - React-Core
484 | - React-cxxreact
485 | - React-debug
486 | - React-Fabric/components/legacyviewmanagerinterop (= 0.78.0)
487 | - React-Fabric/components/root (= 0.78.0)
488 | - React-Fabric/components/view (= 0.78.0)
489 | - React-featureflags
490 | - React-graphics
491 | - React-jsi
492 | - React-jsiexecutor
493 | - React-logger
494 | - React-rendererdebug
495 | - React-runtimescheduler
496 | - React-utils
497 | - ReactCommon/turbomodule/core
498 | - React-Fabric/components/legacyviewmanagerinterop (0.78.0):
499 | - DoubleConversion
500 | - fast_float (= 6.1.4)
501 | - fmt (= 11.0.2)
502 | - glog
503 | - hermes-engine
504 | - RCT-Folly/Fabric (= 2024.11.18.00)
505 | - RCTRequired
506 | - RCTTypeSafety
507 | - React-Core
508 | - React-cxxreact
509 | - React-debug
510 | - React-featureflags
511 | - React-graphics
512 | - React-jsi
513 | - React-jsiexecutor
514 | - React-logger
515 | - React-rendererdebug
516 | - React-runtimescheduler
517 | - React-utils
518 | - ReactCommon/turbomodule/core
519 | - React-Fabric/components/root (0.78.0):
520 | - DoubleConversion
521 | - fast_float (= 6.1.4)
522 | - fmt (= 11.0.2)
523 | - glog
524 | - hermes-engine
525 | - RCT-Folly/Fabric (= 2024.11.18.00)
526 | - RCTRequired
527 | - RCTTypeSafety
528 | - React-Core
529 | - React-cxxreact
530 | - React-debug
531 | - React-featureflags
532 | - React-graphics
533 | - React-jsi
534 | - React-jsiexecutor
535 | - React-logger
536 | - React-rendererdebug
537 | - React-runtimescheduler
538 | - React-utils
539 | - ReactCommon/turbomodule/core
540 | - React-Fabric/components/view (0.78.0):
541 | - DoubleConversion
542 | - fast_float (= 6.1.4)
543 | - fmt (= 11.0.2)
544 | - glog
545 | - hermes-engine
546 | - RCT-Folly/Fabric (= 2024.11.18.00)
547 | - RCTRequired
548 | - RCTTypeSafety
549 | - React-Core
550 | - React-cxxreact
551 | - React-debug
552 | - React-featureflags
553 | - React-graphics
554 | - React-jsi
555 | - React-jsiexecutor
556 | - React-logger
557 | - React-rendererdebug
558 | - React-runtimescheduler
559 | - React-utils
560 | - ReactCommon/turbomodule/core
561 | - Yoga
562 | - React-Fabric/consistency (0.78.0):
563 | - DoubleConversion
564 | - fast_float (= 6.1.4)
565 | - fmt (= 11.0.2)
566 | - glog
567 | - hermes-engine
568 | - RCT-Folly/Fabric (= 2024.11.18.00)
569 | - RCTRequired
570 | - RCTTypeSafety
571 | - React-Core
572 | - React-cxxreact
573 | - React-debug
574 | - React-featureflags
575 | - React-graphics
576 | - React-jsi
577 | - React-jsiexecutor
578 | - React-logger
579 | - React-rendererdebug
580 | - React-runtimescheduler
581 | - React-utils
582 | - ReactCommon/turbomodule/core
583 | - React-Fabric/core (0.78.0):
584 | - DoubleConversion
585 | - fast_float (= 6.1.4)
586 | - fmt (= 11.0.2)
587 | - glog
588 | - hermes-engine
589 | - RCT-Folly/Fabric (= 2024.11.18.00)
590 | - RCTRequired
591 | - RCTTypeSafety
592 | - React-Core
593 | - React-cxxreact
594 | - React-debug
595 | - React-featureflags
596 | - React-graphics
597 | - React-jsi
598 | - React-jsiexecutor
599 | - React-logger
600 | - React-rendererdebug
601 | - React-runtimescheduler
602 | - React-utils
603 | - ReactCommon/turbomodule/core
604 | - React-Fabric/dom (0.78.0):
605 | - DoubleConversion
606 | - fast_float (= 6.1.4)
607 | - fmt (= 11.0.2)
608 | - glog
609 | - hermes-engine
610 | - RCT-Folly/Fabric (= 2024.11.18.00)
611 | - RCTRequired
612 | - RCTTypeSafety
613 | - React-Core
614 | - React-cxxreact
615 | - React-debug
616 | - React-featureflags
617 | - React-graphics
618 | - React-jsi
619 | - React-jsiexecutor
620 | - React-logger
621 | - React-rendererdebug
622 | - React-runtimescheduler
623 | - React-utils
624 | - ReactCommon/turbomodule/core
625 | - React-Fabric/imagemanager (0.78.0):
626 | - DoubleConversion
627 | - fast_float (= 6.1.4)
628 | - fmt (= 11.0.2)
629 | - glog
630 | - hermes-engine
631 | - RCT-Folly/Fabric (= 2024.11.18.00)
632 | - RCTRequired
633 | - RCTTypeSafety
634 | - React-Core
635 | - React-cxxreact
636 | - React-debug
637 | - React-featureflags
638 | - React-graphics
639 | - React-jsi
640 | - React-jsiexecutor
641 | - React-logger
642 | - React-rendererdebug
643 | - React-runtimescheduler
644 | - React-utils
645 | - ReactCommon/turbomodule/core
646 | - React-Fabric/leakchecker (0.78.0):
647 | - DoubleConversion
648 | - fast_float (= 6.1.4)
649 | - fmt (= 11.0.2)
650 | - glog
651 | - hermes-engine
652 | - RCT-Folly/Fabric (= 2024.11.18.00)
653 | - RCTRequired
654 | - RCTTypeSafety
655 | - React-Core
656 | - React-cxxreact
657 | - React-debug
658 | - React-featureflags
659 | - React-graphics
660 | - React-jsi
661 | - React-jsiexecutor
662 | - React-logger
663 | - React-rendererdebug
664 | - React-runtimescheduler
665 | - React-utils
666 | - ReactCommon/turbomodule/core
667 | - React-Fabric/mounting (0.78.0):
668 | - DoubleConversion
669 | - fast_float (= 6.1.4)
670 | - fmt (= 11.0.2)
671 | - glog
672 | - hermes-engine
673 | - RCT-Folly/Fabric (= 2024.11.18.00)
674 | - RCTRequired
675 | - RCTTypeSafety
676 | - React-Core
677 | - React-cxxreact
678 | - React-debug
679 | - React-featureflags
680 | - React-graphics
681 | - React-jsi
682 | - React-jsiexecutor
683 | - React-logger
684 | - React-rendererdebug
685 | - React-runtimescheduler
686 | - React-utils
687 | - ReactCommon/turbomodule/core
688 | - React-Fabric/observers (0.78.0):
689 | - DoubleConversion
690 | - fast_float (= 6.1.4)
691 | - fmt (= 11.0.2)
692 | - glog
693 | - hermes-engine
694 | - RCT-Folly/Fabric (= 2024.11.18.00)
695 | - RCTRequired
696 | - RCTTypeSafety
697 | - React-Core
698 | - React-cxxreact
699 | - React-debug
700 | - React-Fabric/observers/events (= 0.78.0)
701 | - React-featureflags
702 | - React-graphics
703 | - React-jsi
704 | - React-jsiexecutor
705 | - React-logger
706 | - React-rendererdebug
707 | - React-runtimescheduler
708 | - React-utils
709 | - ReactCommon/turbomodule/core
710 | - React-Fabric/observers/events (0.78.0):
711 | - DoubleConversion
712 | - fast_float (= 6.1.4)
713 | - fmt (= 11.0.2)
714 | - glog
715 | - hermes-engine
716 | - RCT-Folly/Fabric (= 2024.11.18.00)
717 | - RCTRequired
718 | - RCTTypeSafety
719 | - React-Core
720 | - React-cxxreact
721 | - React-debug
722 | - React-featureflags
723 | - React-graphics
724 | - React-jsi
725 | - React-jsiexecutor
726 | - React-logger
727 | - React-rendererdebug
728 | - React-runtimescheduler
729 | - React-utils
730 | - ReactCommon/turbomodule/core
731 | - React-Fabric/scheduler (0.78.0):
732 | - DoubleConversion
733 | - fast_float (= 6.1.4)
734 | - fmt (= 11.0.2)
735 | - glog
736 | - hermes-engine
737 | - RCT-Folly/Fabric (= 2024.11.18.00)
738 | - RCTRequired
739 | - RCTTypeSafety
740 | - React-Core
741 | - React-cxxreact
742 | - React-debug
743 | - React-Fabric/observers/events
744 | - React-featureflags
745 | - React-graphics
746 | - React-jsi
747 | - React-jsiexecutor
748 | - React-logger
749 | - React-performancetimeline
750 | - React-rendererdebug
751 | - React-runtimescheduler
752 | - React-utils
753 | - ReactCommon/turbomodule/core
754 | - React-Fabric/telemetry (0.78.0):
755 | - DoubleConversion
756 | - fast_float (= 6.1.4)
757 | - fmt (= 11.0.2)
758 | - glog
759 | - hermes-engine
760 | - RCT-Folly/Fabric (= 2024.11.18.00)
761 | - RCTRequired
762 | - RCTTypeSafety
763 | - React-Core
764 | - React-cxxreact
765 | - React-debug
766 | - React-featureflags
767 | - React-graphics
768 | - React-jsi
769 | - React-jsiexecutor
770 | - React-logger
771 | - React-rendererdebug
772 | - React-runtimescheduler
773 | - React-utils
774 | - ReactCommon/turbomodule/core
775 | - React-Fabric/templateprocessor (0.78.0):
776 | - DoubleConversion
777 | - fast_float (= 6.1.4)
778 | - fmt (= 11.0.2)
779 | - glog
780 | - hermes-engine
781 | - RCT-Folly/Fabric (= 2024.11.18.00)
782 | - RCTRequired
783 | - RCTTypeSafety
784 | - React-Core
785 | - React-cxxreact
786 | - React-debug
787 | - React-featureflags
788 | - React-graphics
789 | - React-jsi
790 | - React-jsiexecutor
791 | - React-logger
792 | - React-rendererdebug
793 | - React-runtimescheduler
794 | - React-utils
795 | - ReactCommon/turbomodule/core
796 | - React-Fabric/uimanager (0.78.0):
797 | - DoubleConversion
798 | - fast_float (= 6.1.4)
799 | - fmt (= 11.0.2)
800 | - glog
801 | - hermes-engine
802 | - RCT-Folly/Fabric (= 2024.11.18.00)
803 | - RCTRequired
804 | - RCTTypeSafety
805 | - React-Core
806 | - React-cxxreact
807 | - React-debug
808 | - React-Fabric/uimanager/consistency (= 0.78.0)
809 | - React-featureflags
810 | - React-graphics
811 | - React-jsi
812 | - React-jsiexecutor
813 | - React-logger
814 | - React-rendererconsistency
815 | - React-rendererdebug
816 | - React-runtimescheduler
817 | - React-utils
818 | - ReactCommon/turbomodule/core
819 | - React-Fabric/uimanager/consistency (0.78.0):
820 | - DoubleConversion
821 | - fast_float (= 6.1.4)
822 | - fmt (= 11.0.2)
823 | - glog
824 | - hermes-engine
825 | - RCT-Folly/Fabric (= 2024.11.18.00)
826 | - RCTRequired
827 | - RCTTypeSafety
828 | - React-Core
829 | - React-cxxreact
830 | - React-debug
831 | - React-featureflags
832 | - React-graphics
833 | - React-jsi
834 | - React-jsiexecutor
835 | - React-logger
836 | - React-rendererconsistency
837 | - React-rendererdebug
838 | - React-runtimescheduler
839 | - React-utils
840 | - ReactCommon/turbomodule/core
841 | - React-FabricComponents (0.78.0):
842 | - DoubleConversion
843 | - fast_float (= 6.1.4)
844 | - fmt (= 11.0.2)
845 | - glog
846 | - hermes-engine
847 | - RCT-Folly/Fabric (= 2024.11.18.00)
848 | - RCTRequired
849 | - RCTTypeSafety
850 | - React-Core
851 | - React-cxxreact
852 | - React-debug
853 | - React-Fabric
854 | - React-FabricComponents/components (= 0.78.0)
855 | - React-FabricComponents/textlayoutmanager (= 0.78.0)
856 | - React-featureflags
857 | - React-graphics
858 | - React-jsi
859 | - React-jsiexecutor
860 | - React-logger
861 | - React-rendererdebug
862 | - React-runtimescheduler
863 | - React-utils
864 | - ReactCommon/turbomodule/core
865 | - Yoga
866 | - React-FabricComponents/components (0.78.0):
867 | - DoubleConversion
868 | - fast_float (= 6.1.4)
869 | - fmt (= 11.0.2)
870 | - glog
871 | - hermes-engine
872 | - RCT-Folly/Fabric (= 2024.11.18.00)
873 | - RCTRequired
874 | - RCTTypeSafety
875 | - React-Core
876 | - React-cxxreact
877 | - React-debug
878 | - React-Fabric
879 | - React-FabricComponents/components/inputaccessory (= 0.78.0)
880 | - React-FabricComponents/components/iostextinput (= 0.78.0)
881 | - React-FabricComponents/components/modal (= 0.78.0)
882 | - React-FabricComponents/components/rncore (= 0.78.0)
883 | - React-FabricComponents/components/safeareaview (= 0.78.0)
884 | - React-FabricComponents/components/scrollview (= 0.78.0)
885 | - React-FabricComponents/components/text (= 0.78.0)
886 | - React-FabricComponents/components/textinput (= 0.78.0)
887 | - React-FabricComponents/components/unimplementedview (= 0.78.0)
888 | - React-featureflags
889 | - React-graphics
890 | - React-jsi
891 | - React-jsiexecutor
892 | - React-logger
893 | - React-rendererdebug
894 | - React-runtimescheduler
895 | - React-utils
896 | - ReactCommon/turbomodule/core
897 | - Yoga
898 | - React-FabricComponents/components/inputaccessory (0.78.0):
899 | - DoubleConversion
900 | - fast_float (= 6.1.4)
901 | - fmt (= 11.0.2)
902 | - glog
903 | - hermes-engine
904 | - RCT-Folly/Fabric (= 2024.11.18.00)
905 | - RCTRequired
906 | - RCTTypeSafety
907 | - React-Core
908 | - React-cxxreact
909 | - React-debug
910 | - React-Fabric
911 | - React-featureflags
912 | - React-graphics
913 | - React-jsi
914 | - React-jsiexecutor
915 | - React-logger
916 | - React-rendererdebug
917 | - React-runtimescheduler
918 | - React-utils
919 | - ReactCommon/turbomodule/core
920 | - Yoga
921 | - React-FabricComponents/components/iostextinput (0.78.0):
922 | - DoubleConversion
923 | - fast_float (= 6.1.4)
924 | - fmt (= 11.0.2)
925 | - glog
926 | - hermes-engine
927 | - RCT-Folly/Fabric (= 2024.11.18.00)
928 | - RCTRequired
929 | - RCTTypeSafety
930 | - React-Core
931 | - React-cxxreact
932 | - React-debug
933 | - React-Fabric
934 | - React-featureflags
935 | - React-graphics
936 | - React-jsi
937 | - React-jsiexecutor
938 | - React-logger
939 | - React-rendererdebug
940 | - React-runtimescheduler
941 | - React-utils
942 | - ReactCommon/turbomodule/core
943 | - Yoga
944 | - React-FabricComponents/components/modal (0.78.0):
945 | - DoubleConversion
946 | - fast_float (= 6.1.4)
947 | - fmt (= 11.0.2)
948 | - glog
949 | - hermes-engine
950 | - RCT-Folly/Fabric (= 2024.11.18.00)
951 | - RCTRequired
952 | - RCTTypeSafety
953 | - React-Core
954 | - React-cxxreact
955 | - React-debug
956 | - React-Fabric
957 | - React-featureflags
958 | - React-graphics
959 | - React-jsi
960 | - React-jsiexecutor
961 | - React-logger
962 | - React-rendererdebug
963 | - React-runtimescheduler
964 | - React-utils
965 | - ReactCommon/turbomodule/core
966 | - Yoga
967 | - React-FabricComponents/components/rncore (0.78.0):
968 | - DoubleConversion
969 | - fast_float (= 6.1.4)
970 | - fmt (= 11.0.2)
971 | - glog
972 | - hermes-engine
973 | - RCT-Folly/Fabric (= 2024.11.18.00)
974 | - RCTRequired
975 | - RCTTypeSafety
976 | - React-Core
977 | - React-cxxreact
978 | - React-debug
979 | - React-Fabric
980 | - React-featureflags
981 | - React-graphics
982 | - React-jsi
983 | - React-jsiexecutor
984 | - React-logger
985 | - React-rendererdebug
986 | - React-runtimescheduler
987 | - React-utils
988 | - ReactCommon/turbomodule/core
989 | - Yoga
990 | - React-FabricComponents/components/safeareaview (0.78.0):
991 | - DoubleConversion
992 | - fast_float (= 6.1.4)
993 | - fmt (= 11.0.2)
994 | - glog
995 | - hermes-engine
996 | - RCT-Folly/Fabric (= 2024.11.18.00)
997 | - RCTRequired
998 | - RCTTypeSafety
999 | - React-Core
1000 | - React-cxxreact
1001 | - React-debug
1002 | - React-Fabric
1003 | - React-featureflags
1004 | - React-graphics
1005 | - React-jsi
1006 | - React-jsiexecutor
1007 | - React-logger
1008 | - React-rendererdebug
1009 | - React-runtimescheduler
1010 | - React-utils
1011 | - ReactCommon/turbomodule/core
1012 | - Yoga
1013 | - React-FabricComponents/components/scrollview (0.78.0):
1014 | - DoubleConversion
1015 | - fast_float (= 6.1.4)
1016 | - fmt (= 11.0.2)
1017 | - glog
1018 | - hermes-engine
1019 | - RCT-Folly/Fabric (= 2024.11.18.00)
1020 | - RCTRequired
1021 | - RCTTypeSafety
1022 | - React-Core
1023 | - React-cxxreact
1024 | - React-debug
1025 | - React-Fabric
1026 | - React-featureflags
1027 | - React-graphics
1028 | - React-jsi
1029 | - React-jsiexecutor
1030 | - React-logger
1031 | - React-rendererdebug
1032 | - React-runtimescheduler
1033 | - React-utils
1034 | - ReactCommon/turbomodule/core
1035 | - Yoga
1036 | - React-FabricComponents/components/text (0.78.0):
1037 | - DoubleConversion
1038 | - fast_float (= 6.1.4)
1039 | - fmt (= 11.0.2)
1040 | - glog
1041 | - hermes-engine
1042 | - RCT-Folly/Fabric (= 2024.11.18.00)
1043 | - RCTRequired
1044 | - RCTTypeSafety
1045 | - React-Core
1046 | - React-cxxreact
1047 | - React-debug
1048 | - React-Fabric
1049 | - React-featureflags
1050 | - React-graphics
1051 | - React-jsi
1052 | - React-jsiexecutor
1053 | - React-logger
1054 | - React-rendererdebug
1055 | - React-runtimescheduler
1056 | - React-utils
1057 | - ReactCommon/turbomodule/core
1058 | - Yoga
1059 | - React-FabricComponents/components/textinput (0.78.0):
1060 | - DoubleConversion
1061 | - fast_float (= 6.1.4)
1062 | - fmt (= 11.0.2)
1063 | - glog
1064 | - hermes-engine
1065 | - RCT-Folly/Fabric (= 2024.11.18.00)
1066 | - RCTRequired
1067 | - RCTTypeSafety
1068 | - React-Core
1069 | - React-cxxreact
1070 | - React-debug
1071 | - React-Fabric
1072 | - React-featureflags
1073 | - React-graphics
1074 | - React-jsi
1075 | - React-jsiexecutor
1076 | - React-logger
1077 | - React-rendererdebug
1078 | - React-runtimescheduler
1079 | - React-utils
1080 | - ReactCommon/turbomodule/core
1081 | - Yoga
1082 | - React-FabricComponents/components/unimplementedview (0.78.0):
1083 | - DoubleConversion
1084 | - fast_float (= 6.1.4)
1085 | - fmt (= 11.0.2)
1086 | - glog
1087 | - hermes-engine
1088 | - RCT-Folly/Fabric (= 2024.11.18.00)
1089 | - RCTRequired
1090 | - RCTTypeSafety
1091 | - React-Core
1092 | - React-cxxreact
1093 | - React-debug
1094 | - React-Fabric
1095 | - React-featureflags
1096 | - React-graphics
1097 | - React-jsi
1098 | - React-jsiexecutor
1099 | - React-logger
1100 | - React-rendererdebug
1101 | - React-runtimescheduler
1102 | - React-utils
1103 | - ReactCommon/turbomodule/core
1104 | - Yoga
1105 | - React-FabricComponents/textlayoutmanager (0.78.0):
1106 | - DoubleConversion
1107 | - fast_float (= 6.1.4)
1108 | - fmt (= 11.0.2)
1109 | - glog
1110 | - hermes-engine
1111 | - RCT-Folly/Fabric (= 2024.11.18.00)
1112 | - RCTRequired
1113 | - RCTTypeSafety
1114 | - React-Core
1115 | - React-cxxreact
1116 | - React-debug
1117 | - React-Fabric
1118 | - React-featureflags
1119 | - React-graphics
1120 | - React-jsi
1121 | - React-jsiexecutor
1122 | - React-logger
1123 | - React-rendererdebug
1124 | - React-runtimescheduler
1125 | - React-utils
1126 | - ReactCommon/turbomodule/core
1127 | - Yoga
1128 | - React-FabricImage (0.78.0):
1129 | - DoubleConversion
1130 | - fast_float (= 6.1.4)
1131 | - fmt (= 11.0.2)
1132 | - glog
1133 | - hermes-engine
1134 | - RCT-Folly/Fabric (= 2024.11.18.00)
1135 | - RCTRequired (= 0.78.0)
1136 | - RCTTypeSafety (= 0.78.0)
1137 | - React-Fabric
1138 | - React-featureflags
1139 | - React-graphics
1140 | - React-ImageManager
1141 | - React-jsi
1142 | - React-jsiexecutor (= 0.78.0)
1143 | - React-logger
1144 | - React-rendererdebug
1145 | - React-utils
1146 | - ReactCommon
1147 | - Yoga
1148 | - React-featureflags (0.78.0):
1149 | - RCT-Folly (= 2024.11.18.00)
1150 | - React-featureflagsnativemodule (0.78.0):
1151 | - hermes-engine
1152 | - RCT-Folly
1153 | - React-featureflags
1154 | - React-jsi
1155 | - React-jsiexecutor
1156 | - React-RCTFBReactNativeSpec
1157 | - ReactCommon/turbomodule/core
1158 | - React-graphics (0.78.0):
1159 | - DoubleConversion
1160 | - fast_float (= 6.1.4)
1161 | - fmt (= 11.0.2)
1162 | - glog
1163 | - hermes-engine
1164 | - RCT-Folly/Fabric (= 2024.11.18.00)
1165 | - React-jsi
1166 | - React-jsiexecutor
1167 | - React-utils
1168 | - React-hermes (0.78.0):
1169 | - DoubleConversion
1170 | - fast_float (= 6.1.4)
1171 | - fmt (= 11.0.2)
1172 | - glog
1173 | - hermes-engine
1174 | - RCT-Folly (= 2024.11.18.00)
1175 | - React-cxxreact (= 0.78.0)
1176 | - React-jsi
1177 | - React-jsiexecutor (= 0.78.0)
1178 | - React-jsinspector
1179 | - React-perflogger (= 0.78.0)
1180 | - React-runtimeexecutor
1181 | - React-idlecallbacksnativemodule (0.78.0):
1182 | - glog
1183 | - hermes-engine
1184 | - RCT-Folly
1185 | - React-jsi
1186 | - React-jsiexecutor
1187 | - React-RCTFBReactNativeSpec
1188 | - React-runtimescheduler
1189 | - ReactCommon/turbomodule/core
1190 | - React-ImageManager (0.78.0):
1191 | - glog
1192 | - RCT-Folly/Fabric
1193 | - React-Core/Default
1194 | - React-debug
1195 | - React-Fabric
1196 | - React-graphics
1197 | - React-rendererdebug
1198 | - React-utils
1199 | - React-jserrorhandler (0.78.0):
1200 | - glog
1201 | - hermes-engine
1202 | - RCT-Folly/Fabric (= 2024.11.18.00)
1203 | - React-cxxreact
1204 | - React-debug
1205 | - React-featureflags
1206 | - React-jsi
1207 | - ReactCommon/turbomodule/bridging
1208 | - React-jsi (0.78.0):
1209 | - boost
1210 | - DoubleConversion
1211 | - fast_float (= 6.1.4)
1212 | - fmt (= 11.0.2)
1213 | - glog
1214 | - hermes-engine
1215 | - RCT-Folly (= 2024.11.18.00)
1216 | - React-jsiexecutor (0.78.0):
1217 | - DoubleConversion
1218 | - fast_float (= 6.1.4)
1219 | - fmt (= 11.0.2)
1220 | - glog
1221 | - hermes-engine
1222 | - RCT-Folly (= 2024.11.18.00)
1223 | - React-cxxreact (= 0.78.0)
1224 | - React-jsi (= 0.78.0)
1225 | - React-jsinspector
1226 | - React-perflogger (= 0.78.0)
1227 | - React-jsinspector (0.78.0):
1228 | - DoubleConversion
1229 | - glog
1230 | - hermes-engine
1231 | - RCT-Folly
1232 | - React-featureflags
1233 | - React-jsi
1234 | - React-jsinspectortracing
1235 | - React-perflogger (= 0.78.0)
1236 | - React-runtimeexecutor (= 0.78.0)
1237 | - React-jsinspectortracing (0.78.0):
1238 | - RCT-Folly
1239 | - React-jsitracing (0.78.0):
1240 | - React-jsi
1241 | - React-logger (0.78.0):
1242 | - glog
1243 | - React-Mapbuffer (0.78.0):
1244 | - glog
1245 | - React-debug
1246 | - React-microtasksnativemodule (0.78.0):
1247 | - hermes-engine
1248 | - RCT-Folly
1249 | - React-jsi
1250 | - React-jsiexecutor
1251 | - React-RCTFBReactNativeSpec
1252 | - ReactCommon/turbomodule/core
1253 | - React-NativeModulesApple (0.78.0):
1254 | - glog
1255 | - hermes-engine
1256 | - React-callinvoker
1257 | - React-Core
1258 | - React-cxxreact
1259 | - React-jsi
1260 | - React-jsinspector
1261 | - React-runtimeexecutor
1262 | - ReactCommon/turbomodule/bridging
1263 | - ReactCommon/turbomodule/core
1264 | - React-perflogger (0.78.0):
1265 | - DoubleConversion
1266 | - RCT-Folly (= 2024.11.18.00)
1267 | - React-performancetimeline (0.78.0):
1268 | - RCT-Folly (= 2024.11.18.00)
1269 | - React-cxxreact
1270 | - React-featureflags
1271 | - React-jsinspectortracing
1272 | - React-timing
1273 | - React-RCTActionSheet (0.78.0):
1274 | - React-Core/RCTActionSheetHeaders (= 0.78.0)
1275 | - React-RCTAnimation (0.78.0):
1276 | - RCT-Folly (= 2024.11.18.00)
1277 | - RCTTypeSafety
1278 | - React-Core/RCTAnimationHeaders
1279 | - React-jsi
1280 | - React-NativeModulesApple
1281 | - React-RCTFBReactNativeSpec
1282 | - ReactCommon
1283 | - React-RCTAppDelegate (0.78.0):
1284 | - RCT-Folly (= 2024.11.18.00)
1285 | - RCTRequired
1286 | - RCTTypeSafety
1287 | - React-Core
1288 | - React-CoreModules
1289 | - React-debug
1290 | - React-defaultsnativemodule
1291 | - React-Fabric
1292 | - React-featureflags
1293 | - React-graphics
1294 | - React-hermes
1295 | - React-NativeModulesApple
1296 | - React-RCTFabric
1297 | - React-RCTFBReactNativeSpec
1298 | - React-RCTImage
1299 | - React-RCTNetwork
1300 | - React-rendererdebug
1301 | - React-RuntimeApple
1302 | - React-RuntimeCore
1303 | - React-RuntimeHermes
1304 | - React-runtimescheduler
1305 | - React-utils
1306 | - ReactCommon
1307 | - React-RCTBlob (0.78.0):
1308 | - DoubleConversion
1309 | - fast_float (= 6.1.4)
1310 | - fmt (= 11.0.2)
1311 | - hermes-engine
1312 | - RCT-Folly (= 2024.11.18.00)
1313 | - React-Core/RCTBlobHeaders
1314 | - React-Core/RCTWebSocket
1315 | - React-jsi
1316 | - React-jsinspector
1317 | - React-NativeModulesApple
1318 | - React-RCTFBReactNativeSpec
1319 | - React-RCTNetwork
1320 | - ReactCommon
1321 | - React-RCTFabric (0.78.0):
1322 | - glog
1323 | - hermes-engine
1324 | - RCT-Folly/Fabric (= 2024.11.18.00)
1325 | - React-Core
1326 | - React-debug
1327 | - React-Fabric
1328 | - React-FabricComponents
1329 | - React-FabricImage
1330 | - React-featureflags
1331 | - React-graphics
1332 | - React-ImageManager
1333 | - React-jsi
1334 | - React-jsinspector
1335 | - React-jsinspectortracing
1336 | - React-performancetimeline
1337 | - React-RCTImage
1338 | - React-RCTText
1339 | - React-rendererconsistency
1340 | - React-rendererdebug
1341 | - React-runtimescheduler
1342 | - React-utils
1343 | - Yoga
1344 | - React-RCTFBReactNativeSpec (0.78.0):
1345 | - hermes-engine
1346 | - RCT-Folly
1347 | - RCTRequired
1348 | - RCTTypeSafety
1349 | - React-Core
1350 | - React-jsi
1351 | - React-jsiexecutor
1352 | - React-NativeModulesApple
1353 | - ReactCommon
1354 | - React-RCTImage (0.78.0):
1355 | - RCT-Folly (= 2024.11.18.00)
1356 | - RCTTypeSafety
1357 | - React-Core/RCTImageHeaders
1358 | - React-jsi
1359 | - React-NativeModulesApple
1360 | - React-RCTFBReactNativeSpec
1361 | - React-RCTNetwork
1362 | - ReactCommon
1363 | - React-RCTLinking (0.78.0):
1364 | - React-Core/RCTLinkingHeaders (= 0.78.0)
1365 | - React-jsi (= 0.78.0)
1366 | - React-NativeModulesApple
1367 | - React-RCTFBReactNativeSpec
1368 | - ReactCommon
1369 | - ReactCommon/turbomodule/core (= 0.78.0)
1370 | - React-RCTNetwork (0.78.0):
1371 | - RCT-Folly (= 2024.11.18.00)
1372 | - RCTTypeSafety
1373 | - React-Core/RCTNetworkHeaders
1374 | - React-jsi
1375 | - React-NativeModulesApple
1376 | - React-RCTFBReactNativeSpec
1377 | - ReactCommon
1378 | - React-RCTSettings (0.78.0):
1379 | - RCT-Folly (= 2024.11.18.00)
1380 | - RCTTypeSafety
1381 | - React-Core/RCTSettingsHeaders
1382 | - React-jsi
1383 | - React-NativeModulesApple
1384 | - React-RCTFBReactNativeSpec
1385 | - ReactCommon
1386 | - React-RCTText (0.78.0):
1387 | - React-Core/RCTTextHeaders (= 0.78.0)
1388 | - Yoga
1389 | - React-RCTVibration (0.78.0):
1390 | - RCT-Folly (= 2024.11.18.00)
1391 | - React-Core/RCTVibrationHeaders
1392 | - React-jsi
1393 | - React-NativeModulesApple
1394 | - React-RCTFBReactNativeSpec
1395 | - ReactCommon
1396 | - React-rendererconsistency (0.78.0)
1397 | - React-rendererdebug (0.78.0):
1398 | - DoubleConversion
1399 | - fast_float (= 6.1.4)
1400 | - fmt (= 11.0.2)
1401 | - RCT-Folly (= 2024.11.18.00)
1402 | - React-debug
1403 | - React-rncore (0.78.0)
1404 | - React-RuntimeApple (0.78.0):
1405 | - hermes-engine
1406 | - RCT-Folly/Fabric (= 2024.11.18.00)
1407 | - React-callinvoker
1408 | - React-Core/Default
1409 | - React-CoreModules
1410 | - React-cxxreact
1411 | - React-featureflags
1412 | - React-jserrorhandler
1413 | - React-jsi
1414 | - React-jsiexecutor
1415 | - React-jsinspector
1416 | - React-Mapbuffer
1417 | - React-NativeModulesApple
1418 | - React-RCTFabric
1419 | - React-RCTFBReactNativeSpec
1420 | - React-RuntimeCore
1421 | - React-runtimeexecutor
1422 | - React-RuntimeHermes
1423 | - React-runtimescheduler
1424 | - React-utils
1425 | - React-RuntimeCore (0.78.0):
1426 | - glog
1427 | - hermes-engine
1428 | - RCT-Folly/Fabric (= 2024.11.18.00)
1429 | - React-cxxreact
1430 | - React-Fabric
1431 | - React-featureflags
1432 | - React-jserrorhandler
1433 | - React-jsi
1434 | - React-jsiexecutor
1435 | - React-jsinspector
1436 | - React-performancetimeline
1437 | - React-runtimeexecutor
1438 | - React-runtimescheduler
1439 | - React-utils
1440 | - React-runtimeexecutor (0.78.0):
1441 | - React-jsi (= 0.78.0)
1442 | - React-RuntimeHermes (0.78.0):
1443 | - hermes-engine
1444 | - RCT-Folly/Fabric (= 2024.11.18.00)
1445 | - React-featureflags
1446 | - React-hermes
1447 | - React-jsi
1448 | - React-jsinspector
1449 | - React-jsitracing
1450 | - React-RuntimeCore
1451 | - React-utils
1452 | - React-runtimescheduler (0.78.0):
1453 | - glog
1454 | - hermes-engine
1455 | - RCT-Folly (= 2024.11.18.00)
1456 | - React-callinvoker
1457 | - React-cxxreact
1458 | - React-debug
1459 | - React-featureflags
1460 | - React-jsi
1461 | - React-performancetimeline
1462 | - React-rendererconsistency
1463 | - React-rendererdebug
1464 | - React-runtimeexecutor
1465 | - React-timing
1466 | - React-utils
1467 | - React-timing (0.78.0)
1468 | - React-utils (0.78.0):
1469 | - glog
1470 | - hermes-engine
1471 | - RCT-Folly (= 2024.11.18.00)
1472 | - React-debug
1473 | - React-jsi (= 0.78.0)
1474 | - ReactAppDependencyProvider (0.78.0):
1475 | - ReactCodegen
1476 | - ReactCodegen (0.78.0):
1477 | - DoubleConversion
1478 | - glog
1479 | - hermes-engine
1480 | - RCT-Folly
1481 | - RCTRequired
1482 | - RCTTypeSafety
1483 | - React-Core
1484 | - React-debug
1485 | - React-Fabric
1486 | - React-FabricImage
1487 | - React-featureflags
1488 | - React-graphics
1489 | - React-jsi
1490 | - React-jsiexecutor
1491 | - React-NativeModulesApple
1492 | - React-RCTAppDelegate
1493 | - React-rendererdebug
1494 | - React-utils
1495 | - ReactCommon/turbomodule/bridging
1496 | - ReactCommon/turbomodule/core
1497 | - ReactCommon (0.78.0):
1498 | - ReactCommon/turbomodule (= 0.78.0)
1499 | - ReactCommon/turbomodule (0.78.0):
1500 | - DoubleConversion
1501 | - fast_float (= 6.1.4)
1502 | - fmt (= 11.0.2)
1503 | - glog
1504 | - hermes-engine
1505 | - RCT-Folly (= 2024.11.18.00)
1506 | - React-callinvoker (= 0.78.0)
1507 | - React-cxxreact (= 0.78.0)
1508 | - React-jsi (= 0.78.0)
1509 | - React-logger (= 0.78.0)
1510 | - React-perflogger (= 0.78.0)
1511 | - ReactCommon/turbomodule/bridging (= 0.78.0)
1512 | - ReactCommon/turbomodule/core (= 0.78.0)
1513 | - ReactCommon/turbomodule/bridging (0.78.0):
1514 | - DoubleConversion
1515 | - fast_float (= 6.1.4)
1516 | - fmt (= 11.0.2)
1517 | - glog
1518 | - hermes-engine
1519 | - RCT-Folly (= 2024.11.18.00)
1520 | - React-callinvoker (= 0.78.0)
1521 | - React-cxxreact (= 0.78.0)
1522 | - React-jsi (= 0.78.0)
1523 | - React-logger (= 0.78.0)
1524 | - React-perflogger (= 0.78.0)
1525 | - ReactCommon/turbomodule/core (0.78.0):
1526 | - DoubleConversion
1527 | - fast_float (= 6.1.4)
1528 | - fmt (= 11.0.2)
1529 | - glog
1530 | - hermes-engine
1531 | - RCT-Folly (= 2024.11.18.00)
1532 | - React-callinvoker (= 0.78.0)
1533 | - React-cxxreact (= 0.78.0)
1534 | - React-debug (= 0.78.0)
1535 | - React-featureflags (= 0.78.0)
1536 | - React-jsi (= 0.78.0)
1537 | - React-logger (= 0.78.0)
1538 | - React-perflogger (= 0.78.0)
1539 | - React-utils (= 0.78.0)
1540 | - ReactNativeWebPFormat (1.2.0):
1541 | - React-Core
1542 | - SDWebImageWebPCoder
1543 | - SDWebImage/Core (5.21.0)
1544 | - SDWebImageWebPCoder (0.14.6):
1545 | - libwebp (~> 1.0)
1546 | - SDWebImage/Core (~> 5.17)
1547 | - SocketRocket (0.7.1)
1548 | - Yoga (0.0.0)
1549 |
1550 | DEPENDENCIES:
1551 | - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
1552 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
1553 | - fast_float (from `../node_modules/react-native/third-party-podspecs/fast_float.podspec`)
1554 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
1555 | - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`)
1556 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
1557 | - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
1558 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1559 | - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
1560 | - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
1561 | - RCTRequired (from `../node_modules/react-native/Libraries/Required`)
1562 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
1563 | - React (from `../node_modules/react-native/`)
1564 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
1565 | - React-Core (from `../node_modules/react-native/`)
1566 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
1567 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
1568 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
1569 | - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
1570 | - React-defaultsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/defaults`)
1571 | - React-domnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/dom`)
1572 | - React-Fabric (from `../node_modules/react-native/ReactCommon`)
1573 | - React-FabricComponents (from `../node_modules/react-native/ReactCommon`)
1574 | - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
1575 | - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`)
1576 | - React-featureflagsnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/featureflags`)
1577 | - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
1578 | - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
1579 | - React-idlecallbacksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks`)
1580 | - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
1581 | - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
1582 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
1583 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
1584 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
1585 | - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`)
1586 | - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`)
1587 | - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
1588 | - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
1589 | - React-microtasksnativemodule (from `../node_modules/react-native/ReactCommon/react/nativemodule/microtasks`)
1590 | - React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
1591 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
1592 | - React-performancetimeline (from `../node_modules/react-native/ReactCommon/react/performance/timeline`)
1593 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
1594 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
1595 | - React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
1596 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
1597 | - React-RCTFabric (from `../node_modules/react-native/React`)
1598 | - React-RCTFBReactNativeSpec (from `../node_modules/react-native/React`)
1599 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
1600 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
1601 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
1602 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
1603 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
1604 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
1605 | - React-rendererconsistency (from `../node_modules/react-native/ReactCommon/react/renderer/consistency`)
1606 | - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
1607 | - React-rncore (from `../node_modules/react-native/ReactCommon`)
1608 | - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`)
1609 | - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`)
1610 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
1611 | - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`)
1612 | - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
1613 | - React-timing (from `../node_modules/react-native/ReactCommon/react/timing`)
1614 | - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
1615 | - ReactAppDependencyProvider (from `build/generated/ios`)
1616 | - ReactCodegen (from `build/generated/ios`)
1617 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
1618 | - ReactNativeWebPFormat (from `../node_modules/react-native-webp-format`)
1619 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
1620 |
1621 | SPEC REPOS:
1622 | trunk:
1623 | - libwebp
1624 | - SDWebImage
1625 | - SDWebImageWebPCoder
1626 | - SocketRocket
1627 |
1628 | EXTERNAL SOURCES:
1629 | boost:
1630 | :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
1631 | DoubleConversion:
1632 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
1633 | fast_float:
1634 | :podspec: "../node_modules/react-native/third-party-podspecs/fast_float.podspec"
1635 | FBLazyVector:
1636 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
1637 | fmt:
1638 | :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec"
1639 | glog:
1640 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
1641 | hermes-engine:
1642 | :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
1643 | :tag: hermes-2025-01-13-RNv0.78.0-a942ef374897d85da38e9c8904574f8376555388
1644 | RCT-Folly:
1645 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
1646 | RCTDeprecation:
1647 | :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation"
1648 | RCTRequired:
1649 | :path: "../node_modules/react-native/Libraries/Required"
1650 | RCTTypeSafety:
1651 | :path: "../node_modules/react-native/Libraries/TypeSafety"
1652 | React:
1653 | :path: "../node_modules/react-native/"
1654 | React-callinvoker:
1655 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
1656 | React-Core:
1657 | :path: "../node_modules/react-native/"
1658 | React-CoreModules:
1659 | :path: "../node_modules/react-native/React/CoreModules"
1660 | React-cxxreact:
1661 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
1662 | React-debug:
1663 | :path: "../node_modules/react-native/ReactCommon/react/debug"
1664 | React-defaultsnativemodule:
1665 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/defaults"
1666 | React-domnativemodule:
1667 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/dom"
1668 | React-Fabric:
1669 | :path: "../node_modules/react-native/ReactCommon"
1670 | React-FabricComponents:
1671 | :path: "../node_modules/react-native/ReactCommon"
1672 | React-FabricImage:
1673 | :path: "../node_modules/react-native/ReactCommon"
1674 | React-featureflags:
1675 | :path: "../node_modules/react-native/ReactCommon/react/featureflags"
1676 | React-featureflagsnativemodule:
1677 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/featureflags"
1678 | React-graphics:
1679 | :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
1680 | React-hermes:
1681 | :path: "../node_modules/react-native/ReactCommon/hermes"
1682 | React-idlecallbacksnativemodule:
1683 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/idlecallbacks"
1684 | React-ImageManager:
1685 | :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
1686 | React-jserrorhandler:
1687 | :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
1688 | React-jsi:
1689 | :path: "../node_modules/react-native/ReactCommon/jsi"
1690 | React-jsiexecutor:
1691 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
1692 | React-jsinspector:
1693 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
1694 | React-jsinspectortracing:
1695 | :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing"
1696 | React-jsitracing:
1697 | :path: "../node_modules/react-native/ReactCommon/hermes/executor/"
1698 | React-logger:
1699 | :path: "../node_modules/react-native/ReactCommon/logger"
1700 | React-Mapbuffer:
1701 | :path: "../node_modules/react-native/ReactCommon"
1702 | React-microtasksnativemodule:
1703 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/microtasks"
1704 | React-NativeModulesApple:
1705 | :path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
1706 | React-perflogger:
1707 | :path: "../node_modules/react-native/ReactCommon/reactperflogger"
1708 | React-performancetimeline:
1709 | :path: "../node_modules/react-native/ReactCommon/react/performance/timeline"
1710 | React-RCTActionSheet:
1711 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
1712 | React-RCTAnimation:
1713 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
1714 | React-RCTAppDelegate:
1715 | :path: "../node_modules/react-native/Libraries/AppDelegate"
1716 | React-RCTBlob:
1717 | :path: "../node_modules/react-native/Libraries/Blob"
1718 | React-RCTFabric:
1719 | :path: "../node_modules/react-native/React"
1720 | React-RCTFBReactNativeSpec:
1721 | :path: "../node_modules/react-native/React"
1722 | React-RCTImage:
1723 | :path: "../node_modules/react-native/Libraries/Image"
1724 | React-RCTLinking:
1725 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
1726 | React-RCTNetwork:
1727 | :path: "../node_modules/react-native/Libraries/Network"
1728 | React-RCTSettings:
1729 | :path: "../node_modules/react-native/Libraries/Settings"
1730 | React-RCTText:
1731 | :path: "../node_modules/react-native/Libraries/Text"
1732 | React-RCTVibration:
1733 | :path: "../node_modules/react-native/Libraries/Vibration"
1734 | React-rendererconsistency:
1735 | :path: "../node_modules/react-native/ReactCommon/react/renderer/consistency"
1736 | React-rendererdebug:
1737 | :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
1738 | React-rncore:
1739 | :path: "../node_modules/react-native/ReactCommon"
1740 | React-RuntimeApple:
1741 | :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios"
1742 | React-RuntimeCore:
1743 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
1744 | React-runtimeexecutor:
1745 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
1746 | React-RuntimeHermes:
1747 | :path: "../node_modules/react-native/ReactCommon/react/runtime"
1748 | React-runtimescheduler:
1749 | :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
1750 | React-timing:
1751 | :path: "../node_modules/react-native/ReactCommon/react/timing"
1752 | React-utils:
1753 | :path: "../node_modules/react-native/ReactCommon/react/utils"
1754 | ReactAppDependencyProvider:
1755 | :path: build/generated/ios
1756 | ReactCodegen:
1757 | :path: build/generated/ios
1758 | ReactCommon:
1759 | :path: "../node_modules/react-native/ReactCommon"
1760 | ReactNativeWebPFormat:
1761 | :path: "../node_modules/react-native-webp-format"
1762 | Yoga:
1763 | :path: "../node_modules/react-native/ReactCommon/yoga"
1764 |
1765 | SPEC CHECKSUMS:
1766 | boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
1767 | DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
1768 | fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6
1769 | FBLazyVector: 6fe148afcef2e3213e484758e3459609d40d57f5
1770 | fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
1771 | glog: eb93e2f488219332457c3c4eafd2738ddc7e80b8
1772 | hermes-engine: b417d2b2aee3b89b58e63e23a51e02be91dc876d
1773 | libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8
1774 | RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82
1775 | RCTDeprecation: b2eecf2d60216df56bc5e6be5f063826d3c1ee35
1776 | RCTRequired: 78522de7dc73b81f3ed7890d145fa341f5bb32ea
1777 | RCTTypeSafety: c135dd2bf50402d87fd12884cbad5d5e64850edd
1778 | React: b229c49ed5898dab46d60f61ed5a0bfa2ee2fadb
1779 | React-callinvoker: 2ac508e92c8bd9cf834cc7d7787d94352e4af58f
1780 | React-Core: 325b4f6d9162ae8b9a6ff42fe78e260eb124180d
1781 | React-CoreModules: 558041e5258f70cd1092f82778d07b8b2ff01897
1782 | React-cxxreact: 8fff17cbe76e6a8f9991b59552e1235429f9c74b
1783 | React-debug: 0a5fcdbacc6becba0521e910c1bcfdb20f32a3f6
1784 | React-defaultsnativemodule: 618dc50a0fad41b489997c3eb7aba3a74479fd14
1785 | React-domnativemodule: 7ba599afb6c2a7ec3eb6450153e2efe0b8747e9a
1786 | React-Fabric: 252112089d2c63308f4cbfade4010b6606db67d1
1787 | React-FabricComponents: 3c0f75321680d14d124438ab279c64ec2a3d13c4
1788 | React-FabricImage: 728b8061cdec2857ca885fd605ee03ad43ffca98
1789 | React-featureflags: 19682e02ef5861d96b992af16a19109c3dfc1200
1790 | React-featureflagsnativemodule: 23528c7e7d50782b7ef0804168ba40bbaf1e86ab
1791 | React-graphics: fefe48f71bfe6f48fd037f59e8277b12e91b6be1
1792 | React-hermes: a9a0c8377627b5506ef9a7b6f60a805c306e3f51
1793 | React-idlecallbacksnativemodule: 7e2b6a3b70e042f89cd91dbd73c479bb39a72a7e
1794 | React-ImageManager: e3300996ac2e2914bf821f71e2f2c92ae6e62ae2
1795 | React-jserrorhandler: fa75876c662e5d7e79d6efc763fc9f4c88e26986
1796 | React-jsi: f3f51595cc4c089037b536368f016d4742bf9cf7
1797 | React-jsiexecutor: cca6c232db461e2fd213a11e9364cfa6fdaa20eb
1798 | React-jsinspector: 2bd4c9fddf189d6ec2abf4948461060502582bef
1799 | React-jsinspectortracing: a417d8a0ad481edaa415734b4dac81e3e5ee7dc6
1800 | React-jsitracing: 1ff7172c5b0522cbf6c98d82bdbb160e49b5804e
1801 | React-logger: 018826bfd51b9f18e87f67db1590bc510ad20664
1802 | React-Mapbuffer: 3c11cee7737609275c7b66bd0b1de475f094cedf
1803 | React-microtasksnativemodule: 843f352b32aacbe13a9c750190d34df44c3e6c2c
1804 | React-NativeModulesApple: 88433b6946778bea9c153e27b671de15411bf225
1805 | React-perflogger: 9e8d3c0dc0194eb932162812a168aa5dc662f418
1806 | React-performancetimeline: 5a2d6efef52bdcefac079c7baa30934978acd023
1807 | React-RCTActionSheet: 592674cf61142497e0e820688f5a696e41bf16dd
1808 | React-RCTAnimation: e6d669872f9b3b4ab9527aab283b7c49283236b7
1809 | React-RCTAppDelegate: de2343fe08be4c945d57e0ecce44afcc7dd8fc03
1810 | React-RCTBlob: 3e2dce94c56218becc4b32b627fc2293149f798d
1811 | React-RCTFabric: cac2c033381d79a5956e08550b0220cb2d78ea93
1812 | React-RCTFBReactNativeSpec: d10ca5e0ccbfeac8c047361fedf8e4ac653887b6
1813 | React-RCTImage: dc04b176c022d12a8f55ae7a7279b1e091066ae0
1814 | React-RCTLinking: 88f5e37fe4f26fbc80791aa2a5f01baf9b9a3fd5
1815 | React-RCTNetwork: f213693565efbd698b8e9c18d700a514b49c0c8e
1816 | React-RCTSettings: a2d32a90c45a3575568cad850abc45924999b8a5
1817 | React-RCTText: 54cdcd1cbf6f6a91dc6317f5d2c2b7fc3f6bf7a0
1818 | React-RCTVibration: 11dae0e7f577b5807bb7d31e2e881eb46f854fd4
1819 | React-rendererconsistency: 64e897e00d2568fd8dfe31e2496f80e85c0aaad1
1820 | React-rendererdebug: 41ce452460c44bba715d9e41d5493a96de277764
1821 | React-rncore: 58748c2aa445f56b99e5118dad0aedb51c40ce9f
1822 | React-RuntimeApple: 7785ed0d8ae54da65a88736bb63ca97608a6d933
1823 | React-RuntimeCore: 6029ea70bc77f98cfd43ebe69217f14e93ba1f12
1824 | React-runtimeexecutor: a188df372373baf5066e6e229177836488799f80
1825 | React-RuntimeHermes: a264609c28b796edfffc8ae4cb8fad1773ab948b
1826 | React-runtimescheduler: 23ec3a1e0fb1ec752d1a9c1fb15258c30bfc7222
1827 | React-timing: bb220a53a795ed57976a4855c521f3de2f298fe5
1828 | React-utils: 3b054aaebe658fc710a8d239d0e4b9fd3e0b78f9
1829 | ReactAppDependencyProvider: a1fb08dfdc7ebc387b2e54cfc9decd283ed821d8
1830 | ReactCodegen: 008c319179d681a6a00966edfc67fda68f9fbb2e
1831 | ReactCommon: 0c097b53f03d6bf166edbcd0915da32f3015dd90
1832 | ReactNativeWebPFormat: a1a41d3f99b40fe262978a4a551f5d459963efde
1833 | SDWebImage: f84b0feeb08d2d11e6a9b843cb06d75ebf5b8868
1834 | SDWebImageWebPCoder: e38c0a70396191361d60c092933e22c20d5b1380
1835 | SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
1836 | Yoga: 9b7fb56e7b08cde60e2153344fa6afbd88e5d99f
1837 |
1838 | PODFILE CHECKSUM: a5de45e2350a9515567a6e18ca8ceea718b48523
1839 |
1840 | COCOAPODS: 1.15.2
1841 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 056B06C2D274F884063FD4A8 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
11 | 0C80B921A6F3F58F76C31292 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-example.a */; };
12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13 | 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
14 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
15 | /* End PBXBuildFile section */
16 |
17 | /* Begin PBXFileReference section */
18 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
19 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; };
20 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; };
21 | 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = example/PrivacyInfo.xcprivacy; sourceTree = ""; };
22 | 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.debug.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.debug.xcconfig"; sourceTree = ""; };
23 | 5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example.release.xcconfig"; path = "Target Support Files/Pods-example/Pods-example.release.xcconfig"; sourceTree = ""; };
24 | 5DCACB8F33CDC322A6C60F78 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
25 | 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = example/AppDelegate.swift; sourceTree = ""; };
26 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = ""; };
27 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
28 | /* End PBXFileReference section */
29 |
30 | /* Begin PBXFrameworksBuildPhase section */
31 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
32 | isa = PBXFrameworksBuildPhase;
33 | buildActionMask = 2147483647;
34 | files = (
35 | 0C80B921A6F3F58F76C31292 /* libPods-example.a in Frameworks */,
36 | );
37 | runOnlyForDeploymentPostprocessing = 0;
38 | };
39 | /* End PBXFrameworksBuildPhase section */
40 |
41 | /* Begin PBXGroup section */
42 | 13B07FAE1A68108700A75B9A /* example */ = {
43 | isa = PBXGroup;
44 | children = (
45 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
46 | 761780EC2CA45674006654EE /* AppDelegate.swift */,
47 | 13B07FB61A68108700A75B9A /* Info.plist */,
48 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
49 | 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
50 | );
51 | name = example;
52 | sourceTree = "";
53 | };
54 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
55 | isa = PBXGroup;
56 | children = (
57 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
58 | 5DCACB8F33CDC322A6C60F78 /* libPods-example.a */,
59 | );
60 | name = Frameworks;
61 | sourceTree = "";
62 | };
63 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
64 | isa = PBXGroup;
65 | children = (
66 | );
67 | name = Libraries;
68 | sourceTree = "";
69 | };
70 | 83CBB9F61A601CBA00E9B192 = {
71 | isa = PBXGroup;
72 | children = (
73 | 13B07FAE1A68108700A75B9A /* example */,
74 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
75 | 83CBBA001A601CBA00E9B192 /* Products */,
76 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
77 | BBD78D7AC51CEA395F1C20DB /* Pods */,
78 | );
79 | indentWidth = 2;
80 | sourceTree = "";
81 | tabWidth = 2;
82 | usesTabs = 0;
83 | };
84 | 83CBBA001A601CBA00E9B192 /* Products */ = {
85 | isa = PBXGroup;
86 | children = (
87 | 13B07F961A680F5B00A75B9A /* example.app */,
88 | );
89 | name = Products;
90 | sourceTree = "";
91 | };
92 | BBD78D7AC51CEA395F1C20DB /* Pods */ = {
93 | isa = PBXGroup;
94 | children = (
95 | 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */,
96 | 5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */,
97 | );
98 | path = Pods;
99 | sourceTree = "";
100 | };
101 | /* End PBXGroup section */
102 |
103 | /* Begin PBXNativeTarget section */
104 | 13B07F861A680F5B00A75B9A /* example */ = {
105 | isa = PBXNativeTarget;
106 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
107 | buildPhases = (
108 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
109 | 13B07F871A680F5B00A75B9A /* Sources */,
110 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
111 | 13B07F8E1A680F5B00A75B9A /* Resources */,
112 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
113 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
114 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
115 | );
116 | buildRules = (
117 | );
118 | dependencies = (
119 | );
120 | name = example;
121 | productName = example;
122 | productReference = 13B07F961A680F5B00A75B9A /* example.app */;
123 | productType = "com.apple.product-type.application";
124 | };
125 | /* End PBXNativeTarget section */
126 |
127 | /* Begin PBXProject section */
128 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
129 | isa = PBXProject;
130 | attributes = {
131 | LastUpgradeCheck = 1210;
132 | TargetAttributes = {
133 | 13B07F861A680F5B00A75B9A = {
134 | LastSwiftMigration = 1120;
135 | };
136 | };
137 | };
138 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
139 | compatibilityVersion = "Xcode 12.0";
140 | developmentRegion = en;
141 | hasScannedForEncodings = 0;
142 | knownRegions = (
143 | en,
144 | Base,
145 | );
146 | mainGroup = 83CBB9F61A601CBA00E9B192;
147 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
148 | projectDirPath = "";
149 | projectRoot = "";
150 | targets = (
151 | 13B07F861A680F5B00A75B9A /* example */,
152 | );
153 | };
154 | /* End PBXProject section */
155 |
156 | /* Begin PBXResourcesBuildPhase section */
157 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
158 | isa = PBXResourcesBuildPhase;
159 | buildActionMask = 2147483647;
160 | files = (
161 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
162 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
163 | 056B06C2D274F884063FD4A8 /* PrivacyInfo.xcprivacy in Resources */,
164 | );
165 | runOnlyForDeploymentPostprocessing = 0;
166 | };
167 | /* End PBXResourcesBuildPhase section */
168 |
169 | /* Begin PBXShellScriptBuildPhase section */
170 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
171 | isa = PBXShellScriptBuildPhase;
172 | buildActionMask = 2147483647;
173 | files = (
174 | );
175 | inputPaths = (
176 | "$(SRCROOT)/.xcode.env.local",
177 | "$(SRCROOT)/.xcode.env",
178 | );
179 | name = "Bundle React Native code and images";
180 | outputPaths = (
181 | );
182 | runOnlyForDeploymentPostprocessing = 0;
183 | shellPath = /bin/sh;
184 | shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
185 | };
186 | 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
187 | isa = PBXShellScriptBuildPhase;
188 | buildActionMask = 2147483647;
189 | files = (
190 | );
191 | inputFileListPaths = (
192 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
193 | );
194 | name = "[CP] Embed Pods Frameworks";
195 | outputFileListPaths = (
196 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
197 | );
198 | runOnlyForDeploymentPostprocessing = 0;
199 | shellPath = /bin/sh;
200 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
201 | showEnvVarsInLog = 0;
202 | };
203 | C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
204 | isa = PBXShellScriptBuildPhase;
205 | buildActionMask = 2147483647;
206 | files = (
207 | );
208 | inputFileListPaths = (
209 | );
210 | inputPaths = (
211 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
212 | "${PODS_ROOT}/Manifest.lock",
213 | );
214 | name = "[CP] Check Pods Manifest.lock";
215 | outputFileListPaths = (
216 | );
217 | outputPaths = (
218 | "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
219 | );
220 | runOnlyForDeploymentPostprocessing = 0;
221 | shellPath = /bin/sh;
222 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
223 | showEnvVarsInLog = 0;
224 | };
225 | E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
226 | isa = PBXShellScriptBuildPhase;
227 | buildActionMask = 2147483647;
228 | files = (
229 | );
230 | inputFileListPaths = (
231 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
232 | );
233 | name = "[CP] Copy Pods Resources";
234 | outputFileListPaths = (
235 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
236 | );
237 | runOnlyForDeploymentPostprocessing = 0;
238 | shellPath = /bin/sh;
239 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
240 | showEnvVarsInLog = 0;
241 | };
242 | /* End PBXShellScriptBuildPhase section */
243 |
244 | /* Begin PBXSourcesBuildPhase section */
245 | 13B07F871A680F5B00A75B9A /* Sources */ = {
246 | isa = PBXSourcesBuildPhase;
247 | buildActionMask = 2147483647;
248 | files = (
249 | 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
250 | );
251 | runOnlyForDeploymentPostprocessing = 0;
252 | };
253 | /* End PBXSourcesBuildPhase section */
254 |
255 | /* Begin XCBuildConfiguration section */
256 | 13B07F941A680F5B00A75B9A /* Debug */ = {
257 | isa = XCBuildConfiguration;
258 | baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */;
259 | buildSettings = {
260 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
261 | CLANG_ENABLE_MODULES = YES;
262 | CURRENT_PROJECT_VERSION = 1;
263 | ENABLE_BITCODE = NO;
264 | INFOPLIST_FILE = example/Info.plist;
265 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
266 | LD_RUNPATH_SEARCH_PATHS = (
267 | "$(inherited)",
268 | "@executable_path/Frameworks",
269 | );
270 | MARKETING_VERSION = 1.0;
271 | OTHER_LDFLAGS = (
272 | "$(inherited)",
273 | "-ObjC",
274 | "-lc++",
275 | );
276 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
277 | PRODUCT_NAME = example;
278 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
279 | SWIFT_VERSION = 5.0;
280 | VERSIONING_SYSTEM = "apple-generic";
281 | };
282 | name = Debug;
283 | };
284 | 13B07F951A680F5B00A75B9A /* Release */ = {
285 | isa = XCBuildConfiguration;
286 | baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */;
287 | buildSettings = {
288 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289 | CLANG_ENABLE_MODULES = YES;
290 | CURRENT_PROJECT_VERSION = 1;
291 | INFOPLIST_FILE = example/Info.plist;
292 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
293 | LD_RUNPATH_SEARCH_PATHS = (
294 | "$(inherited)",
295 | "@executable_path/Frameworks",
296 | );
297 | MARKETING_VERSION = 1.0;
298 | OTHER_LDFLAGS = (
299 | "$(inherited)",
300 | "-ObjC",
301 | "-lc++",
302 | );
303 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
304 | PRODUCT_NAME = example;
305 | SWIFT_VERSION = 5.0;
306 | VERSIONING_SYSTEM = "apple-generic";
307 | };
308 | name = Release;
309 | };
310 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
311 | isa = XCBuildConfiguration;
312 | buildSettings = {
313 | ALWAYS_SEARCH_USER_PATHS = NO;
314 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
315 | CLANG_CXX_LANGUAGE_STANDARD = "c++20";
316 | CLANG_CXX_LIBRARY = "libc++";
317 | CLANG_ENABLE_MODULES = YES;
318 | CLANG_ENABLE_OBJC_ARC = YES;
319 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
320 | CLANG_WARN_BOOL_CONVERSION = YES;
321 | CLANG_WARN_COMMA = YES;
322 | CLANG_WARN_CONSTANT_CONVERSION = YES;
323 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
324 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
325 | CLANG_WARN_EMPTY_BODY = YES;
326 | CLANG_WARN_ENUM_CONVERSION = YES;
327 | CLANG_WARN_INFINITE_RECURSION = YES;
328 | CLANG_WARN_INT_CONVERSION = YES;
329 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
330 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
331 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
332 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
333 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
334 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
335 | CLANG_WARN_STRICT_PROTOTYPES = YES;
336 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
337 | CLANG_WARN_UNREACHABLE_CODE = YES;
338 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
339 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
340 | COPY_PHASE_STRIP = NO;
341 | ENABLE_STRICT_OBJC_MSGSEND = YES;
342 | ENABLE_TESTABILITY = YES;
343 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
344 | GCC_C_LANGUAGE_STANDARD = gnu99;
345 | GCC_DYNAMIC_NO_PIC = NO;
346 | GCC_NO_COMMON_BLOCKS = YES;
347 | GCC_OPTIMIZATION_LEVEL = 0;
348 | GCC_PREPROCESSOR_DEFINITIONS = (
349 | "DEBUG=1",
350 | "$(inherited)",
351 | );
352 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
353 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
354 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
355 | GCC_WARN_UNDECLARED_SELECTOR = YES;
356 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
357 | GCC_WARN_UNUSED_FUNCTION = YES;
358 | GCC_WARN_UNUSED_VARIABLE = YES;
359 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
360 | LD_RUNPATH_SEARCH_PATHS = (
361 | /usr/lib/swift,
362 | "$(inherited)",
363 | );
364 | LIBRARY_SEARCH_PATHS = (
365 | "\"$(SDKROOT)/usr/lib/swift\"",
366 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
367 | "\"$(inherited)\"",
368 | );
369 | MTL_ENABLE_DEBUG_INFO = YES;
370 | ONLY_ACTIVE_ARCH = YES;
371 | OTHER_CPLUSPLUSFLAGS = (
372 | "$(OTHER_CFLAGS)",
373 | "-DFOLLY_NO_CONFIG",
374 | "-DFOLLY_MOBILE=1",
375 | "-DFOLLY_USE_LIBCPP=1",
376 | "-DFOLLY_CFG_NO_COROUTINES=1",
377 | "-DFOLLY_HAVE_CLOCK_GETTIME=1",
378 | );
379 | OTHER_LDFLAGS = (
380 | "$(inherited)",
381 | " ",
382 | );
383 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
384 | SDKROOT = iphoneos;
385 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
386 | USE_HERMES = true;
387 | };
388 | name = Debug;
389 | };
390 | 83CBBA211A601CBA00E9B192 /* Release */ = {
391 | isa = XCBuildConfiguration;
392 | buildSettings = {
393 | ALWAYS_SEARCH_USER_PATHS = NO;
394 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
395 | CLANG_CXX_LANGUAGE_STANDARD = "c++20";
396 | CLANG_CXX_LIBRARY = "libc++";
397 | CLANG_ENABLE_MODULES = YES;
398 | CLANG_ENABLE_OBJC_ARC = YES;
399 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
400 | CLANG_WARN_BOOL_CONVERSION = YES;
401 | CLANG_WARN_COMMA = YES;
402 | CLANG_WARN_CONSTANT_CONVERSION = YES;
403 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
404 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
405 | CLANG_WARN_EMPTY_BODY = YES;
406 | CLANG_WARN_ENUM_CONVERSION = YES;
407 | CLANG_WARN_INFINITE_RECURSION = YES;
408 | CLANG_WARN_INT_CONVERSION = YES;
409 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
410 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
411 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
412 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
413 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
414 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
415 | CLANG_WARN_STRICT_PROTOTYPES = YES;
416 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
417 | CLANG_WARN_UNREACHABLE_CODE = YES;
418 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
419 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
420 | COPY_PHASE_STRIP = YES;
421 | ENABLE_NS_ASSERTIONS = NO;
422 | ENABLE_STRICT_OBJC_MSGSEND = YES;
423 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
424 | GCC_C_LANGUAGE_STANDARD = gnu99;
425 | GCC_NO_COMMON_BLOCKS = YES;
426 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
427 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
428 | GCC_WARN_UNDECLARED_SELECTOR = YES;
429 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
430 | GCC_WARN_UNUSED_FUNCTION = YES;
431 | GCC_WARN_UNUSED_VARIABLE = YES;
432 | IPHONEOS_DEPLOYMENT_TARGET = 15.1;
433 | LD_RUNPATH_SEARCH_PATHS = (
434 | /usr/lib/swift,
435 | "$(inherited)",
436 | );
437 | LIBRARY_SEARCH_PATHS = (
438 | "\"$(SDKROOT)/usr/lib/swift\"",
439 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
440 | "\"$(inherited)\"",
441 | );
442 | MTL_ENABLE_DEBUG_INFO = NO;
443 | OTHER_CPLUSPLUSFLAGS = (
444 | "$(OTHER_CFLAGS)",
445 | "-DFOLLY_NO_CONFIG",
446 | "-DFOLLY_MOBILE=1",
447 | "-DFOLLY_USE_LIBCPP=1",
448 | "-DFOLLY_CFG_NO_COROUTINES=1",
449 | "-DFOLLY_HAVE_CLOCK_GETTIME=1",
450 | );
451 | OTHER_LDFLAGS = (
452 | "$(inherited)",
453 | " ",
454 | );
455 | REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
456 | SDKROOT = iphoneos;
457 | USE_HERMES = true;
458 | VALIDATE_PRODUCT = YES;
459 | };
460 | name = Release;
461 | };
462 | /* End XCBuildConfiguration section */
463 |
464 | /* Begin XCConfigurationList section */
465 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
466 | isa = XCConfigurationList;
467 | buildConfigurations = (
468 | 13B07F941A680F5B00A75B9A /* Debug */,
469 | 13B07F951A680F5B00A75B9A /* Release */,
470 | );
471 | defaultConfigurationIsVisible = 0;
472 | defaultConfigurationName = Release;
473 | };
474 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
475 | isa = XCConfigurationList;
476 | buildConfigurations = (
477 | 83CBBA201A601CBA00E9B192 /* Debug */,
478 | 83CBBA211A601CBA00E9B192 /* Release */,
479 | );
480 | defaultConfigurationIsVisible = 0;
481 | defaultConfigurationName = Release;
482 | };
483 | /* End XCConfigurationList section */
484 | };
485 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
486 | }
487 |
--------------------------------------------------------------------------------
/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/example/ios/example.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/example/ios/example/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import React
3 | import React_RCTAppDelegate
4 | import ReactAppDependencyProvider
5 |
6 | @main
7 | class AppDelegate: RCTAppDelegate {
8 | override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
9 | self.moduleName = "example"
10 | self.dependencyProvider = RCTAppDependencyProvider()
11 |
12 | // You can add your custom initial props in the dictionary below.
13 | // They will be passed down to the ViewController used by React Native.
14 | self.initialProps = [:]
15 |
16 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
17 | }
18 |
19 | override func sourceURL(for bridge: RCTBridge) -> URL? {
20 | self.bundleURL()
21 | }
22 |
23 | override func bundleURL() -> URL? {
24 | #if DEBUG
25 | RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: "index")
26 | #else
27 | Bundle.main.url(forResource: "main", withExtension: "jsbundle")
28 | #endif
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "scale" : "2x",
6 | "size" : "20x20"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "scale" : "3x",
11 | "size" : "20x20"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "scale" : "2x",
16 | "size" : "29x29"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "scale" : "3x",
21 | "size" : "29x29"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "scale" : "2x",
26 | "size" : "40x40"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "scale" : "3x",
31 | "size" : "40x40"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "scale" : "2x",
36 | "size" : "60x60"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "scale" : "3x",
41 | "size" : "60x60"
42 | },
43 | {
44 | "idiom" : "ios-marketing",
45 | "scale" : "1x",
46 | "size" : "1024x1024"
47 | }
48 | ],
49 | "info" : {
50 | "author" : "xcode",
51 | "version" : 1
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/example/ios/example/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/example/ios/example/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | example
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(MARKETING_VERSION)
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | $(CURRENT_PROJECT_VERSION)
25 | LSRequiresIPhoneOS
26 |
27 | NSAppTransportSecurity
28 |
29 |
30 | NSAllowsArbitraryLoads
31 |
32 | NSAllowsLocalNetworking
33 |
34 |
35 | NSLocationWhenInUseUsageDescription
36 |
37 | UILaunchStoryboardName
38 | LaunchScreen
39 | UIRequiredDeviceCapabilities
40 |
41 | arm64
42 |
43 | UISupportedInterfaceOrientations
44 |
45 | UIInterfaceOrientationPortrait
46 | UIInterfaceOrientationLandscapeLeft
47 | UIInterfaceOrientationLandscapeRight
48 |
49 | UIViewControllerBasedStatusBarAppearance
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/example/ios/example/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
24 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/example/ios/example/PrivacyInfo.xcprivacy:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | NSPrivacyAccessedAPITypes
6 |
7 |
8 | NSPrivacyAccessedAPIType
9 | NSPrivacyAccessedAPICategoryFileTimestamp
10 | NSPrivacyAccessedAPITypeReasons
11 |
12 | C617.1
13 |
14 |
15 |
16 | NSPrivacyAccessedAPIType
17 | NSPrivacyAccessedAPICategoryUserDefaults
18 | NSPrivacyAccessedAPITypeReasons
19 |
20 | CA92.1
21 |
22 |
23 |
24 | NSPrivacyAccessedAPIType
25 | NSPrivacyAccessedAPICategorySystemBootTime
26 | NSPrivacyAccessedAPITypeReasons
27 |
28 | 35F9.1
29 |
30 |
31 |
32 | NSPrivacyCollectedDataTypes
33 |
34 | NSPrivacyTracking
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/example/jest.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | preset: 'react-native',
3 | };
4 |
--------------------------------------------------------------------------------
/example/metro.config.js:
--------------------------------------------------------------------------------
1 | const {getDefaultConfig, mergeConfig} = require('@react-native/metro-config');
2 |
3 | /**
4 | * Metro configuration
5 | * https://reactnative.dev/docs/metro
6 | *
7 | * @type {import('@react-native/metro-config').MetroConfig}
8 | */
9 | const config = {};
10 |
11 | module.exports = mergeConfig(getDefaultConfig(__dirname), config);
12 |
--------------------------------------------------------------------------------
/example/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "example",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "android": "react-native run-android",
7 | "ios": "react-native run-ios",
8 | "lint": "eslint .",
9 | "start": "react-native start",
10 | "test": "jest"
11 | },
12 | "dependencies": {
13 | "react": "19.0.0",
14 | "react-native": "0.78.0",
15 | "react-native-webp-format": "^1.2.0"
16 | },
17 | "devDependencies": {
18 | "@babel/core": "^7.25.2",
19 | "@babel/preset-env": "^7.25.3",
20 | "@babel/runtime": "^7.25.0",
21 | "@react-native-community/cli": "15.0.1",
22 | "@react-native-community/cli-platform-android": "15.0.1",
23 | "@react-native-community/cli-platform-ios": "15.0.1",
24 | "@react-native/babel-preset": "0.78.0",
25 | "@react-native/eslint-config": "0.78.0",
26 | "@react-native/metro-config": "0.78.0",
27 | "@react-native/typescript-config": "0.78.0",
28 | "@types/jest": "^29.5.13",
29 | "@types/react": "^19.0.0",
30 | "@types/react-test-renderer": "^19.0.0",
31 | "eslint": "^8.19.0",
32 | "jest": "^29.6.3",
33 | "prettier": "2.8.8",
34 | "react-test-renderer": "19.0.0",
35 | "typescript": "5.0.4"
36 | },
37 | "engines": {
38 | "node": ">=18"
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/example/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "@react-native/typescript-config/tsconfig.json"
3 | }
4 |
--------------------------------------------------------------------------------
/ios/ReactNativeWebPFormat.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 13BE3DEE1AC21097009241FE /* WebPImageDataDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 13BE3DED1AC21097009241FE /* WebPImageDataDecoder.m */; };
11 | /* End PBXBuildFile section */
12 |
13 | /* Begin PBXCopyFilesBuildPhase section */
14 | 58B511D91A9E6C8500147676 /* CopyFiles */ = {
15 | isa = PBXCopyFilesBuildPhase;
16 | buildActionMask = 2147483647;
17 | dstPath = "include/$(PRODUCT_NAME)";
18 | dstSubfolderSpec = 16;
19 | files = (
20 | );
21 | runOnlyForDeploymentPostprocessing = 0;
22 | };
23 | /* End PBXCopyFilesBuildPhase section */
24 |
25 | /* Begin PBXFileReference section */
26 | 134814201AA4EA6300B7C361 /* libReactNativeWebPFormat.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libReactNativeWebPFormat.a; sourceTree = BUILT_PRODUCTS_DIR; };
27 | 13BE3DEC1AC21097009241FE /* WebPImageDataDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebPImageDataDecoder.h; sourceTree = ""; };
28 | 13BE3DED1AC21097009241FE /* WebPImageDataDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebPImageDataDecoder.m; sourceTree = ""; };
29 | /* End PBXFileReference section */
30 |
31 | /* Begin PBXFrameworksBuildPhase section */
32 | 58B511D81A9E6C8500147676 /* Frameworks */ = {
33 | isa = PBXFrameworksBuildPhase;
34 | buildActionMask = 2147483647;
35 | files = (
36 | );
37 | runOnlyForDeploymentPostprocessing = 0;
38 | };
39 | /* End PBXFrameworksBuildPhase section */
40 |
41 | /* Begin PBXGroup section */
42 | 134814211AA4EA7D00B7C361 /* Products */ = {
43 | isa = PBXGroup;
44 | children = (
45 | 134814201AA4EA6300B7C361 /* libReactNativeWebPFormat.a */,
46 | );
47 | name = Products;
48 | sourceTree = "";
49 | };
50 | 58B511D21A9E6C8500147676 = {
51 | isa = PBXGroup;
52 | children = (
53 | 13BE3DEC1AC21097009241FE /* WebPImageDataDecoder.h */,
54 | 13BE3DED1AC21097009241FE /* WebPImageDataDecoder.m */,
55 | 134814211AA4EA7D00B7C361 /* Products */,
56 | );
57 | sourceTree = "";
58 | };
59 | /* End PBXGroup section */
60 |
61 | /* Begin PBXNativeTarget section */
62 | 58B511DA1A9E6C8500147676 /* ReactNativeWebPFormat */ = {
63 | isa = PBXNativeTarget;
64 | buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "ReactNativeWebPFormat" */;
65 | buildPhases = (
66 | 58B511D71A9E6C8500147676 /* Sources */,
67 | 58B511D81A9E6C8500147676 /* Frameworks */,
68 | 58B511D91A9E6C8500147676 /* CopyFiles */,
69 | );
70 | buildRules = (
71 | );
72 | dependencies = (
73 | );
74 | name = ReactNativeWebPFormat;
75 | productName = RCTDataManager;
76 | productReference = 134814201AA4EA6300B7C361 /* libReactNativeWebPFormat.a */;
77 | productType = "com.apple.product-type.library.static";
78 | };
79 | /* End PBXNativeTarget section */
80 |
81 | /* Begin PBXProject section */
82 | 58B511D31A9E6C8500147676 /* Project object */ = {
83 | isa = PBXProject;
84 | attributes = {
85 | LastUpgradeCheck = 0610;
86 | ORGANIZATIONNAME = Facebook;
87 | TargetAttributes = {
88 | 58B511DA1A9E6C8500147676 = {
89 | CreatedOnToolsVersion = 6.1.1;
90 | };
91 | };
92 | };
93 | buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "ReactNativeWebPFormat" */;
94 | compatibilityVersion = "Xcode 3.2";
95 | developmentRegion = English;
96 | hasScannedForEncodings = 0;
97 | knownRegions = (
98 | English,
99 | en,
100 | );
101 | mainGroup = 58B511D21A9E6C8500147676;
102 | productRefGroup = 58B511D21A9E6C8500147676;
103 | projectDirPath = "";
104 | projectRoot = "";
105 | targets = (
106 | 58B511DA1A9E6C8500147676 /* ReactNativeWebPFormat */,
107 | );
108 | };
109 | /* End PBXProject section */
110 |
111 | /* Begin PBXSourcesBuildPhase section */
112 | 58B511D71A9E6C8500147676 /* Sources */ = {
113 | isa = PBXSourcesBuildPhase;
114 | buildActionMask = 2147483647;
115 | files = (
116 | 13BE3DEE1AC21097009241FE /* WebPImageDataDecoder.m in Sources */,
117 | );
118 | runOnlyForDeploymentPostprocessing = 0;
119 | };
120 | /* End PBXSourcesBuildPhase section */
121 |
122 | /* Begin XCBuildConfiguration section */
123 | 58B511ED1A9E6C8500147676 /* Debug */ = {
124 | isa = XCBuildConfiguration;
125 | buildSettings = {
126 | ALWAYS_SEARCH_USER_PATHS = NO;
127 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
128 | CLANG_CXX_LIBRARY = "libc++";
129 | CLANG_ENABLE_MODULES = YES;
130 | CLANG_ENABLE_OBJC_ARC = YES;
131 | CLANG_WARN_BOOL_CONVERSION = YES;
132 | CLANG_WARN_CONSTANT_CONVERSION = YES;
133 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
134 | CLANG_WARN_EMPTY_BODY = YES;
135 | CLANG_WARN_ENUM_CONVERSION = YES;
136 | CLANG_WARN_INT_CONVERSION = YES;
137 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
138 | CLANG_WARN_UNREACHABLE_CODE = YES;
139 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
140 | COPY_PHASE_STRIP = NO;
141 | ENABLE_STRICT_OBJC_MSGSEND = YES;
142 | GCC_C_LANGUAGE_STANDARD = gnu99;
143 | GCC_DYNAMIC_NO_PIC = NO;
144 | GCC_OPTIMIZATION_LEVEL = 0;
145 | GCC_PREPROCESSOR_DEFINITIONS = (
146 | "DEBUG=1",
147 | "$(inherited)",
148 | );
149 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
150 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
151 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
152 | GCC_WARN_UNDECLARED_SELECTOR = YES;
153 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
154 | GCC_WARN_UNUSED_FUNCTION = YES;
155 | GCC_WARN_UNUSED_VARIABLE = YES;
156 | IPHONEOS_DEPLOYMENT_TARGET = 7.0;
157 | MTL_ENABLE_DEBUG_INFO = YES;
158 | ONLY_ACTIVE_ARCH = YES;
159 | SDKROOT = iphoneos;
160 | };
161 | name = Debug;
162 | };
163 | 58B511EE1A9E6C8500147676 /* Release */ = {
164 | isa = XCBuildConfiguration;
165 | buildSettings = {
166 | ALWAYS_SEARCH_USER_PATHS = NO;
167 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
168 | CLANG_CXX_LIBRARY = "libc++";
169 | CLANG_ENABLE_MODULES = YES;
170 | CLANG_ENABLE_OBJC_ARC = YES;
171 | CLANG_WARN_BOOL_CONVERSION = YES;
172 | CLANG_WARN_CONSTANT_CONVERSION = YES;
173 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
174 | CLANG_WARN_EMPTY_BODY = YES;
175 | CLANG_WARN_ENUM_CONVERSION = YES;
176 | CLANG_WARN_INT_CONVERSION = YES;
177 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
178 | CLANG_WARN_UNREACHABLE_CODE = YES;
179 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
180 | COPY_PHASE_STRIP = YES;
181 | ENABLE_NS_ASSERTIONS = NO;
182 | ENABLE_STRICT_OBJC_MSGSEND = YES;
183 | GCC_C_LANGUAGE_STANDARD = gnu99;
184 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
185 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
186 | GCC_WARN_UNDECLARED_SELECTOR = YES;
187 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
188 | GCC_WARN_UNUSED_FUNCTION = YES;
189 | GCC_WARN_UNUSED_VARIABLE = YES;
190 | IPHONEOS_DEPLOYMENT_TARGET = 7.0;
191 | MTL_ENABLE_DEBUG_INFO = NO;
192 | SDKROOT = iphoneos;
193 | VALIDATE_PRODUCT = YES;
194 | };
195 | name = Release;
196 | };
197 | 58B511F01A9E6C8500147676 /* Debug */ = {
198 | isa = XCBuildConfiguration;
199 | buildSettings = {
200 | FRAMEWORK_SEARCH_PATHS = (
201 | "$(inherited)",
202 | "$(PROJECT_DIR)",
203 | );
204 | HEADER_SEARCH_PATHS = (
205 | "$(inherited)",
206 | "$(SRCROOT)/../../node_modules/react-native/React/**",
207 | "$(SRCROOT)/../../node_modules/react-native/Libraries/**",
208 | );
209 | LIBRARY_SEARCH_PATHS = "$(inherited)";
210 | OTHER_LDFLAGS = "-ObjC";
211 | PRODUCT_NAME = ReactNativeWebPFormat;
212 | SKIP_INSTALL = YES;
213 | };
214 | name = Debug;
215 | };
216 | 58B511F11A9E6C8500147676 /* Release */ = {
217 | isa = XCBuildConfiguration;
218 | buildSettings = {
219 | FRAMEWORK_SEARCH_PATHS = (
220 | "$(inherited)",
221 | "$(PROJECT_DIR)",
222 | );
223 | HEADER_SEARCH_PATHS = (
224 | "$(inherited)",
225 | "$(SRCROOT)/../../node_modules/react-native/React/**",
226 | "$(SRCROOT)/../../node_modules/react-native/Libraries/**",
227 | );
228 | LIBRARY_SEARCH_PATHS = "$(inherited)";
229 | OTHER_LDFLAGS = "-ObjC";
230 | PRODUCT_NAME = ReactNativeWebPFormat;
231 | SKIP_INSTALL = YES;
232 | };
233 | name = Release;
234 | };
235 | /* End XCBuildConfiguration section */
236 |
237 | /* Begin XCConfigurationList section */
238 | 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "ReactNativeWebPFormat" */ = {
239 | isa = XCConfigurationList;
240 | buildConfigurations = (
241 | 58B511ED1A9E6C8500147676 /* Debug */,
242 | 58B511EE1A9E6C8500147676 /* Release */,
243 | );
244 | defaultConfigurationIsVisible = 0;
245 | defaultConfigurationName = Release;
246 | };
247 | 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "ReactNativeWebPFormat" */ = {
248 | isa = XCConfigurationList;
249 | buildConfigurations = (
250 | 58B511F01A9E6C8500147676 /* Debug */,
251 | 58B511F11A9E6C8500147676 /* Release */,
252 | );
253 | defaultConfigurationIsVisible = 0;
254 | defaultConfigurationName = Release;
255 | };
256 | /* End XCConfigurationList section */
257 | };
258 | rootObject = 58B511D31A9E6C8500147676 /* Project object */;
259 | }
260 |
--------------------------------------------------------------------------------
/ios/WebPImageDataDecoder.h:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | @interface WebPImageDataDecoder : NSObject
4 | @end
5 |
--------------------------------------------------------------------------------
/ios/WebPImageDataDecoder.m:
--------------------------------------------------------------------------------
1 | #import "WebPImageDataDecoder.h"
2 | #import
3 | @implementation WebPImageDataDecoder
4 |
5 | RCT_EXPORT_MODULE()
6 | - (BOOL)canDecodeImageData:(NSData *)imageData
7 | {
8 | return [[SDImageWebPCoder sharedCoder] canDecodeFromData:imageData];
9 | }
10 | - (RCTImageLoaderCancellationBlock)decodeImageData:(NSData *)imageData
11 | size:(CGSize)size
12 | scale:(CGFloat)scale
13 | resizeMode:(RCTResizeMode)resizeMode
14 | completionHandler:(RCTImageLoaderCompletionBlock)completionHandler
15 | {
16 | UIImage *image = [[SDImageWebPCoder sharedCoder] decodedImageWithData:imageData options:nil];
17 | if (!image) {
18 | completionHandler(nil, nil);
19 | return ^{};
20 | }
21 | completionHandler(nil, image);
22 | return ^{};
23 | }
24 | @end
25 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-webp-format",
3 | "version": "1.2.1",
4 | "keywords": [
5 | "react",
6 | "react-native",
7 | "ios",
8 | "android",
9 | "webp"
10 | ],
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/Aleksefo/react-native-webp-format.git"
14 | },
15 | "description": "WebP integration for React Native apps",
16 | "homepage": "https://github.com/Aleksefo/react-native-webp-format#readme",
17 | "bugs": {
18 | "url": "https://github.com/Aleksefo/react-native-webp-format/issues"
19 | },
20 | "author": {
21 | "name": "Alex Fomushkin"
22 | },
23 | "license": "MIT"
24 | }
25 |
--------------------------------------------------------------------------------