├── .gitattributes ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── android ├── README.md ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── bang │ └── svga │ └── player │ ├── RCTSVGAImageView.java │ ├── RNSvgaPlayerManager.java │ └── RNSvgaPlayerPackage.java ├── example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── 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 ├── babel.config.js ├── demo.svga ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── metro.config.js ├── package.json └── yarn.lock ├── index.d.ts ├── index.js ├── index.tsx ├── ios ├── RNSvgaPlayer.h ├── RNSvgaPlayer.m ├── RNSvgaPlayer.xcodeproj │ └── project.pbxproj └── RNSvgaPlayer.xcworkspace │ └── contents.xcworkspacedata ├── package.json ├── react-native-svga-player.podspec ├── scripts └── examples_postinstall.js ├── tsconfig.json └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # node.js 6 | # 7 | node_modules/ 8 | npm-debug.log 9 | yarn-error.log 10 | 11 | # Xcode 12 | # 13 | build/ 14 | *.pbxuser 15 | !default.pbxuser 16 | *.mode1v3 17 | !default.mode1v3 18 | *.mode2v3 19 | !default.mode2v3 20 | *.perspectivev3 21 | !default.perspectivev3 22 | xcuserdata 23 | *.xccheckout 24 | *.moved-aside 25 | DerivedData 26 | *.hmap 27 | *.ipa 28 | *.xcuserstate 29 | project.xcworkspace 30 | 31 | # Android/IntelliJ 32 | # 33 | build/ 34 | .idea 35 | .gradle 36 | local.properties 37 | *.iml 38 | 39 | # BUCK 40 | buck-out/ 41 | \.buckd/ 42 | *.keystore 43 | .settings/ 44 | .project -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | example 2 | index.tsx 3 | tsconfig.json 4 | android/.idea 5 | android/build 6 | android/local.properties 7 | android/android.iml 8 | android/.gradle 9 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.configuration.updateBuildConfiguration": "interactive" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 启邦 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 | # react-native-svga-player 2 | 3 | ## Getting started 4 | 5 | `$ npm install react-native-svga-player --save` 6 | 7 | ### Mostly automatic installation 8 | 9 | > Linking it when your react-native is under `0.60.x` 10 | 11 | `$ react-native link react-native-svga-player` 12 | 13 | ## Usage 14 | 15 | ```javascript 16 | import RNSvgaPlayer from 'react-native-svga-player' 17 | 21 | ``` 22 | 23 | https://user-images.githubusercontent.com/433259/119592873-de64d580-be0b-11eb-94df-59a3dd2b1204.mp4 24 | -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- 1 | README 2 | ====== 3 | 4 | If you want to publish the lib as a maven dependency, follow these steps before publishing a new version to npm: 5 | 6 | 1. Be sure to have the Android [SDK](https://developer.android.com/studio/index.html) and [NDK](https://developer.android.com/ndk/guides/index.html) installed 7 | 2. Be sure to have a `local.properties` file in this folder that points to the Android SDK and NDK 8 | ``` 9 | ndk.dir=/Users/{username}/Library/Android/sdk/ndk-bundle 10 | sdk.dir=/Users/{username}/Library/Android/sdk 11 | ``` 12 | 3. Delete the `maven` folder 13 | 4. Run `./gradlew installArchives` 14 | 5. Verify that latest set of generated files is in the maven folder with the correct version number 15 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // android/build.gradle 2 | 3 | // based on: 4 | // 5 | // * https://github.com/facebook/react-native/blob/0.60-stable/template/android/build.gradle 6 | // original location: 7 | // - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/build.gradle 8 | // 9 | // * https://github.com/facebook/react-native/blob/0.60-stable/template/android/app/build.gradle 10 | // original location: 11 | // - https://github.com/facebook/react-native/blob/0.58-stable/local-cli/templates/HelloWorld/android/app/build.gradle 12 | 13 | def DEFAULT_COMPILE_SDK_VERSION = 28 14 | def DEFAULT_BUILD_TOOLS_VERSION = '28.0.3' 15 | def DEFAULT_MIN_SDK_VERSION = 16 16 | def DEFAULT_TARGET_SDK_VERSION = 28 17 | 18 | def safeExtGet(prop, fallback) { 19 | rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback 20 | } 21 | 22 | apply plugin: 'com.android.library' 23 | apply plugin: 'maven' 24 | 25 | buildscript { 26 | // The Android Gradle plugin is only required when opening the android folder stand-alone. 27 | // This avoids unnecessary downloads and potential conflicts when the library is included as a 28 | // module dependency in an application project. 29 | // ref: https://docs.gradle.org/current/userguide/tutorial_using_tasks.html#sec:build_script_external_dependencies 30 | if (project == rootProject) { 31 | repositories { 32 | google() 33 | jcenter() 34 | } 35 | dependencies { 36 | classpath 'com.android.tools.build:gradle:3.4.1' 37 | } 38 | } 39 | } 40 | 41 | apply plugin: 'com.android.library' 42 | apply plugin: 'maven' 43 | 44 | android { 45 | compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION) 46 | buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION) 47 | defaultConfig { 48 | minSdkVersion safeExtGet('minSdkVersion', DEFAULT_MIN_SDK_VERSION) 49 | targetSdkVersion safeExtGet('targetSdkVersion', DEFAULT_TARGET_SDK_VERSION) 50 | versionCode 1 51 | versionName "1.0" 52 | } 53 | lintOptions { 54 | abortOnError false 55 | } 56 | } 57 | 58 | repositories { 59 | // ref: https://www.baeldung.com/maven-local-repository 60 | mavenLocal() 61 | maven { 62 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 63 | url "$rootDir/../node_modules/react-native/android" 64 | } 65 | maven { 66 | // Android JSC is installed from npm 67 | url "$rootDir/../node_modules/jsc-android/dist" 68 | } 69 | google() 70 | jcenter() 71 | maven { url 'https://jitpack.io' } 72 | 73 | } 74 | 75 | dependencies { 76 | //noinspection GradleDynamicVersion 77 | implementation 'com.facebook.react:react-native:+' // From node_modules 78 | implementation 'com.github.yyued:SVGAPlayer-Android:2.6.1' 79 | 80 | } 81 | 82 | def configureReactNativePom(def pom) { 83 | def packageJson = new groovy.json.JsonSlurper().parseText(file('../package.json').text) 84 | 85 | pom.project { 86 | name packageJson.title 87 | artifactId packageJson.name 88 | version = packageJson.version 89 | group = "bang.svga.player" 90 | description packageJson.description 91 | url packageJson.repository.baseUrl 92 | 93 | licenses { 94 | license { 95 | name packageJson.license 96 | url packageJson.repository.baseUrl + '/blob/master/' + packageJson.licenseFilename 97 | distribution 'repo' 98 | } 99 | } 100 | 101 | developers { 102 | developer { 103 | id packageJson.author.username 104 | name packageJson.author.name 105 | } 106 | } 107 | } 108 | } 109 | 110 | afterEvaluate { project -> 111 | // some Gradle build hooks ref: 112 | // https://www.oreilly.com/library/view/gradle-beyond-the/9781449373801/ch03.html 113 | task androidJavadoc(type: Javadoc) { 114 | source = android.sourceSets.main.java.srcDirs 115 | classpath += files(android.bootClasspath) 116 | classpath += files(project.getConfigurations().getByName('compile').asList()) 117 | include '**/*.java' 118 | } 119 | 120 | task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) { 121 | classifier = 'javadoc' 122 | from androidJavadoc.destinationDir 123 | } 124 | 125 | task androidSourcesJar(type: Jar) { 126 | classifier = 'sources' 127 | from android.sourceSets.main.java.srcDirs 128 | include '**/*.java' 129 | } 130 | 131 | android.libraryVariants.all { variant -> 132 | def name = variant.name.capitalize() 133 | def javaCompileTask = variant.javaCompileProvider.get() 134 | 135 | task "jar${name}"(type: Jar, dependsOn: javaCompileTask) { 136 | from javaCompileTask.destinationDir 137 | } 138 | } 139 | 140 | artifacts { 141 | archives androidSourcesJar 142 | archives androidJavadocJar 143 | } 144 | 145 | task installArchives(type: Upload) { 146 | configuration = configurations.archives 147 | repositories.mavenDeployer { 148 | // Deploy to react-native-event-bridge/maven, ready to publish to npm 149 | repository url: "file://${projectDir}/../android/maven" 150 | configureReactNativePom pom 151 | } 152 | } 153 | } 154 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Feb 17 11:24:36 CST 2020 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip 7 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn () { 37 | echo "$*" 38 | } 39 | 40 | die () { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Escape application args 158 | save () { 159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 160 | echo " " 161 | } 162 | APP_ARGS=$(save "$@") 163 | 164 | # Collect all arguments for the java command, following the shell quoting and substitution rules 165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 166 | 167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then 169 | cd "$(dirname "$0")" 170 | fi 171 | 172 | exec "$JAVACMD" "$@" 173 | -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android/src/main/java/bang/svga/player/RCTSVGAImageView.java: -------------------------------------------------------------------------------- 1 | package bang.svga.player; 2 | 3 | import android.content.Context; 4 | import android.util.AttributeSet; 5 | 6 | import com.facebook.react.bridge.Arguments; 7 | import com.facebook.react.bridge.ReactContext; 8 | import com.facebook.react.bridge.WritableMap; 9 | import com.facebook.react.uimanager.events.RCTEventEmitter; 10 | import com.opensource.svgaplayer.SVGACallback; 11 | import com.opensource.svgaplayer.SVGAImageView; 12 | 13 | public class RCTSVGAImageView extends SVGAImageView { 14 | protected String currentState; 15 | public RCTSVGAImageView(Context context, AttributeSet attrs, int defStyleAttr) { 16 | super(context, attrs, defStyleAttr); 17 | this.setCallback(new SVGACallback() { 18 | 19 | @Override 20 | public void onStep(int frame, double percentage) { 21 | WritableMap changeMap = Arguments.createMap(); 22 | changeMap.putString("action", "onFrame"); 23 | changeMap.putInt("value", frame); 24 | ReactContext reactContext = (ReactContext) getContext(); 25 | reactContext.getJSModule(RCTEventEmitter.class). 26 | receiveEvent(getId(), "topChange", changeMap); 27 | 28 | 29 | WritableMap map = Arguments.createMap(); 30 | map.putString("action", "onPercentage"); 31 | map.putDouble("value", percentage); 32 | reactContext.getJSModule(RCTEventEmitter.class). 33 | receiveEvent(getId(), "topChange", map); 34 | 35 | 36 | } 37 | 38 | @Override 39 | public void onRepeat() { 40 | 41 | } 42 | 43 | @Override 44 | public void onPause() { 45 | 46 | } 47 | 48 | @Override 49 | public void onFinished() { 50 | WritableMap map = Arguments.createMap(); 51 | map.putString("action", "onFinished"); 52 | ReactContext reactContext = (ReactContext) getContext(); 53 | reactContext.getJSModule(RCTEventEmitter.class). 54 | receiveEvent(getId(), "topChange", map); 55 | } 56 | }); 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /android/src/main/java/bang/svga/player/RNSvgaPlayerManager.java: -------------------------------------------------------------------------------- 1 | package bang.svga.player; 2 | 3 | import android.content.Context; 4 | import android.view.View; 5 | 6 | import androidx.appcompat.widget.AppCompatCheckBox; 7 | 8 | import com.facebook.react.uimanager.SimpleViewManager; 9 | import com.facebook.react.uimanager.ThemedReactContext; 10 | import com.facebook.react.uimanager.annotations.ReactProp; 11 | import com.opensource.svgaplayer.SVGAImageView; 12 | import com.opensource.svgaplayer.SVGAParser; 13 | import com.opensource.svgaplayer.SVGAVideoEntity; 14 | 15 | import java.net.URL; 16 | 17 | 18 | import static android.provider.ContactsContract.CommonDataKinds.Website.URL; 19 | 20 | public class RNSvgaPlayerManager extends SimpleViewManager { 21 | 22 | public static final String REACT_CLASS = "RNSvgaPlayer"; 23 | 24 | @Override 25 | public String getName() { 26 | return REACT_CLASS; 27 | } 28 | 29 | @Override 30 | public RCTSVGAImageView createViewInstance(ThemedReactContext c) { 31 | return new RCTSVGAImageView(c, null, 0); 32 | } 33 | 34 | @ReactProp(name = "source") 35 | public void setSource(final RCTSVGAImageView view, String source) { 36 | Context context = view.getContext(); 37 | if (source.startsWith("http") || source.startsWith("https")) { 38 | try { 39 | new SVGAParser(context).parse(new URL(source), new SVGAParser.ParseCompletion() { 40 | @Override 41 | public void onError() { 42 | 43 | } 44 | 45 | @Override 46 | public void onComplete(SVGAVideoEntity videoItem) { 47 | view.setVideoItem(videoItem); 48 | view.startAnimation(); 49 | } 50 | 51 | }); 52 | } catch (Exception e) { 53 | } 54 | } else { 55 | try { 56 | new SVGAParser(context).parse(source, new SVGAParser.ParseCompletion() { 57 | @Override 58 | public void onError() { 59 | 60 | } 61 | 62 | @Override 63 | public void onComplete(SVGAVideoEntity videoItem) { 64 | view.setVideoItem(videoItem); 65 | view.startAnimation(); 66 | } 67 | }); 68 | } catch (Exception e) { 69 | } 70 | } 71 | } 72 | 73 | @ReactProp(name = "loops", defaultInt = 0) 74 | public void setLoops(RCTSVGAImageView view, int loops) { 75 | view.setLoops(loops); 76 | } 77 | 78 | @ReactProp(name = "clearsAfterStop", defaultBoolean = true) 79 | public void setClearsAfterStop(RCTSVGAImageView view, Boolean clearsAfterStop) { 80 | view.setClearsAfterStop(clearsAfterStop); 81 | } 82 | 83 | @ReactProp(name = "currentState") 84 | public void setCurrentState(RCTSVGAImageView view, String currentState) { 85 | view.currentState = currentState; 86 | switch (currentState) { 87 | case "start": 88 | view.startAnimation(); 89 | break; 90 | case "pause": 91 | view.pauseAnimation(); 92 | break; 93 | case "stop": 94 | view.stopAnimation(); 95 | break; 96 | case "clear": 97 | view.stopAnimation(true); 98 | break; 99 | default: 100 | break; 101 | } 102 | } 103 | 104 | @ReactProp(name = "toFrame", defaultInt = -1) 105 | public void setToFrame(RCTSVGAImageView view, int toFrame) { 106 | if (toFrame < 0) { 107 | return; 108 | } 109 | view.stepToFrame(toFrame, view.currentState.equals("play") ? true : false); 110 | } 111 | 112 | @ReactProp(name = "toPercentage", defaultFloat = -1.0f) 113 | public void setToPercentage(RCTSVGAImageView view, float toPercentage) { 114 | if (toPercentage < 0) { 115 | return; 116 | } 117 | view.stepToPercentage((double) toPercentage, view.currentState.equals("play") ? true : false); 118 | } 119 | } 120 | -------------------------------------------------------------------------------- /android/src/main/java/bang/svga/player/RNSvgaPlayerPackage.java: -------------------------------------------------------------------------------- 1 | package bang.svga.player; 2 | 3 | import java.util.Arrays; 4 | import java.util.Collections; 5 | import java.util.List; 6 | 7 | import com.facebook.react.ReactPackage; 8 | import com.facebook.react.bridge.NativeModule; 9 | import com.facebook.react.bridge.ReactApplicationContext; 10 | import com.facebook.react.uimanager.ViewManager; 11 | import com.facebook.react.bridge.JavaScriptModule; 12 | 13 | public class RNSvgaPlayerPackage implements ReactPackage { 14 | @Override 15 | public List createNativeModules(ReactApplicationContext reactContext) { 16 | return Collections.emptyList(); 17 | } 18 | 19 | @Override 20 | public List createViewManagers(ReactApplicationContext reactContext) { 21 | return Arrays.asList(new RNSvgaPlayerManager()); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | ; We fork some components by platform 3 | .*/*[.]android.js 4 | 5 | ; Ignore "BUCK" generated dirs 6 | /\.buckd/ 7 | 8 | ; Ignore polyfills 9 | node_modules/react-native/Libraries/polyfills/.* 10 | 11 | ; Flow doesn't support platforms 12 | .*/Libraries/Utilities/LoadingView.js 13 | 14 | [untyped] 15 | .*/node_modules/@react-native-community/cli/.*/.* 16 | 17 | [include] 18 | 19 | [libs] 20 | node_modules/react-native/interface.js 21 | node_modules/react-native/flow/ 22 | 23 | [options] 24 | emoji=true 25 | 26 | esproposal.optional_chaining=enable 27 | esproposal.nullish_coalescing=enable 28 | 29 | exact_by_default=true 30 | 31 | module.file_ext=.js 32 | module.file_ext=.json 33 | module.file_ext=.ios.js 34 | 35 | munge_underscores=true 36 | 37 | module.name_mapper='^react-native/\(.*\)$' -> '/node_modules/react-native/\1' 38 | module.name_mapper='^@?[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> '/node_modules/react-native/Libraries/Image/RelativeImageStub' 39 | 40 | suppress_type=$FlowIssue 41 | suppress_type=$FlowFixMe 42 | suppress_type=$FlowFixMeProps 43 | suppress_type=$FlowFixMeState 44 | 45 | [lints] 46 | sketchy-null-number=warn 47 | sketchy-null-mixed=warn 48 | sketchy-number=warn 49 | untyped-type-import=warn 50 | nonstrict-import=warn 51 | deprecated-type=warn 52 | unsafe-getters-setters=warn 53 | unnecessary-invariant=warn 54 | signature-verification-failure=warn 55 | 56 | [strict] 57 | deprecated-type 58 | nonstrict-import 59 | sketchy-null 60 | unclear-type 61 | unsafe-getters-setters 62 | untyped-import 63 | untyped-type-import 64 | 65 | [version] 66 | ^0.137.0 67 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | # Windows files should use crlf line endings 2 | # https://help.github.com/articles/dealing-with-line-endings/ 3 | *.bat text eol=crlf 4 | -------------------------------------------------------------------------------- /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 | 24 | # Android/IntelliJ 25 | # 26 | build/ 27 | .idea 28 | .gradle 29 | local.properties 30 | *.iml 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | yarn-error.log 37 | 38 | # BUCK 39 | buck-out/ 40 | \.buckd/ 41 | *.keystore 42 | !debug.keystore 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 | 55 | # Bundle artifact 56 | *.jsbundle 57 | 58 | # CocoaPods 59 | /ios/Pods/ 60 | -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSpacing: false, 3 | jsxBracketSameLine: true, 4 | singleQuote: true, 5 | trailingComma: 'all', 6 | arrowParens: 'avoid', 7 | }; 8 | -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import {Platform, StyleSheet, Text, View, ScrollView} from 'react-native'; 3 | import RNSvgaPlayer from 'react-native-svga-player'; 4 | 5 | export default class App extends Component { 6 | render() { 7 | const files = [ 8 | 'Goddess', 9 | 'Rocket', 10 | 'matteBitmap', 11 | 'heartbeat', 12 | 'matteRect', 13 | 'mutiMatte', 14 | 'rose_2.0.0', 15 | ]; 16 | return ( 17 | 18 | Svga 19 | 20 | {files.map(f => ( 21 | 26 | 30 | {f} 31 | 32 | ))} 33 | 34 | 35 | ); 36 | } 37 | } 38 | 39 | const styles = StyleSheet.create({ 40 | container: { 41 | flex: 1, 42 | justifyContent: 'center', 43 | flexDirection: 'row', 44 | flexWrap: 'wrap', 45 | }, 46 | welcome: { 47 | fontSize: 20, 48 | textAlign: 'center', 49 | margin: 10, 50 | marginTop: 80, 51 | }, 52 | instructions: { 53 | textAlign: 'center', 54 | color: '#333333', 55 | marginBottom: 5, 56 | }, 57 | }); 58 | -------------------------------------------------------------------------------- /example/__tests__/App-test.js: -------------------------------------------------------------------------------- 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/android/app/_BUCK: -------------------------------------------------------------------------------- 1 | # To learn about Buck see [Docs](https://buckbuild.com/). 2 | # To run your application with Buck: 3 | # - install Buck 4 | # - `npm start` - to start the packager 5 | # - `cd android` 6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 8 | # - `buck install -r android/app` - compile, install and run application 9 | # 10 | 11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets") 12 | 13 | lib_deps = [] 14 | 15 | create_aar_targets(glob(["libs/*.aar"])) 16 | 17 | create_jar_targets(glob(["libs/*.jar"])) 18 | 19 | android_library( 20 | name = "all-libs", 21 | exported_deps = lib_deps, 22 | ) 23 | 24 | android_library( 25 | name = "app-code", 26 | srcs = glob([ 27 | "src/main/java/**/*.java", 28 | ]), 29 | deps = [ 30 | ":all-libs", 31 | ":build_config", 32 | ":res", 33 | ], 34 | ) 35 | 36 | android_build_config( 37 | name = "build_config", 38 | package = "com.example", 39 | ) 40 | 41 | android_resource( 42 | name = "res", 43 | package = "com.example", 44 | res = "src/main/res", 45 | ) 46 | 47 | android_binary( 48 | name = "app", 49 | keystore = "//android/keystores:debug", 50 | manifest = "src/main/AndroidManifest.xml", 51 | package_type = "debug", 52 | deps = [ 53 | ":app-code", 54 | ], 55 | ) 56 | -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation. If none specified and 19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is 20 | * // default. Can be overridden with ENTRY_FILE environment variable. 21 | * entryFile: "index.android.js", 22 | * 23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format 24 | * bundleCommand: "ram-bundle", 25 | * 26 | * // whether to bundle JS and assets in debug mode 27 | * bundleInDebug: false, 28 | * 29 | * // whether to bundle JS and assets in release mode 30 | * bundleInRelease: true, 31 | * 32 | * // whether to bundle JS and assets in another build variant (if configured). 33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 34 | * // The configuration property can be in the following formats 35 | * // 'bundleIn${productFlavor}${buildType}' 36 | * // 'bundleIn${buildType}' 37 | * // bundleInFreeDebug: true, 38 | * // bundleInPaidRelease: true, 39 | * // bundleInBeta: true, 40 | * 41 | * // whether to disable dev mode in custom build variants (by default only disabled in release) 42 | * // for example: to disable dev mode in the staging build type (if configured) 43 | * devDisabledInStaging: true, 44 | * // The configuration property can be in the following formats 45 | * // 'devDisabledIn${productFlavor}${buildType}' 46 | * // 'devDisabledIn${buildType}' 47 | * 48 | * // the root of your project, i.e. where "package.json" lives 49 | * root: "../../", 50 | * 51 | * // where to put the JS bundle asset in debug mode 52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 53 | * 54 | * // where to put the JS bundle asset in release mode 55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 56 | * 57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 58 | * // require('./image.png')), in debug mode 59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 60 | * 61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 62 | * // require('./image.png')), in release mode 63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 64 | * 65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 69 | * // for example, you might want to remove it from here. 70 | * inputExcludes: ["android/**", "ios/**"], 71 | * 72 | * // override which node gets called and with what additional arguments 73 | * nodeExecutableAndArgs: ["node"], 74 | * 75 | * // supply additional arguments to the packager 76 | * extraPackagerArgs: [] 77 | * ] 78 | */ 79 | 80 | project.ext.react = [ 81 | enableHermes: false, // clean and rebuild if changing 82 | ] 83 | 84 | apply from: "../../node_modules/react-native/react.gradle" 85 | 86 | /** 87 | * Set this to true to create two separate APKs instead of one: 88 | * - An APK that only works on ARM devices 89 | * - An APK that only works on x86 devices 90 | * The advantage is the size of the APK is reduced by about 4MB. 91 | * Upload all the APKs to the Play Store and people will download 92 | * the correct one based on the CPU architecture of their device. 93 | */ 94 | def enableSeparateBuildPerCPUArchitecture = false 95 | 96 | /** 97 | * Run Proguard to shrink the Java bytecode in release builds. 98 | */ 99 | def enableProguardInReleaseBuilds = false 100 | 101 | /** 102 | * The preferred build flavor of JavaScriptCore. 103 | * 104 | * For example, to use the international variant, you can use: 105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` 106 | * 107 | * The international variant includes ICU i18n library and necessary data 108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that 109 | * give correct results when using with locales other than en-US. Note that 110 | * this variant is about 6MiB larger per architecture than default. 111 | */ 112 | def jscFlavor = 'org.webkit:android-jsc:+' 113 | 114 | /** 115 | * Whether to enable the Hermes VM. 116 | * 117 | * This should be set on project.ext.react and mirrored here. If it is not set 118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode 119 | * and the benefits of using Hermes will therefore be sharply reduced. 120 | */ 121 | def enableHermes = project.ext.react.get("enableHermes", false); 122 | 123 | android { 124 | ndkVersion rootProject.ext.ndkVersion 125 | 126 | compileSdkVersion rootProject.ext.compileSdkVersion 127 | 128 | compileOptions { 129 | sourceCompatibility JavaVersion.VERSION_1_8 130 | targetCompatibility JavaVersion.VERSION_1_8 131 | } 132 | 133 | defaultConfig { 134 | applicationId "com.example" 135 | minSdkVersion rootProject.ext.minSdkVersion 136 | targetSdkVersion rootProject.ext.targetSdkVersion 137 | versionCode 1 138 | versionName "1.0" 139 | } 140 | splits { 141 | abi { 142 | reset() 143 | enable enableSeparateBuildPerCPUArchitecture 144 | universalApk false // If true, also generate a universal APK 145 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" 146 | } 147 | } 148 | 149 | sourceSets { 150 | main { 151 | jniLibs.srcDirs = ['libs'] 152 | } 153 | } 154 | 155 | signingConfigs { 156 | debug { 157 | storeFile file('debug.keystore') 158 | storePassword 'android' 159 | keyAlias 'androiddebugkey' 160 | keyPassword 'android' 161 | } 162 | } 163 | buildTypes { 164 | debug { 165 | signingConfig signingConfigs.debug 166 | } 167 | release { 168 | // Caution! In production, you need to generate your own keystore file. 169 | // see https://reactnative.dev/docs/signed-apk-android. 170 | signingConfig signingConfigs.debug 171 | minifyEnabled enableProguardInReleaseBuilds 172 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 173 | } 174 | } 175 | 176 | // applicationVariants are e.g. debug, release 177 | applicationVariants.all { variant -> 178 | variant.outputs.each { output -> 179 | // For each separate APK per architecture, set a unique version code as described here: 180 | // https://developer.android.com/studio/build/configure-apk-splits.html 181 | // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. 182 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] 183 | def abi = output.getFilter(OutputFile.ABI) 184 | if (abi != null) { // null for the universal-debug, universal-release variants 185 | output.versionCodeOverride = 186 | defaultConfig.versionCode * 1000 + versionCodes.get(abi) 187 | } 188 | 189 | } 190 | } 191 | } 192 | 193 | dependencies { 194 | implementation fileTree(dir: "libs", include: ["*.jar"]) 195 | //noinspection GradleDynamicVersion 196 | // implementation "com.facebook.react:react-native:+" // From node_modules 197 | implementation ("com.facebook.react:react-native") version { 198 | strictly "0.70.3" 199 | } 200 | 201 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 202 | 203 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 204 | exclude group: 'com.facebook.fbjni' 205 | } 206 | 207 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { 208 | exclude group: 'com.facebook.flipper' 209 | exclude group: 'com.squareup.okhttp3', module: 'okhttp' 210 | } 211 | 212 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { 213 | exclude group: 'com.facebook.flipper' 214 | } 215 | 216 | if (enableHermes) { 217 | def hermesPath = "../../node_modules/hermes-engine/android/"; 218 | debugImplementation files(hermesPath + "hermes-debug.aar") 219 | releaseImplementation files(hermesPath + "hermes-release.aar") 220 | } else { 221 | implementation jscFlavor 222 | } 223 | } 224 | 225 | // Run this once to be able to run the application with BUCK 226 | // puts all compile dependencies into folder libs for BUCK to use 227 | task copyDownloadableDepsToLibs(type: Copy) { 228 | from configurations.compile 229 | into 'libs' 230 | } 231 | 232 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project) 233 | -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- 1 | """Helper definitions to glob .aar and .jar targets""" 2 | 3 | def create_aar_targets(aarfiles): 4 | for aarfile in aarfiles: 5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")] 6 | lib_deps.append(":" + name) 7 | android_prebuilt_aar( 8 | name = name, 9 | aar = aarfile, 10 | ) 11 | 12 | def create_jar_targets(jarfiles): 13 | for jarfile in jarfiles: 14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")] 15 | lib_deps.append(":" + name) 16 | prebuilt_jar( 17 | name = name, 18 | binary_jar = jarfile, 19 | ) 20 | -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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 | 6 | 7 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | *

This source code is licensed under the MIT license found in the LICENSE file in the root 5 | * directory of this source tree. 6 | */ 7 | package com.example; 8 | 9 | import android.content.Context; 10 | import com.facebook.flipper.android.AndroidFlipperClient; 11 | import com.facebook.flipper.android.utils.FlipperUtils; 12 | import com.facebook.flipper.core.FlipperClient; 13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; 14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; 15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; 16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping; 17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; 18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; 19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; 20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin; 21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; 22 | import com.facebook.react.ReactInstanceManager; 23 | import com.facebook.react.bridge.ReactContext; 24 | import com.facebook.react.modules.network.NetworkingModule; 25 | import okhttp3.OkHttpClient; 26 | 27 | public class ReactNativeFlipper { 28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { 29 | if (FlipperUtils.shouldEnableFlipper(context)) { 30 | final FlipperClient client = AndroidFlipperClient.getInstance(context); 31 | 32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); 33 | client.addPlugin(new ReactFlipperPlugin()); 34 | client.addPlugin(new DatabasesFlipperPlugin(context)); 35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context)); 36 | client.addPlugin(CrashReporterPlugin.getInstance()); 37 | 38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); 39 | NetworkingModule.setCustomClientBuilder( 40 | new NetworkingModule.CustomClientBuilder() { 41 | @Override 42 | public void apply(OkHttpClient.Builder builder) { 43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); 44 | } 45 | }); 46 | client.addPlugin(networkFlipperPlugin); 47 | client.start(); 48 | 49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized 50 | // Hence we run if after all native modules have been initialized 51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); 52 | if (reactContext == null) { 53 | reactInstanceManager.addReactInstanceEventListener( 54 | new ReactInstanceManager.ReactInstanceEventListener() { 55 | @Override 56 | public void onReactContextInitialized(ReactContext reactContext) { 57 | reactInstanceManager.removeReactInstanceEventListener(this); 58 | reactContext.runOnNativeModulesQueueThread( 59 | new Runnable() { 60 | @Override 61 | public void run() { 62 | client.addPlugin(new FrescoFlipperPlugin()); 63 | } 64 | }); 65 | } 66 | }); 67 | } else { 68 | client.addPlugin(new FrescoFlipperPlugin()); 69 | } 70 | } 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 13 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. This is used to schedule 9 | * rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "example"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | import android.net.http.HttpResponseCache; 6 | 7 | import com.facebook.react.PackageList; 8 | import com.facebook.react.ReactApplication; 9 | import com.facebook.react.ReactInstanceManager; 10 | import com.facebook.react.ReactNativeHost; 11 | import com.facebook.react.ReactPackage; 12 | import com.facebook.soloader.SoLoader; 13 | import java.lang.reflect.InvocationTargetException; 14 | import java.util.List; 15 | 16 | public class MainApplication extends Application implements ReactApplication { 17 | 18 | private final ReactNativeHost mReactNativeHost = 19 | new ReactNativeHost(this) { 20 | @Override 21 | public boolean getUseDeveloperSupport() { 22 | return BuildConfig.DEBUG; 23 | } 24 | 25 | @Override 26 | protected List getPackages() { 27 | @SuppressWarnings("UnnecessaryLocalVariable") 28 | List packages = new PackageList(this).getPackages(); 29 | // Packages that cannot be autolinked yet can be added manually here, for example: 30 | // packages.add(new MyReactNativePackage()); 31 | return packages; 32 | } 33 | 34 | @Override 35 | protected String getJSMainModuleName() { 36 | return "index"; 37 | } 38 | }; 39 | 40 | @Override 41 | public ReactNativeHost getReactNativeHost() { 42 | return mReactNativeHost; 43 | } 44 | 45 | @Override 46 | public void onCreate() { 47 | super.onCreate(); 48 | SoLoader.init(this, /* native exopackage */ false); 49 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 50 | 51 | } 52 | 53 | /** 54 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like 55 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); 56 | * 57 | * @param context 58 | * @param reactInstanceManager 59 | */ 60 | private static void initializeFlipper( 61 | Context context, ReactInstanceManager reactInstanceManager) { 62 | if (BuildConfig.DEBUG) { 63 | try { 64 | /* 65 | We use reflection here to pick up the class that initializes Flipper, 66 | since Flipper library is not available in release mode 67 | */ 68 | Class aClass = Class.forName("com.example.ReactNativeFlipper"); 69 | aClass 70 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) 71 | .invoke(null, context, reactInstanceManager); 72 | } catch (ClassNotFoundException e) { 73 | e.printStackTrace(); 74 | } catch (NoSuchMethodException e) { 75 | e.printStackTrace(); 76 | } catch (IllegalAccessException e) { 77 | e.printStackTrace(); 78 | } catch (InvocationTargetException e) { 79 | e.printStackTrace(); 80 | } 81 | } 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | buildToolsVersion = "31.0.3" 6 | minSdkVersion = 21 7 | compileSdkVersion = 31 8 | targetSdkVersion = 31 9 | ndkVersion = "20.1.5948944" 10 | } 11 | repositories { 12 | google() 13 | jcenter() 14 | } 15 | dependencies { 16 | classpath("com.android.tools.build:gradle:4.1.0") 17 | // NOTE: Do not place your application dependencies here; they belong 18 | // in the individual module build.gradle files 19 | } 20 | } 21 | 22 | allprojects { 23 | repositories { 24 | // exclusiveContent { 25 | // // We get React Native's Android binaries exclusively through npm, 26 | // // from a local Maven repo inside node_modules/react-native/. 27 | // // (The use of exclusiveContent prevents looking elsewhere like Maven Central 28 | // // and potentially getting a wrong version.) 29 | // filter { 30 | // includeGroup "com.facebook.react" 31 | // } 32 | // forRepository { 33 | // maven { 34 | // // NOTE: if you are in a monorepo, you may have "$rootDir/../../../node_modules/react-native/android" 35 | // url "$rootDir/../node_modules/react-native/android" 36 | // } 37 | // } 38 | // } 39 | mavenLocal() 40 | maven { 41 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 42 | url("$rootDir/../node_modules/react-native/android") 43 | } 44 | maven { 45 | // Android JSC is installed from npm 46 | url("$rootDir/../node_modules/jsc-android/dist") 47 | } 48 | 49 | google() 50 | jcenter() 51 | maven { url 'https://www.jitpack.io' } 52 | } 53 | } 54 | 55 | 56 | -------------------------------------------------------------------------------- /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: -Xmx10248m -XX:MaxPermSize=256m 13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 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 | # Automatically convert third-party libraries to use AndroidX 25 | android.enableJetifier=true 26 | 27 | # Version of flipper SDK to use with React Native 28 | FLIPPER_VERSION=0.75.1 29 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/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-6.7-all.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or 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 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /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 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "displayName": "example" 4 | } -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['module:metro-react-native-babel-preset'], 3 | }; 4 | -------------------------------------------------------------------------------- /example/demo.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BANG88/react-native-svga-player/74856743c57ed4d3b802e59788b45d35b2cf788f/example/demo.svga -------------------------------------------------------------------------------- /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/Podfile: -------------------------------------------------------------------------------- 1 | require_relative '../node_modules/react-native/scripts/react_native_pods' 2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' 3 | 4 | platform :ios, '10.0' 5 | 6 | target 'example' do 7 | config = use_native_modules! 8 | 9 | use_react_native!( 10 | :path => config[:reactNativePath], 11 | # to enable hermes on iOS, change `false` to `true` and then install pods 12 | :hermes_enabled => false 13 | ) 14 | 15 | target 'exampleTests' do 16 | inherit! :complete 17 | # Pods for testing 18 | end 19 | 20 | # Enables Flipper. 21 | # 22 | # Note that if you have use_frameworks! enabled, Flipper will not work and 23 | # you should disable the next line. 24 | use_flipper!() 25 | 26 | post_install do |installer| 27 | react_native_post_install(installer) 28 | end 29 | end -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - boost-for-react-native (1.63.0) 3 | - CocoaAsyncSocket (7.6.5) 4 | - DoubleConversion (1.1.6) 5 | - FBLazyVector (0.64.1) 6 | - FBReactNativeSpec (0.64.1): 7 | - RCT-Folly (= 2020.01.13.00) 8 | - RCTRequired (= 0.64.1) 9 | - RCTTypeSafety (= 0.64.1) 10 | - React-Core (= 0.64.1) 11 | - React-jsi (= 0.64.1) 12 | - ReactCommon/turbomodule/core (= 0.64.1) 13 | - Flipper (0.75.1): 14 | - Flipper-Folly (~> 2.5) 15 | - Flipper-RSocket (~> 1.3) 16 | - Flipper-DoubleConversion (1.1.7) 17 | - Flipper-Folly (2.5.3): 18 | - boost-for-react-native 19 | - Flipper-DoubleConversion 20 | - Flipper-Glog 21 | - libevent (~> 2.1.12) 22 | - OpenSSL-Universal (= 1.1.180) 23 | - Flipper-Glog (0.3.6) 24 | - Flipper-PeerTalk (0.0.4) 25 | - Flipper-RSocket (1.3.1): 26 | - Flipper-Folly (~> 2.5) 27 | - FlipperKit (0.75.1): 28 | - FlipperKit/Core (= 0.75.1) 29 | - FlipperKit/Core (0.75.1): 30 | - Flipper (~> 0.75.1) 31 | - FlipperKit/CppBridge 32 | - FlipperKit/FBCxxFollyDynamicConvert 33 | - FlipperKit/FBDefines 34 | - FlipperKit/FKPortForwarding 35 | - FlipperKit/CppBridge (0.75.1): 36 | - Flipper (~> 0.75.1) 37 | - FlipperKit/FBCxxFollyDynamicConvert (0.75.1): 38 | - Flipper-Folly (~> 2.5) 39 | - FlipperKit/FBDefines (0.75.1) 40 | - FlipperKit/FKPortForwarding (0.75.1): 41 | - CocoaAsyncSocket (~> 7.6) 42 | - Flipper-PeerTalk (~> 0.0.4) 43 | - FlipperKit/FlipperKitHighlightOverlay (0.75.1) 44 | - FlipperKit/FlipperKitLayoutPlugin (0.75.1): 45 | - FlipperKit/Core 46 | - FlipperKit/FlipperKitHighlightOverlay 47 | - FlipperKit/FlipperKitLayoutTextSearchable 48 | - YogaKit (~> 1.18) 49 | - FlipperKit/FlipperKitLayoutTextSearchable (0.75.1) 50 | - FlipperKit/FlipperKitNetworkPlugin (0.75.1): 51 | - FlipperKit/Core 52 | - FlipperKit/FlipperKitReactPlugin (0.75.1): 53 | - FlipperKit/Core 54 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.75.1): 55 | - FlipperKit/Core 56 | - FlipperKit/SKIOSNetworkPlugin (0.75.1): 57 | - FlipperKit/Core 58 | - FlipperKit/FlipperKitNetworkPlugin 59 | - glog (0.3.5) 60 | - libevent (2.1.12) 61 | - OpenSSL-Universal (1.1.180) 62 | - Protobuf (3.17.0) 63 | - RCT-Folly (2020.01.13.00): 64 | - boost-for-react-native 65 | - DoubleConversion 66 | - glog 67 | - RCT-Folly/Default (= 2020.01.13.00) 68 | - RCT-Folly/Default (2020.01.13.00): 69 | - boost-for-react-native 70 | - DoubleConversion 71 | - glog 72 | - RCTRequired (0.64.1) 73 | - RCTTypeSafety (0.64.1): 74 | - FBLazyVector (= 0.64.1) 75 | - RCT-Folly (= 2020.01.13.00) 76 | - RCTRequired (= 0.64.1) 77 | - React-Core (= 0.64.1) 78 | - React (0.64.1): 79 | - React-Core (= 0.64.1) 80 | - React-Core/DevSupport (= 0.64.1) 81 | - React-Core/RCTWebSocket (= 0.64.1) 82 | - React-RCTActionSheet (= 0.64.1) 83 | - React-RCTAnimation (= 0.64.1) 84 | - React-RCTBlob (= 0.64.1) 85 | - React-RCTImage (= 0.64.1) 86 | - React-RCTLinking (= 0.64.1) 87 | - React-RCTNetwork (= 0.64.1) 88 | - React-RCTSettings (= 0.64.1) 89 | - React-RCTText (= 0.64.1) 90 | - React-RCTVibration (= 0.64.1) 91 | - React-callinvoker (0.64.1) 92 | - React-Core (0.64.1): 93 | - glog 94 | - RCT-Folly (= 2020.01.13.00) 95 | - React-Core/Default (= 0.64.1) 96 | - React-cxxreact (= 0.64.1) 97 | - React-jsi (= 0.64.1) 98 | - React-jsiexecutor (= 0.64.1) 99 | - React-perflogger (= 0.64.1) 100 | - Yoga 101 | - React-Core/CoreModulesHeaders (0.64.1): 102 | - glog 103 | - RCT-Folly (= 2020.01.13.00) 104 | - React-Core/Default 105 | - React-cxxreact (= 0.64.1) 106 | - React-jsi (= 0.64.1) 107 | - React-jsiexecutor (= 0.64.1) 108 | - React-perflogger (= 0.64.1) 109 | - Yoga 110 | - React-Core/Default (0.64.1): 111 | - glog 112 | - RCT-Folly (= 2020.01.13.00) 113 | - React-cxxreact (= 0.64.1) 114 | - React-jsi (= 0.64.1) 115 | - React-jsiexecutor (= 0.64.1) 116 | - React-perflogger (= 0.64.1) 117 | - Yoga 118 | - React-Core/DevSupport (0.64.1): 119 | - glog 120 | - RCT-Folly (= 2020.01.13.00) 121 | - React-Core/Default (= 0.64.1) 122 | - React-Core/RCTWebSocket (= 0.64.1) 123 | - React-cxxreact (= 0.64.1) 124 | - React-jsi (= 0.64.1) 125 | - React-jsiexecutor (= 0.64.1) 126 | - React-jsinspector (= 0.64.1) 127 | - React-perflogger (= 0.64.1) 128 | - Yoga 129 | - React-Core/RCTActionSheetHeaders (0.64.1): 130 | - glog 131 | - RCT-Folly (= 2020.01.13.00) 132 | - React-Core/Default 133 | - React-cxxreact (= 0.64.1) 134 | - React-jsi (= 0.64.1) 135 | - React-jsiexecutor (= 0.64.1) 136 | - React-perflogger (= 0.64.1) 137 | - Yoga 138 | - React-Core/RCTAnimationHeaders (0.64.1): 139 | - glog 140 | - RCT-Folly (= 2020.01.13.00) 141 | - React-Core/Default 142 | - React-cxxreact (= 0.64.1) 143 | - React-jsi (= 0.64.1) 144 | - React-jsiexecutor (= 0.64.1) 145 | - React-perflogger (= 0.64.1) 146 | - Yoga 147 | - React-Core/RCTBlobHeaders (0.64.1): 148 | - glog 149 | - RCT-Folly (= 2020.01.13.00) 150 | - React-Core/Default 151 | - React-cxxreact (= 0.64.1) 152 | - React-jsi (= 0.64.1) 153 | - React-jsiexecutor (= 0.64.1) 154 | - React-perflogger (= 0.64.1) 155 | - Yoga 156 | - React-Core/RCTImageHeaders (0.64.1): 157 | - glog 158 | - RCT-Folly (= 2020.01.13.00) 159 | - React-Core/Default 160 | - React-cxxreact (= 0.64.1) 161 | - React-jsi (= 0.64.1) 162 | - React-jsiexecutor (= 0.64.1) 163 | - React-perflogger (= 0.64.1) 164 | - Yoga 165 | - React-Core/RCTLinkingHeaders (0.64.1): 166 | - glog 167 | - RCT-Folly (= 2020.01.13.00) 168 | - React-Core/Default 169 | - React-cxxreact (= 0.64.1) 170 | - React-jsi (= 0.64.1) 171 | - React-jsiexecutor (= 0.64.1) 172 | - React-perflogger (= 0.64.1) 173 | - Yoga 174 | - React-Core/RCTNetworkHeaders (0.64.1): 175 | - glog 176 | - RCT-Folly (= 2020.01.13.00) 177 | - React-Core/Default 178 | - React-cxxreact (= 0.64.1) 179 | - React-jsi (= 0.64.1) 180 | - React-jsiexecutor (= 0.64.1) 181 | - React-perflogger (= 0.64.1) 182 | - Yoga 183 | - React-Core/RCTSettingsHeaders (0.64.1): 184 | - glog 185 | - RCT-Folly (= 2020.01.13.00) 186 | - React-Core/Default 187 | - React-cxxreact (= 0.64.1) 188 | - React-jsi (= 0.64.1) 189 | - React-jsiexecutor (= 0.64.1) 190 | - React-perflogger (= 0.64.1) 191 | - Yoga 192 | - React-Core/RCTTextHeaders (0.64.1): 193 | - glog 194 | - RCT-Folly (= 2020.01.13.00) 195 | - React-Core/Default 196 | - React-cxxreact (= 0.64.1) 197 | - React-jsi (= 0.64.1) 198 | - React-jsiexecutor (= 0.64.1) 199 | - React-perflogger (= 0.64.1) 200 | - Yoga 201 | - React-Core/RCTVibrationHeaders (0.64.1): 202 | - glog 203 | - RCT-Folly (= 2020.01.13.00) 204 | - React-Core/Default 205 | - React-cxxreact (= 0.64.1) 206 | - React-jsi (= 0.64.1) 207 | - React-jsiexecutor (= 0.64.1) 208 | - React-perflogger (= 0.64.1) 209 | - Yoga 210 | - React-Core/RCTWebSocket (0.64.1): 211 | - glog 212 | - RCT-Folly (= 2020.01.13.00) 213 | - React-Core/Default (= 0.64.1) 214 | - React-cxxreact (= 0.64.1) 215 | - React-jsi (= 0.64.1) 216 | - React-jsiexecutor (= 0.64.1) 217 | - React-perflogger (= 0.64.1) 218 | - Yoga 219 | - React-CoreModules (0.64.1): 220 | - FBReactNativeSpec (= 0.64.1) 221 | - RCT-Folly (= 2020.01.13.00) 222 | - RCTTypeSafety (= 0.64.1) 223 | - React-Core/CoreModulesHeaders (= 0.64.1) 224 | - React-jsi (= 0.64.1) 225 | - React-RCTImage (= 0.64.1) 226 | - ReactCommon/turbomodule/core (= 0.64.1) 227 | - React-cxxreact (0.64.1): 228 | - boost-for-react-native (= 1.63.0) 229 | - DoubleConversion 230 | - glog 231 | - RCT-Folly (= 2020.01.13.00) 232 | - React-callinvoker (= 0.64.1) 233 | - React-jsi (= 0.64.1) 234 | - React-jsinspector (= 0.64.1) 235 | - React-perflogger (= 0.64.1) 236 | - React-runtimeexecutor (= 0.64.1) 237 | - React-jsi (0.64.1): 238 | - boost-for-react-native (= 1.63.0) 239 | - DoubleConversion 240 | - glog 241 | - RCT-Folly (= 2020.01.13.00) 242 | - React-jsi/Default (= 0.64.1) 243 | - React-jsi/Default (0.64.1): 244 | - boost-for-react-native (= 1.63.0) 245 | - DoubleConversion 246 | - glog 247 | - RCT-Folly (= 2020.01.13.00) 248 | - React-jsiexecutor (0.64.1): 249 | - DoubleConversion 250 | - glog 251 | - RCT-Folly (= 2020.01.13.00) 252 | - React-cxxreact (= 0.64.1) 253 | - React-jsi (= 0.64.1) 254 | - React-perflogger (= 0.64.1) 255 | - React-jsinspector (0.64.1) 256 | - react-native-svga-player (1.0.1): 257 | - React 258 | - SVGAPlayer 259 | - React-perflogger (0.64.1) 260 | - React-RCTActionSheet (0.64.1): 261 | - React-Core/RCTActionSheetHeaders (= 0.64.1) 262 | - React-RCTAnimation (0.64.1): 263 | - FBReactNativeSpec (= 0.64.1) 264 | - RCT-Folly (= 2020.01.13.00) 265 | - RCTTypeSafety (= 0.64.1) 266 | - React-Core/RCTAnimationHeaders (= 0.64.1) 267 | - React-jsi (= 0.64.1) 268 | - ReactCommon/turbomodule/core (= 0.64.1) 269 | - React-RCTBlob (0.64.1): 270 | - FBReactNativeSpec (= 0.64.1) 271 | - RCT-Folly (= 2020.01.13.00) 272 | - React-Core/RCTBlobHeaders (= 0.64.1) 273 | - React-Core/RCTWebSocket (= 0.64.1) 274 | - React-jsi (= 0.64.1) 275 | - React-RCTNetwork (= 0.64.1) 276 | - ReactCommon/turbomodule/core (= 0.64.1) 277 | - React-RCTImage (0.64.1): 278 | - FBReactNativeSpec (= 0.64.1) 279 | - RCT-Folly (= 2020.01.13.00) 280 | - RCTTypeSafety (= 0.64.1) 281 | - React-Core/RCTImageHeaders (= 0.64.1) 282 | - React-jsi (= 0.64.1) 283 | - React-RCTNetwork (= 0.64.1) 284 | - ReactCommon/turbomodule/core (= 0.64.1) 285 | - React-RCTLinking (0.64.1): 286 | - FBReactNativeSpec (= 0.64.1) 287 | - React-Core/RCTLinkingHeaders (= 0.64.1) 288 | - React-jsi (= 0.64.1) 289 | - ReactCommon/turbomodule/core (= 0.64.1) 290 | - React-RCTNetwork (0.64.1): 291 | - FBReactNativeSpec (= 0.64.1) 292 | - RCT-Folly (= 2020.01.13.00) 293 | - RCTTypeSafety (= 0.64.1) 294 | - React-Core/RCTNetworkHeaders (= 0.64.1) 295 | - React-jsi (= 0.64.1) 296 | - ReactCommon/turbomodule/core (= 0.64.1) 297 | - React-RCTSettings (0.64.1): 298 | - FBReactNativeSpec (= 0.64.1) 299 | - RCT-Folly (= 2020.01.13.00) 300 | - RCTTypeSafety (= 0.64.1) 301 | - React-Core/RCTSettingsHeaders (= 0.64.1) 302 | - React-jsi (= 0.64.1) 303 | - ReactCommon/turbomodule/core (= 0.64.1) 304 | - React-RCTText (0.64.1): 305 | - React-Core/RCTTextHeaders (= 0.64.1) 306 | - React-RCTVibration (0.64.1): 307 | - FBReactNativeSpec (= 0.64.1) 308 | - RCT-Folly (= 2020.01.13.00) 309 | - React-Core/RCTVibrationHeaders (= 0.64.1) 310 | - React-jsi (= 0.64.1) 311 | - ReactCommon/turbomodule/core (= 0.64.1) 312 | - React-runtimeexecutor (0.64.1): 313 | - React-jsi (= 0.64.1) 314 | - ReactCommon/turbomodule/core (0.64.1): 315 | - DoubleConversion 316 | - glog 317 | - RCT-Folly (= 2020.01.13.00) 318 | - React-callinvoker (= 0.64.1) 319 | - React-Core (= 0.64.1) 320 | - React-cxxreact (= 0.64.1) 321 | - React-jsi (= 0.64.1) 322 | - React-perflogger (= 0.64.1) 323 | - SSZipArchive (2.2.3) 324 | - SVGAPlayer (2.5.6): 325 | - SVGAPlayer/Core (= 2.5.6) 326 | - SVGAPlayer/ProtoFiles (= 2.5.6) 327 | - SVGAPlayer/Core (2.5.6): 328 | - SSZipArchive (>= 1.8.1) 329 | - SVGAPlayer/ProtoFiles 330 | - SVGAPlayer/ProtoFiles (2.5.6): 331 | - Protobuf (~> 3.4) 332 | - Yoga (1.14.0) 333 | - YogaKit (1.18.1): 334 | - Yoga (~> 1.14) 335 | 336 | DEPENDENCIES: 337 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) 338 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) 339 | - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) 340 | - Flipper (~> 0.75.1) 341 | - Flipper-DoubleConversion (= 1.1.7) 342 | - Flipper-Folly (~> 2.5.3) 343 | - Flipper-Glog (= 0.3.6) 344 | - Flipper-PeerTalk (~> 0.0.4) 345 | - Flipper-RSocket (~> 1.3) 346 | - FlipperKit (~> 0.75.1) 347 | - FlipperKit/Core (~> 0.75.1) 348 | - FlipperKit/CppBridge (~> 0.75.1) 349 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.75.1) 350 | - FlipperKit/FBDefines (~> 0.75.1) 351 | - FlipperKit/FKPortForwarding (~> 0.75.1) 352 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.75.1) 353 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.75.1) 354 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.75.1) 355 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.75.1) 356 | - FlipperKit/FlipperKitReactPlugin (~> 0.75.1) 357 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.75.1) 358 | - FlipperKit/SKIOSNetworkPlugin (~> 0.75.1) 359 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) 360 | - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) 361 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) 362 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) 363 | - React (from `../node_modules/react-native/`) 364 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) 365 | - React-Core (from `../node_modules/react-native/`) 366 | - React-Core/DevSupport (from `../node_modules/react-native/`) 367 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`) 368 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) 369 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) 370 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) 371 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) 372 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) 373 | - react-native-svga-player (from `../node_modules/react-native-svga-player`) 374 | - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`) 375 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) 376 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) 377 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) 378 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) 379 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) 380 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) 381 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) 382 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`) 383 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) 384 | - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) 385 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) 386 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) 387 | 388 | SPEC REPOS: 389 | trunk: 390 | - boost-for-react-native 391 | - CocoaAsyncSocket 392 | - Flipper 393 | - Flipper-DoubleConversion 394 | - Flipper-Folly 395 | - Flipper-Glog 396 | - Flipper-PeerTalk 397 | - Flipper-RSocket 398 | - FlipperKit 399 | - libevent 400 | - OpenSSL-Universal 401 | - Protobuf 402 | - SSZipArchive 403 | - SVGAPlayer 404 | - YogaKit 405 | 406 | EXTERNAL SOURCES: 407 | DoubleConversion: 408 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" 409 | FBLazyVector: 410 | :path: "../node_modules/react-native/Libraries/FBLazyVector" 411 | FBReactNativeSpec: 412 | :path: "../node_modules/react-native/React/FBReactNativeSpec" 413 | glog: 414 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" 415 | RCT-Folly: 416 | :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" 417 | RCTRequired: 418 | :path: "../node_modules/react-native/Libraries/RCTRequired" 419 | RCTTypeSafety: 420 | :path: "../node_modules/react-native/Libraries/TypeSafety" 421 | React: 422 | :path: "../node_modules/react-native/" 423 | React-callinvoker: 424 | :path: "../node_modules/react-native/ReactCommon/callinvoker" 425 | React-Core: 426 | :path: "../node_modules/react-native/" 427 | React-CoreModules: 428 | :path: "../node_modules/react-native/React/CoreModules" 429 | React-cxxreact: 430 | :path: "../node_modules/react-native/ReactCommon/cxxreact" 431 | React-jsi: 432 | :path: "../node_modules/react-native/ReactCommon/jsi" 433 | React-jsiexecutor: 434 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor" 435 | React-jsinspector: 436 | :path: "../node_modules/react-native/ReactCommon/jsinspector" 437 | react-native-svga-player: 438 | :path: "../node_modules/react-native-svga-player" 439 | React-perflogger: 440 | :path: "../node_modules/react-native/ReactCommon/reactperflogger" 441 | React-RCTActionSheet: 442 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS" 443 | React-RCTAnimation: 444 | :path: "../node_modules/react-native/Libraries/NativeAnimation" 445 | React-RCTBlob: 446 | :path: "../node_modules/react-native/Libraries/Blob" 447 | React-RCTImage: 448 | :path: "../node_modules/react-native/Libraries/Image" 449 | React-RCTLinking: 450 | :path: "../node_modules/react-native/Libraries/LinkingIOS" 451 | React-RCTNetwork: 452 | :path: "../node_modules/react-native/Libraries/Network" 453 | React-RCTSettings: 454 | :path: "../node_modules/react-native/Libraries/Settings" 455 | React-RCTText: 456 | :path: "../node_modules/react-native/Libraries/Text" 457 | React-RCTVibration: 458 | :path: "../node_modules/react-native/Libraries/Vibration" 459 | React-runtimeexecutor: 460 | :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" 461 | ReactCommon: 462 | :path: "../node_modules/react-native/ReactCommon" 463 | Yoga: 464 | :path: "../node_modules/react-native/ReactCommon/yoga" 465 | 466 | SPEC CHECKSUMS: 467 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c 468 | CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 469 | DoubleConversion: cf9b38bf0b2d048436d9a82ad2abe1404f11e7de 470 | FBLazyVector: 7b423f9e248eae65987838148c36eec1dbfe0b53 471 | FBReactNativeSpec: 73ad4b84bb87ced1c6bfb8894f1d4085a3759533 472 | Flipper: d3da1aa199aad94455ae725e9f3aa43f3ec17021 473 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 474 | Flipper-Folly: 755929a4f851b2fb2c347d533a23f191b008554c 475 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 476 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 477 | Flipper-RSocket: 127954abe8b162fcaf68d2134d34dc2bd7076154 478 | FlipperKit: 8a20b5c5fcf9436cac58551dc049867247f64b00 479 | glog: 73c2498ac6884b13ede40eda8228cb1eee9d9d62 480 | libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 481 | OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b 482 | Protobuf: 7327d4444215b5f18e560a97f879ff5503c4581c 483 | RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c 484 | RCTRequired: ec2ebc96b7bfba3ca5c32740f5a0c6a014a274d2 485 | RCTTypeSafety: 22567f31e67c3e088c7ac23ea46ab6d4779c0ea5 486 | React: a241e3dbb1e91d06332f1dbd2b3ab26e1a4c4b9d 487 | React-callinvoker: da4d1c6141696a00163960906bc8a55b985e4ce4 488 | React-Core: 46ba164c437d7dac607b470c83c8308b05799748 489 | React-CoreModules: 217bd14904491c7b9940ff8b34a3fe08013c2f14 490 | React-cxxreact: 0090588ae6660c4615d3629fdd5c768d0983add4 491 | React-jsi: 5de8204706bd872b78ea646aee5d2561ca1214b6 492 | React-jsiexecutor: 124e8f99992490d0d13e0649d950d3e1aae06fe9 493 | React-jsinspector: 500a59626037be5b3b3d89c5151bc3baa9abf1a9 494 | react-native-svga-player: cde6e2150d0ffcb283677285b09533439be648cf 495 | React-perflogger: aad6d4b4a267936b3667260d1f649b6f6069a675 496 | React-RCTActionSheet: fc376be462c9c8d6ad82c0905442fd77f82a9d2a 497 | React-RCTAnimation: ba0a1c3a2738be224a08092fa7f1b444ab77d309 498 | React-RCTBlob: f758d4403fc5828a326dc69e27b41e1a92f34947 499 | React-RCTImage: ce57088705f4a8d03f6594b066a59c29143ba73e 500 | React-RCTLinking: 852a3a95c65fa63f657a4b4e2d3d83a815e00a7c 501 | React-RCTNetwork: 9d7ccb8a08d522d71700b4fb677d9fa28cccd118 502 | React-RCTSettings: d8aaf4389ff06114dee8c42ef5f0f2915946011e 503 | React-RCTText: 809c12ed6b261796ba056c04fcd20d8b90bcc81d 504 | React-RCTVibration: 4b99a7f5c6c0abbc5256410cc5425fb8531986e1 505 | React-runtimeexecutor: ff951a0c241bfaefc4940a3f1f1a229e7cb32fa6 506 | ReactCommon: bedc99ed4dae329c4fcf128d0c31b9115e5365ca 507 | SSZipArchive: 62d4947b08730e4cda640473b0066d209ff033c9 508 | SVGAPlayer: f3b3792ae66f7cb3f944ae373a40864db9a04331 509 | Yoga: a7de31c64fe738607e7a3803e3f591a4b1df7393 510 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a 511 | 512 | PODFILE CHECKSUM: 52d4730468a14603cf036e5a7bed6dd442161ac8 513 | 514 | COCOAPODS: 1.10.1 515 | -------------------------------------------------------------------------------- /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 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; }; 11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 14 | 4440E4B502E5867375FBC893 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FDBF5E24DD183C669B9C2D92 /* libPods-example.a */; }; 15 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; }; 16 | 9EDB523EF68EF6735FD3598A /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E11C2D64779E87BBF7B37A8 /* libPods-example-exampleTests.a */; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 25 | remoteInfo = example; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 31 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 32 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; }; 33 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 34 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; }; 35 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; }; 36 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; }; 37 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; }; 38 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; }; 39 | 2E11C2D64779E87BBF7B37A8 /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 40 | 4AED773AF3FC0D755765D389 /* 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 = ""; }; 41 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = ""; }; 42 | AF78AC4C59949FE9A7505188 /* Pods-example-exampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.release.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.release.xcconfig"; sourceTree = ""; }; 43 | B81641982BC5D68F7607DFD6 /* Pods-example-exampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.debug.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.debug.xcconfig"; sourceTree = ""; }; 44 | E013624B4D326F18730FF070 /* 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 = ""; }; 45 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 46 | FDBF5E24DD183C669B9C2D92 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | /* End PBXFileReference section */ 48 | 49 | /* Begin PBXFrameworksBuildPhase section */ 50 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 51 | isa = PBXFrameworksBuildPhase; 52 | buildActionMask = 2147483647; 53 | files = ( 54 | 9EDB523EF68EF6735FD3598A /* libPods-example-exampleTests.a in Frameworks */, 55 | ); 56 | runOnlyForDeploymentPostprocessing = 0; 57 | }; 58 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 59 | isa = PBXFrameworksBuildPhase; 60 | buildActionMask = 2147483647; 61 | files = ( 62 | 4440E4B502E5867375FBC893 /* libPods-example.a in Frameworks */, 63 | ); 64 | runOnlyForDeploymentPostprocessing = 0; 65 | }; 66 | /* End PBXFrameworksBuildPhase section */ 67 | 68 | /* Begin PBXGroup section */ 69 | 00E356EF1AD99517003FC87E /* exampleTests */ = { 70 | isa = PBXGroup; 71 | children = ( 72 | 00E356F21AD99517003FC87E /* exampleTests.m */, 73 | 00E356F01AD99517003FC87E /* Supporting Files */, 74 | ); 75 | path = exampleTests; 76 | sourceTree = ""; 77 | }; 78 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 00E356F11AD99517003FC87E /* Info.plist */, 82 | ); 83 | name = "Supporting Files"; 84 | sourceTree = ""; 85 | }; 86 | 13B07FAE1A68108700A75B9A /* example */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 90 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 91 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 92 | 13B07FB61A68108700A75B9A /* Info.plist */, 93 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */, 94 | 13B07FB71A68108700A75B9A /* main.m */, 95 | ); 96 | name = example; 97 | sourceTree = ""; 98 | }; 99 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */, 103 | FDBF5E24DD183C669B9C2D92 /* libPods-example.a */, 104 | 2E11C2D64779E87BBF7B37A8 /* libPods-example-exampleTests.a */, 105 | ); 106 | name = Frameworks; 107 | sourceTree = ""; 108 | }; 109 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 110 | isa = PBXGroup; 111 | children = ( 112 | ); 113 | name = Libraries; 114 | sourceTree = ""; 115 | }; 116 | 83CBB9F61A601CBA00E9B192 = { 117 | isa = PBXGroup; 118 | children = ( 119 | 13B07FAE1A68108700A75B9A /* example */, 120 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 121 | 00E356EF1AD99517003FC87E /* exampleTests */, 122 | 83CBBA001A601CBA00E9B192 /* Products */, 123 | 2D16E6871FA4F8E400B85C8A /* Frameworks */, 124 | 8CEF20D3138D6CA6BE82CE87 /* Pods */, 125 | ); 126 | indentWidth = 2; 127 | sourceTree = ""; 128 | tabWidth = 2; 129 | usesTabs = 0; 130 | }; 131 | 83CBBA001A601CBA00E9B192 /* Products */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 13B07F961A680F5B00A75B9A /* example.app */, 135 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */, 136 | ); 137 | name = Products; 138 | sourceTree = ""; 139 | }; 140 | 8CEF20D3138D6CA6BE82CE87 /* Pods */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | 4AED773AF3FC0D755765D389 /* Pods-example.debug.xcconfig */, 144 | E013624B4D326F18730FF070 /* Pods-example.release.xcconfig */, 145 | B81641982BC5D68F7607DFD6 /* Pods-example-exampleTests.debug.xcconfig */, 146 | AF78AC4C59949FE9A7505188 /* Pods-example-exampleTests.release.xcconfig */, 147 | ); 148 | name = Pods; 149 | path = Pods; 150 | sourceTree = ""; 151 | }; 152 | /* End PBXGroup section */ 153 | 154 | /* Begin PBXNativeTarget section */ 155 | 00E356ED1AD99517003FC87E /* exampleTests */ = { 156 | isa = PBXNativeTarget; 157 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */; 158 | buildPhases = ( 159 | A2F3AF7C7C73C1CD4167B436 /* [CP] Check Pods Manifest.lock */, 160 | 00E356EA1AD99517003FC87E /* Sources */, 161 | 00E356EB1AD99517003FC87E /* Frameworks */, 162 | 00E356EC1AD99517003FC87E /* Resources */, 163 | 52B18EC0F98E2168A043EEB9 /* [CP] Embed Pods Frameworks */, 164 | 3B3704C649CB15042990F76C /* [CP] Copy Pods Resources */, 165 | ); 166 | buildRules = ( 167 | ); 168 | dependencies = ( 169 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 170 | ); 171 | name = exampleTests; 172 | productName = exampleTests; 173 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */; 174 | productType = "com.apple.product-type.bundle.unit-test"; 175 | }; 176 | 13B07F861A680F5B00A75B9A /* example */ = { 177 | isa = PBXNativeTarget; 178 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */; 179 | buildPhases = ( 180 | 5872709DDBD2E095FEAC1183 /* [CP] Check Pods Manifest.lock */, 181 | FD10A7F022414F080027D42C /* Start Packager */, 182 | 13B07F871A680F5B00A75B9A /* Sources */, 183 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 184 | 13B07F8E1A680F5B00A75B9A /* Resources */, 185 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 186 | D719BB4721257535014C0893 /* [CP] Embed Pods Frameworks */, 187 | CD2C960E90B34D96D46101A2 /* [CP] Copy Pods Resources */, 188 | ); 189 | buildRules = ( 190 | ); 191 | dependencies = ( 192 | ); 193 | name = example; 194 | productName = example; 195 | productReference = 13B07F961A680F5B00A75B9A /* example.app */; 196 | productType = "com.apple.product-type.application"; 197 | }; 198 | /* End PBXNativeTarget section */ 199 | 200 | /* Begin PBXProject section */ 201 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 202 | isa = PBXProject; 203 | attributes = { 204 | LastUpgradeCheck = 1210; 205 | TargetAttributes = { 206 | 00E356ED1AD99517003FC87E = { 207 | CreatedOnToolsVersion = 6.2; 208 | TestTargetID = 13B07F861A680F5B00A75B9A; 209 | }; 210 | 13B07F861A680F5B00A75B9A = { 211 | LastSwiftMigration = 1120; 212 | }; 213 | }; 214 | }; 215 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */; 216 | compatibilityVersion = "Xcode 12.0"; 217 | developmentRegion = en; 218 | hasScannedForEncodings = 0; 219 | knownRegions = ( 220 | en, 221 | Base, 222 | ); 223 | mainGroup = 83CBB9F61A601CBA00E9B192; 224 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 225 | projectDirPath = ""; 226 | projectRoot = ""; 227 | targets = ( 228 | 13B07F861A680F5B00A75B9A /* example */, 229 | 00E356ED1AD99517003FC87E /* exampleTests */, 230 | ); 231 | }; 232 | /* End PBXProject section */ 233 | 234 | /* Begin PBXResourcesBuildPhase section */ 235 | 00E356EC1AD99517003FC87E /* Resources */ = { 236 | isa = PBXResourcesBuildPhase; 237 | buildActionMask = 2147483647; 238 | files = ( 239 | ); 240 | runOnlyForDeploymentPostprocessing = 0; 241 | }; 242 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 243 | isa = PBXResourcesBuildPhase; 244 | buildActionMask = 2147483647; 245 | files = ( 246 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 247 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | /* End PBXResourcesBuildPhase section */ 252 | 253 | /* Begin PBXShellScriptBuildPhase section */ 254 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 255 | isa = PBXShellScriptBuildPhase; 256 | buildActionMask = 2147483647; 257 | files = ( 258 | ); 259 | inputPaths = ( 260 | ); 261 | name = "Bundle React Native code and images"; 262 | outputPaths = ( 263 | ); 264 | runOnlyForDeploymentPostprocessing = 0; 265 | shellPath = /bin/sh; 266 | shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; 267 | }; 268 | 3B3704C649CB15042990F76C /* [CP] Copy Pods Resources */ = { 269 | isa = PBXShellScriptBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | ); 273 | inputFileListPaths = ( 274 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist", 275 | ); 276 | name = "[CP] Copy Pods Resources"; 277 | outputFileListPaths = ( 278 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist", 279 | ); 280 | runOnlyForDeploymentPostprocessing = 0; 281 | shellPath = /bin/sh; 282 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n"; 283 | showEnvVarsInLog = 0; 284 | }; 285 | 52B18EC0F98E2168A043EEB9 /* [CP] Embed Pods Frameworks */ = { 286 | isa = PBXShellScriptBuildPhase; 287 | buildActionMask = 2147483647; 288 | files = ( 289 | ); 290 | inputFileListPaths = ( 291 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist", 292 | ); 293 | name = "[CP] Embed Pods Frameworks"; 294 | outputFileListPaths = ( 295 | "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist", 296 | ); 297 | runOnlyForDeploymentPostprocessing = 0; 298 | shellPath = /bin/sh; 299 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n"; 300 | showEnvVarsInLog = 0; 301 | }; 302 | 5872709DDBD2E095FEAC1183 /* [CP] Check Pods Manifest.lock */ = { 303 | isa = PBXShellScriptBuildPhase; 304 | buildActionMask = 2147483647; 305 | files = ( 306 | ); 307 | inputFileListPaths = ( 308 | ); 309 | inputPaths = ( 310 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 311 | "${PODS_ROOT}/Manifest.lock", 312 | ); 313 | name = "[CP] Check Pods Manifest.lock"; 314 | outputFileListPaths = ( 315 | ); 316 | outputPaths = ( 317 | "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt", 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | shellPath = /bin/sh; 321 | 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"; 322 | showEnvVarsInLog = 0; 323 | }; 324 | A2F3AF7C7C73C1CD4167B436 /* [CP] Check Pods Manifest.lock */ = { 325 | isa = PBXShellScriptBuildPhase; 326 | buildActionMask = 2147483647; 327 | files = ( 328 | ); 329 | inputFileListPaths = ( 330 | ); 331 | inputPaths = ( 332 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 333 | "${PODS_ROOT}/Manifest.lock", 334 | ); 335 | name = "[CP] Check Pods Manifest.lock"; 336 | outputFileListPaths = ( 337 | ); 338 | outputPaths = ( 339 | "$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt", 340 | ); 341 | runOnlyForDeploymentPostprocessing = 0; 342 | shellPath = /bin/sh; 343 | 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"; 344 | showEnvVarsInLog = 0; 345 | }; 346 | CD2C960E90B34D96D46101A2 /* [CP] Copy Pods Resources */ = { 347 | isa = PBXShellScriptBuildPhase; 348 | buildActionMask = 2147483647; 349 | files = ( 350 | ); 351 | inputFileListPaths = ( 352 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist", 353 | ); 354 | name = "[CP] Copy Pods Resources"; 355 | outputFileListPaths = ( 356 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist", 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | shellPath = /bin/sh; 360 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n"; 361 | showEnvVarsInLog = 0; 362 | }; 363 | D719BB4721257535014C0893 /* [CP] Embed Pods Frameworks */ = { 364 | isa = PBXShellScriptBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | inputFileListPaths = ( 369 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist", 370 | ); 371 | name = "[CP] Embed Pods Frameworks"; 372 | outputFileListPaths = ( 373 | "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist", 374 | ); 375 | runOnlyForDeploymentPostprocessing = 0; 376 | shellPath = /bin/sh; 377 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n"; 378 | showEnvVarsInLog = 0; 379 | }; 380 | FD10A7F022414F080027D42C /* Start Packager */ = { 381 | isa = PBXShellScriptBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | ); 385 | inputFileListPaths = ( 386 | ); 387 | inputPaths = ( 388 | ); 389 | name = "Start Packager"; 390 | outputFileListPaths = ( 391 | ); 392 | outputPaths = ( 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | shellPath = /bin/sh; 396 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n"; 397 | showEnvVarsInLog = 0; 398 | }; 399 | /* End PBXShellScriptBuildPhase section */ 400 | 401 | /* Begin PBXSourcesBuildPhase section */ 402 | 00E356EA1AD99517003FC87E /* Sources */ = { 403 | isa = PBXSourcesBuildPhase; 404 | buildActionMask = 2147483647; 405 | files = ( 406 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */, 407 | ); 408 | runOnlyForDeploymentPostprocessing = 0; 409 | }; 410 | 13B07F871A680F5B00A75B9A /* Sources */ = { 411 | isa = PBXSourcesBuildPhase; 412 | buildActionMask = 2147483647; 413 | files = ( 414 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 415 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 416 | ); 417 | runOnlyForDeploymentPostprocessing = 0; 418 | }; 419 | /* End PBXSourcesBuildPhase section */ 420 | 421 | /* Begin PBXTargetDependency section */ 422 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 423 | isa = PBXTargetDependency; 424 | target = 13B07F861A680F5B00A75B9A /* example */; 425 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 426 | }; 427 | /* End PBXTargetDependency section */ 428 | 429 | /* Begin XCBuildConfiguration section */ 430 | 00E356F61AD99517003FC87E /* Debug */ = { 431 | isa = XCBuildConfiguration; 432 | baseConfigurationReference = B81641982BC5D68F7607DFD6 /* Pods-example-exampleTests.debug.xcconfig */; 433 | buildSettings = { 434 | BUNDLE_LOADER = "$(TEST_HOST)"; 435 | GCC_PREPROCESSOR_DEFINITIONS = ( 436 | "DEBUG=1", 437 | "$(inherited)", 438 | ); 439 | INFOPLIST_FILE = exampleTests/Info.plist; 440 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 441 | LD_RUNPATH_SEARCH_PATHS = ( 442 | "$(inherited)", 443 | "@executable_path/Frameworks", 444 | "@loader_path/Frameworks", 445 | ); 446 | OTHER_LDFLAGS = ( 447 | "-ObjC", 448 | "-lc++", 449 | "$(inherited)", 450 | ); 451 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 452 | PRODUCT_NAME = "$(TARGET_NAME)"; 453 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 454 | }; 455 | name = Debug; 456 | }; 457 | 00E356F71AD99517003FC87E /* Release */ = { 458 | isa = XCBuildConfiguration; 459 | baseConfigurationReference = AF78AC4C59949FE9A7505188 /* Pods-example-exampleTests.release.xcconfig */; 460 | buildSettings = { 461 | BUNDLE_LOADER = "$(TEST_HOST)"; 462 | COPY_PHASE_STRIP = NO; 463 | INFOPLIST_FILE = exampleTests/Info.plist; 464 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 465 | LD_RUNPATH_SEARCH_PATHS = ( 466 | "$(inherited)", 467 | "@executable_path/Frameworks", 468 | "@loader_path/Frameworks", 469 | ); 470 | OTHER_LDFLAGS = ( 471 | "-ObjC", 472 | "-lc++", 473 | "$(inherited)", 474 | ); 475 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 476 | PRODUCT_NAME = "$(TARGET_NAME)"; 477 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 478 | }; 479 | name = Release; 480 | }; 481 | 13B07F941A680F5B00A75B9A /* Debug */ = { 482 | isa = XCBuildConfiguration; 483 | baseConfigurationReference = 4AED773AF3FC0D755765D389 /* Pods-example.debug.xcconfig */; 484 | buildSettings = { 485 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 486 | CLANG_ENABLE_MODULES = YES; 487 | CURRENT_PROJECT_VERSION = 1; 488 | ENABLE_BITCODE = NO; 489 | INFOPLIST_FILE = example/Info.plist; 490 | LD_RUNPATH_SEARCH_PATHS = ( 491 | "$(inherited)", 492 | "@executable_path/Frameworks", 493 | ); 494 | OTHER_LDFLAGS = ( 495 | "$(inherited)", 496 | "-ObjC", 497 | "-lc++", 498 | ); 499 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 500 | PRODUCT_NAME = example; 501 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 502 | SWIFT_VERSION = 5.0; 503 | VERSIONING_SYSTEM = "apple-generic"; 504 | }; 505 | name = Debug; 506 | }; 507 | 13B07F951A680F5B00A75B9A /* Release */ = { 508 | isa = XCBuildConfiguration; 509 | baseConfigurationReference = E013624B4D326F18730FF070 /* Pods-example.release.xcconfig */; 510 | buildSettings = { 511 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 512 | CLANG_ENABLE_MODULES = YES; 513 | CURRENT_PROJECT_VERSION = 1; 514 | INFOPLIST_FILE = example/Info.plist; 515 | LD_RUNPATH_SEARCH_PATHS = ( 516 | "$(inherited)", 517 | "@executable_path/Frameworks", 518 | ); 519 | OTHER_LDFLAGS = ( 520 | "$(inherited)", 521 | "-ObjC", 522 | "-lc++", 523 | ); 524 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)"; 525 | PRODUCT_NAME = example; 526 | SWIFT_VERSION = 5.0; 527 | VERSIONING_SYSTEM = "apple-generic"; 528 | }; 529 | name = Release; 530 | }; 531 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 532 | isa = XCBuildConfiguration; 533 | buildSettings = { 534 | ALWAYS_SEARCH_USER_PATHS = NO; 535 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 536 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 537 | CLANG_CXX_LIBRARY = "libc++"; 538 | CLANG_ENABLE_MODULES = YES; 539 | CLANG_ENABLE_OBJC_ARC = YES; 540 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 541 | CLANG_WARN_BOOL_CONVERSION = YES; 542 | CLANG_WARN_COMMA = YES; 543 | CLANG_WARN_CONSTANT_CONVERSION = YES; 544 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 545 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 546 | CLANG_WARN_EMPTY_BODY = YES; 547 | CLANG_WARN_ENUM_CONVERSION = YES; 548 | CLANG_WARN_INFINITE_RECURSION = YES; 549 | CLANG_WARN_INT_CONVERSION = YES; 550 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 551 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 552 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 553 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 554 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 555 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 556 | CLANG_WARN_STRICT_PROTOTYPES = YES; 557 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 558 | CLANG_WARN_UNREACHABLE_CODE = YES; 559 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 560 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 561 | COPY_PHASE_STRIP = NO; 562 | ENABLE_STRICT_OBJC_MSGSEND = YES; 563 | ENABLE_TESTABILITY = YES; 564 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 565 | GCC_C_LANGUAGE_STANDARD = gnu99; 566 | GCC_DYNAMIC_NO_PIC = NO; 567 | GCC_NO_COMMON_BLOCKS = YES; 568 | GCC_OPTIMIZATION_LEVEL = 0; 569 | GCC_PREPROCESSOR_DEFINITIONS = ( 570 | "DEBUG=1", 571 | "$(inherited)", 572 | ); 573 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 574 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 575 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 576 | GCC_WARN_UNDECLARED_SELECTOR = YES; 577 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 578 | GCC_WARN_UNUSED_FUNCTION = YES; 579 | GCC_WARN_UNUSED_VARIABLE = YES; 580 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 581 | LD_RUNPATH_SEARCH_PATHS = ( 582 | /usr/lib/swift, 583 | "$(inherited)", 584 | ); 585 | LIBRARY_SEARCH_PATHS = ( 586 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 587 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 588 | "\"$(inherited)\"", 589 | ); 590 | MTL_ENABLE_DEBUG_INFO = YES; 591 | ONLY_ACTIVE_ARCH = YES; 592 | SDKROOT = iphoneos; 593 | }; 594 | name = Debug; 595 | }; 596 | 83CBBA211A601CBA00E9B192 /* Release */ = { 597 | isa = XCBuildConfiguration; 598 | buildSettings = { 599 | ALWAYS_SEARCH_USER_PATHS = NO; 600 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 601 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 602 | CLANG_CXX_LIBRARY = "libc++"; 603 | CLANG_ENABLE_MODULES = YES; 604 | CLANG_ENABLE_OBJC_ARC = YES; 605 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 606 | CLANG_WARN_BOOL_CONVERSION = YES; 607 | CLANG_WARN_COMMA = YES; 608 | CLANG_WARN_CONSTANT_CONVERSION = YES; 609 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 610 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 611 | CLANG_WARN_EMPTY_BODY = YES; 612 | CLANG_WARN_ENUM_CONVERSION = YES; 613 | CLANG_WARN_INFINITE_RECURSION = YES; 614 | CLANG_WARN_INT_CONVERSION = YES; 615 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 616 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 617 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 618 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 619 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 620 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 621 | CLANG_WARN_STRICT_PROTOTYPES = YES; 622 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 623 | CLANG_WARN_UNREACHABLE_CODE = YES; 624 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 625 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 626 | COPY_PHASE_STRIP = YES; 627 | ENABLE_NS_ASSERTIONS = NO; 628 | ENABLE_STRICT_OBJC_MSGSEND = YES; 629 | "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; 630 | GCC_C_LANGUAGE_STANDARD = gnu99; 631 | GCC_NO_COMMON_BLOCKS = YES; 632 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 633 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 634 | GCC_WARN_UNDECLARED_SELECTOR = YES; 635 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 636 | GCC_WARN_UNUSED_FUNCTION = YES; 637 | GCC_WARN_UNUSED_VARIABLE = YES; 638 | IPHONEOS_DEPLOYMENT_TARGET = 10.0; 639 | LD_RUNPATH_SEARCH_PATHS = ( 640 | /usr/lib/swift, 641 | "$(inherited)", 642 | ); 643 | LIBRARY_SEARCH_PATHS = ( 644 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", 645 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", 646 | "\"$(inherited)\"", 647 | ); 648 | MTL_ENABLE_DEBUG_INFO = NO; 649 | SDKROOT = iphoneos; 650 | VALIDATE_PRODUCT = YES; 651 | }; 652 | name = Release; 653 | }; 654 | /* End XCBuildConfiguration section */ 655 | 656 | /* Begin XCConfigurationList section */ 657 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = { 658 | isa = XCConfigurationList; 659 | buildConfigurations = ( 660 | 00E356F61AD99517003FC87E /* Debug */, 661 | 00E356F71AD99517003FC87E /* Release */, 662 | ); 663 | defaultConfigurationIsVisible = 0; 664 | defaultConfigurationName = Release; 665 | }; 666 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = { 667 | isa = XCConfigurationList; 668 | buildConfigurations = ( 669 | 13B07F941A680F5B00A75B9A /* Debug */, 670 | 13B07F951A680F5B00A75B9A /* Release */, 671 | ); 672 | defaultConfigurationIsVisible = 0; 673 | defaultConfigurationName = Release; 674 | }; 675 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = { 676 | isa = XCConfigurationList; 677 | buildConfigurations = ( 678 | 83CBBA201A601CBA00E9B192 /* Debug */, 679 | 83CBBA211A601CBA00E9B192 /* Release */, 680 | ); 681 | defaultConfigurationIsVisible = 0; 682 | defaultConfigurationName = Release; 683 | }; 684 | /* End XCConfigurationList section */ 685 | }; 686 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 687 | } 688 | -------------------------------------------------------------------------------- /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.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | @interface AppDelegate : UIResponder 5 | 6 | @property (nonatomic, strong) UIWindow *window; 7 | 8 | @end 9 | -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | #import 4 | #import 5 | #import 6 | 7 | #ifdef FB_SONARKIT_ENABLED 8 | #import 9 | #import 10 | #import 11 | #import 12 | #import 13 | #import 14 | 15 | static void InitializeFlipper(UIApplication *application) { 16 | FlipperClient *client = [FlipperClient sharedClient]; 17 | SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults]; 18 | [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]]; 19 | [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]]; 20 | [client addPlugin:[FlipperKitReactPlugin new]]; 21 | [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]]; 22 | [client start]; 23 | } 24 | #endif 25 | 26 | @implementation AppDelegate 27 | 28 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 29 | { 30 | #ifdef FB_SONARKIT_ENABLED 31 | InitializeFlipper(application); 32 | #endif 33 | 34 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; 35 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge 36 | moduleName:@"example" 37 | initialProperties:nil]; 38 | 39 | if (@available(iOS 13.0, *)) { 40 | rootView.backgroundColor = [UIColor systemBackgroundColor]; 41 | } else { 42 | rootView.backgroundColor = [UIColor whiteColor]; 43 | } 44 | 45 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 46 | UIViewController *rootViewController = [UIViewController new]; 47 | rootViewController.view = rootView; 48 | self.window.rootViewController = rootViewController; 49 | [self.window makeKeyAndVisible]; 50 | return YES; 51 | } 52 | 53 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 54 | { 55 | #if DEBUG 56 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; 57 | #else 58 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 59 | #endif 60 | } 61 | 62 | @end 63 | -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /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 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSLocationWhenInUseUsageDescription 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UIViewControllerBasedStatusBarAppearance 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /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/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char * argv[]) { 6 | @autoreleasepool { 7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | 4 | #import 5 | #import 6 | 7 | #define TIMEOUT_SECONDS 600 8 | #define TEXT_TO_LOOK_FOR @"Welcome to React" 9 | 10 | @interface exampleTests : XCTestCase 11 | 12 | @end 13 | 14 | @implementation exampleTests 15 | 16 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 17 | { 18 | if (test(view)) { 19 | return YES; 20 | } 21 | for (UIView *subview in [view subviews]) { 22 | if ([self findSubviewInView:subview matching:test]) { 23 | return YES; 24 | } 25 | } 26 | return NO; 27 | } 28 | 29 | - (void)testRendersWelcomeScreen 30 | { 31 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController]; 32 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 33 | BOOL foundElement = NO; 34 | 35 | __block NSString *redboxError = nil; 36 | #ifdef DEBUG 37 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 38 | if (level >= RCTLogLevelError) { 39 | redboxError = message; 40 | } 41 | }); 42 | #endif 43 | 44 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 45 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 46 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 47 | 48 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 49 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 50 | return YES; 51 | } 52 | return NO; 53 | }]; 54 | } 55 | 56 | #ifdef DEBUG 57 | RCTSetLogFunction(RCTDefaultLogFunction); 58 | #endif 59 | 60 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 61 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 62 | } 63 | 64 | 65 | @end 66 | -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: true, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /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 | "start": "react-native start", 9 | "test": "jest", 10 | "lint": "eslint .", 11 | "postinstall": "node ../scripts/examples_postinstall.js" 12 | }, 13 | "dependencies": { 14 | "react": "17.0.1", 15 | "react-native": "0.70.3", 16 | "react-native-svga-player": "file:../" 17 | }, 18 | "devDependencies": { 19 | "@babel/core": "^7.12.9", 20 | "@babel/runtime": "^7.12.5", 21 | "@react-native-community/eslint-config": "^2.0.0", 22 | "babel-jest": "^26.6.3", 23 | "eslint": "7.14.0", 24 | "jest": "^26.6.3", 25 | "metro-react-native-babel-preset": "^0.64.0", 26 | "react-test-renderer": "17.0.1" 27 | }, 28 | "jest": { 29 | "preset": "react-native" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { ViewProps } from 'react-native'; 3 | interface SVGAPlayerProps extends ViewProps { 4 | onFinished?: () => void; 5 | onFrame?: (value: number) => void; 6 | onPercentage?: (value: number) => void; 7 | source: string; 8 | } 9 | interface SVGAPlayerState { 10 | source: string; 11 | toFrame: number; 12 | currentState: string; 13 | toPercentage: number; 14 | } 15 | export default class SVGAPlayer extends React.Component { 16 | constructor(props: Readonly); 17 | load(source: string): void; 18 | startAnimation(): void; 19 | pauseAnimation(): void; 20 | stopAnimation(): void; 21 | stepToFrame(toFrame: any, andPlay: boolean): void; 22 | stepToPercentage(toPercentage: any, andPlay: boolean): void; 23 | componentWillUnmount(): void; 24 | render(): JSX.Element | null; 25 | } 26 | export {}; 27 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { requireNativeComponent, Platform } from 'react-native'; 3 | const RNSvgaPlayer = requireNativeComponent('RNSvgaPlayer'); 4 | export default class SVGAPlayer extends React.Component { 5 | constructor(props) { 6 | super(props); 7 | this.state = {}; 8 | } 9 | load(source) { 10 | this.setState({ 11 | source, 12 | }); 13 | } 14 | startAnimation() { 15 | this.setState({ 16 | currentState: 'start', 17 | }); 18 | } 19 | pauseAnimation() { 20 | this.setState({ 21 | currentState: 'pause', 22 | }); 23 | } 24 | stopAnimation() { 25 | this.setState({ 26 | currentState: 'stop', 27 | }); 28 | } 29 | stepToFrame(toFrame, andPlay) { 30 | this.setState({ 31 | currentState: andPlay === true ? 'play' : 'pause', 32 | toFrame: -1, 33 | }, () => { 34 | this.setState({ 35 | toFrame, 36 | }); 37 | }); 38 | } 39 | stepToPercentage(toPercentage, andPlay) { 40 | this.setState({ 41 | currentState: andPlay === true ? 'play' : 'pause', 42 | toPercentage: -1, 43 | }, () => { 44 | this.setState({ 45 | toPercentage, 46 | }); 47 | }); 48 | } 49 | componentWillUnmount() { 50 | this.stopAnimation(); 51 | } 52 | render() { 53 | if (!this.props.source) { 54 | return null; 55 | } 56 | let eventListeners = {}; 57 | if (Platform.OS === 'android') { 58 | eventListeners.onChange = (event) => { 59 | const { action } = event.nativeEvent; 60 | if (action === 'onFinished') { 61 | if (typeof this.props.onFinished === 'function') { 62 | this.props.onFinished(); 63 | } 64 | } 65 | else if (action === 'onFrame') { 66 | if (typeof this.props.onFrame === 'function') { 67 | this.props.onFrame(event.nativeEvent.value); 68 | } 69 | } 70 | else if (action === 'onPercentage') { 71 | if (typeof this.props.onPercentage === 'function') { 72 | this.props.onPercentage(event.nativeEvent.value); 73 | } 74 | } 75 | }; 76 | } 77 | else if (Platform.OS === 'ios') { 78 | if (typeof this.props.onFrame === 'function') { 79 | eventListeners.onFrame = (event) => { 80 | this.props.onFrame(event.nativeEvent.value); 81 | }; 82 | } 83 | if (typeof this.props.onPercentage === 'function') { 84 | eventListeners.onPercentage = (event) => { 85 | this.props.onPercentage(event.nativeEvent.value); 86 | }; 87 | } 88 | } 89 | return ; 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { requireNativeComponent, Platform, ViewProps } from 'react-native' 3 | const RNSvgaPlayer = requireNativeComponent('RNSvgaPlayer') 4 | 5 | interface SVGAPlayerProps extends ViewProps { 6 | onFinished?: () => void 7 | onFrame?: (value: number) => void 8 | onPercentage?: (value: number) => void 9 | source: string 10 | } 11 | interface SVGAPlayerState { 12 | source: string 13 | toFrame: number 14 | currentState: string 15 | toPercentage: number 16 | } 17 | export default class SVGAPlayer extends React.Component< 18 | SVGAPlayerProps, 19 | SVGAPlayerState 20 | > { 21 | constructor(props: Readonly) { 22 | super(props) 23 | this.state = {} as any 24 | } 25 | load(source: string) { 26 | this.setState({ 27 | source, 28 | }) 29 | } 30 | startAnimation() { 31 | this.setState({ 32 | currentState: 'start', 33 | }) 34 | } 35 | pauseAnimation() { 36 | this.setState({ 37 | currentState: 'pause', 38 | }) 39 | } 40 | stopAnimation() { 41 | this.setState({ 42 | currentState: 'stop', 43 | }) 44 | } 45 | stepToFrame(toFrame: any, andPlay: boolean) { 46 | this.setState( 47 | { 48 | currentState: andPlay === true ? 'play' : 'pause', 49 | toFrame: -1, 50 | }, 51 | () => { 52 | this.setState({ 53 | toFrame, 54 | }) 55 | } 56 | ) 57 | } 58 | stepToPercentage(toPercentage: any, andPlay: boolean) { 59 | this.setState( 60 | { 61 | currentState: andPlay === true ? 'play' : 'pause', 62 | toPercentage: -1, 63 | }, 64 | () => { 65 | this.setState({ 66 | toPercentage, 67 | }) 68 | } 69 | ) 70 | } 71 | componentWillUnmount() { 72 | this.stopAnimation() 73 | } 74 | render() { 75 | if (!this.props.source) { 76 | return null 77 | } 78 | let eventListeners: any = {} 79 | if (Platform.OS === 'android') { 80 | eventListeners.onChange = (event: { 81 | nativeEvent: { value?: any; action?: any } 82 | }) => { 83 | const { action } = event.nativeEvent 84 | if (action === 'onFinished') { 85 | if (typeof this.props.onFinished === 'function') { 86 | this.props.onFinished() 87 | } 88 | } else if (action === 'onFrame') { 89 | if (typeof this.props.onFrame === 'function') { 90 | this.props.onFrame(event.nativeEvent.value) 91 | } 92 | } else if (action === 'onPercentage') { 93 | if (typeof this.props.onPercentage === 'function') { 94 | this.props.onPercentage(event.nativeEvent.value) 95 | } 96 | } 97 | } 98 | } else if (Platform.OS === 'ios') { 99 | if (typeof this.props.onFrame === 'function') { 100 | eventListeners.onFrame = (event: { 101 | nativeEvent: { value: number } 102 | }) => { 103 | this.props.onFrame!(event.nativeEvent.value) 104 | } 105 | } 106 | if (typeof this.props.onPercentage === 'function') { 107 | eventListeners.onPercentage = (event: { 108 | nativeEvent: { value: number } 109 | }) => { 110 | this.props.onPercentage!(event.nativeEvent.value) 111 | } 112 | } 113 | } 114 | return 115 | } 116 | } 117 | -------------------------------------------------------------------------------- /ios/RNSvgaPlayer.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface RNSvgaPlayer : RCTViewManager 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /ios/RNSvgaPlayer.m: -------------------------------------------------------------------------------- 1 | #import "RNSvgaPlayer.h" 2 | 3 | // 4 | // SVGAPlayerManager.m 5 | // SVGAPlayer 6 | // 7 | // Created by 崔明辉 on 2017/6/15. 8 | // Copyright © 2017年 UED Center. All rights reserved. 9 | // 10 | 11 | #import "SVGAPlayer.h" 12 | #import "SVGAParser.h" 13 | #import 14 | 15 | @interface SVGAPlayer (React) 16 | 17 | @property(nonatomic, copy) NSString *source; 18 | @property(nonatomic, copy) NSString *currentState; 19 | @property(nonatomic, assign) NSInteger toFrame; 20 | @property(nonatomic, assign) NSInteger toPercentage; 21 | @property(nonatomic, copy) RCTBubblingEventBlock onFinished; 22 | @property(nonatomic, copy) RCTBubblingEventBlock onFrame; 23 | @property(nonatomic, copy) RCTBubblingEventBlock onPercentage; 24 | 25 | @end 26 | 27 | @implementation SVGAPlayer (React) 28 | 29 | static int kReactSourceIdentifier; 30 | static int kReactCurrentStateIdentifier; 31 | static int kReactOnFinishedIdentifier; 32 | static int kReactOnFrameIdentifier; 33 | static int kReactOnPercentageIdentifier; 34 | 35 | - (void)loadWithSource:(NSString *)source { 36 | SVGAParser *parser = [[SVGAParser alloc] init]; 37 | if ([source hasPrefix:@"http"] || [source hasPrefix:@"https"]) { 38 | [parser parseWithURL:[NSURL URLWithString:source] 39 | completionBlock:^(SVGAVideoEntity *_Nullable videoItem) { 40 | [[NSOperationQueue mainQueue] addOperationWithBlock:^{ 41 | [self setVideoItem:videoItem]; 42 | [self startAnimation]; 43 | }]; 44 | } 45 | failureBlock:nil]; 46 | } else { 47 | NSString *localPath = [[NSBundle mainBundle] pathForResource:source ofType:@"svga"]; 48 | if (localPath != nil) { 49 | [parser parseWithData:[NSData dataWithContentsOfFile:localPath] 50 | cacheKey:source 51 | completionBlock:^(SVGAVideoEntity *_Nonnull videoItem) { 52 | [[NSOperationQueue mainQueue] addOperationWithBlock:^{ 53 | [self setVideoItem:videoItem]; 54 | [self startAnimation]; 55 | }]; 56 | } 57 | failureBlock:nil]; 58 | } 59 | } 60 | } 61 | 62 | - (void)setSource:(NSString *)source { 63 | if ([source isKindOfClass:[NSString class]] && ([self source] == nil || ![source isEqualToString:[self source]])) { 64 | objc_setAssociatedObject(self, &kReactSourceIdentifier, source, OBJC_ASSOCIATION_COPY_NONATOMIC); 65 | [self loadWithSource:source]; 66 | } 67 | } 68 | 69 | - (NSString *)source { 70 | return objc_getAssociatedObject(self, &kReactSourceIdentifier); 71 | } 72 | 73 | - (void)setCurrentState:(NSString *)currentState { 74 | if ([currentState isKindOfClass:[NSString class]] && 75 | ([self currentState] == nil || ![currentState isEqualToString:[self currentState]])) { 76 | objc_setAssociatedObject(self, &kReactCurrentStateIdentifier, currentState, OBJC_ASSOCIATION_COPY_NONATOMIC); 77 | if ([currentState isEqualToString:@"start"]) { 78 | [self startAnimation]; 79 | } else if ([currentState isEqualToString:@"pause"]) { 80 | [self pauseAnimation]; 81 | } else if ([currentState isEqualToString:@"stop"]) { 82 | [self stopAnimation]; 83 | } else if ([currentState isEqualToString:@"clear"]) { 84 | [self stopAnimation]; 85 | [self clear]; 86 | } 87 | } 88 | } 89 | 90 | - (NSString *)currentState { 91 | return objc_getAssociatedObject(self, &kReactCurrentStateIdentifier); 92 | } 93 | 94 | - (void)setOnFinished:(RCTBubblingEventBlock)onFinished { 95 | objc_setAssociatedObject(self, &kReactOnFinishedIdentifier, onFinished, OBJC_ASSOCIATION_COPY_NONATOMIC); 96 | } 97 | 98 | - (RCTBubblingEventBlock)onFinished { 99 | return objc_getAssociatedObject(self, &kReactOnFinishedIdentifier); 100 | } 101 | 102 | - (void)setOnFrame:(RCTBubblingEventBlock)onFrame { 103 | objc_setAssociatedObject(self, &kReactOnFrameIdentifier, onFrame, OBJC_ASSOCIATION_COPY_NONATOMIC); 104 | } 105 | 106 | - (RCTBubblingEventBlock)onFrame { 107 | return objc_getAssociatedObject(self, &kReactOnFrameIdentifier); 108 | } 109 | 110 | - (void)setOnPercentage:(RCTBubblingEventBlock)onPercentage { 111 | objc_setAssociatedObject(self, &kReactOnPercentageIdentifier, onPercentage, OBJC_ASSOCIATION_COPY_NONATOMIC); 112 | } 113 | 114 | - (RCTBubblingEventBlock)onPercentage { 115 | return objc_getAssociatedObject(self, &kReactOnPercentageIdentifier); 116 | } 117 | 118 | - (void)setToFrame:(NSInteger)toFrame { 119 | if (toFrame < 0) { 120 | return; 121 | } 122 | [self stepToFrame:toFrame andPlay:[self.currentState isEqualToString:@"play"]]; 123 | } 124 | 125 | - (NSInteger)toFrame { 126 | return 0; 127 | } 128 | 129 | - (void)setToPercentage:(NSInteger)toPercentage { 130 | if (toPercentage < 0) { 131 | return; 132 | } 133 | [self stepToPercentage:toPercentage andPlay:[self.currentState isEqualToString:@"play"]]; 134 | } 135 | 136 | - (NSInteger)toPercentage { 137 | return 0.0; 138 | } 139 | 140 | - (void)svgaPlayerDidFinishedAnimation:(SVGAPlayer *)player { 141 | if (self.onFinished) { 142 | self.onFinished(@{}); 143 | } 144 | } 145 | 146 | - (void)svgaPlayerDidAnimatedToFrame:(NSInteger)frame { 147 | if (self.onFrame) { 148 | self.onFrame(@{ @"value" : @(frame) }); 149 | } 150 | } 151 | 152 | - (void)svgaPlayerDidAnimatedToPercentage:(CGFloat)percentage { 153 | if (self.onPercentage) { 154 | self.onPercentage(@{ @"value" : @(percentage) }); 155 | } 156 | } 157 | 158 | @end 159 | 160 | 161 | @implementation RNSvgaPlayer 162 | 163 | RCT_EXPORT_MODULE() 164 | RCT_EXPORT_VIEW_PROPERTY(loops, NSInteger) 165 | RCT_EXPORT_VIEW_PROPERTY(clearsAfterStop, BOOL) 166 | RCT_EXPORT_VIEW_PROPERTY(source, NSString) 167 | RCT_EXPORT_VIEW_PROPERTY(currentState, NSString) 168 | RCT_EXPORT_VIEW_PROPERTY(toFrame, NSInteger) 169 | RCT_EXPORT_VIEW_PROPERTY(toPercentage, NSInteger) 170 | RCT_EXPORT_VIEW_PROPERTY(onFinished, RCTBubblingEventBlock) 171 | RCT_EXPORT_VIEW_PROPERTY(onFrame, RCTBubblingEventBlock) 172 | RCT_EXPORT_VIEW_PROPERTY(onPercentage, RCTBubblingEventBlock) 173 | 174 | - (UIView *)view { 175 | SVGAPlayer *aPlayer = [[SVGAPlayer alloc] init]; 176 | aPlayer.delegate = aPlayer; 177 | aPlayer.clipsToBounds = NO; 178 | aPlayer.contentMode = UIViewContentModeScaleAspectFit; 179 | return aPlayer; 180 | } 181 | 182 | @end 183 | -------------------------------------------------------------------------------- /ios/RNSvgaPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | B3E7B58A1CC2AC0600A0062D /* RNSvgaPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = B3E7B5891CC2AC0600A0062D /* RNSvgaPlayer.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 /* libRNSvgaPlayer.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRNSvgaPlayer.a; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | B3E7B5881CC2AC0600A0062D /* RNSvgaPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RNSvgaPlayer.h; sourceTree = ""; }; 28 | B3E7B5891CC2AC0600A0062D /* RNSvgaPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNSvgaPlayer.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 /* libRNSvgaPlayer.a */, 46 | ); 47 | name = Products; 48 | sourceTree = ""; 49 | }; 50 | 58B511D21A9E6C8500147676 = { 51 | isa = PBXGroup; 52 | children = ( 53 | B3E7B5881CC2AC0600A0062D /* RNSvgaPlayer.h */, 54 | B3E7B5891CC2AC0600A0062D /* RNSvgaPlayer.m */, 55 | 134814211AA4EA7D00B7C361 /* Products */, 56 | ); 57 | sourceTree = ""; 58 | }; 59 | /* End PBXGroup section */ 60 | 61 | /* Begin PBXNativeTarget section */ 62 | 58B511DA1A9E6C8500147676 /* RNSvgaPlayer */ = { 63 | isa = PBXNativeTarget; 64 | buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNSvgaPlayer" */; 65 | buildPhases = ( 66 | 58B511D71A9E6C8500147676 /* Sources */, 67 | 58B511D81A9E6C8500147676 /* Frameworks */, 68 | 58B511D91A9E6C8500147676 /* CopyFiles */, 69 | ); 70 | buildRules = ( 71 | ); 72 | dependencies = ( 73 | ); 74 | name = RNSvgaPlayer; 75 | productName = RCTDataManager; 76 | productReference = 134814201AA4EA6300B7C361 /* libRNSvgaPlayer.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 = 0920; 86 | ORGANIZATIONNAME = Facebook; 87 | TargetAttributes = { 88 | 58B511DA1A9E6C8500147676 = { 89 | CreatedOnToolsVersion = 6.1.1; 90 | }; 91 | }; 92 | }; 93 | buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNSvgaPlayer" */; 94 | compatibilityVersion = "Xcode 3.2"; 95 | developmentRegion = English; 96 | hasScannedForEncodings = 0; 97 | knownRegions = ( 98 | en, 99 | ); 100 | mainGroup = 58B511D21A9E6C8500147676; 101 | productRefGroup = 58B511D21A9E6C8500147676; 102 | projectDirPath = ""; 103 | projectRoot = ""; 104 | targets = ( 105 | 58B511DA1A9E6C8500147676 /* RNSvgaPlayer */, 106 | ); 107 | }; 108 | /* End PBXProject section */ 109 | 110 | /* Begin PBXSourcesBuildPhase section */ 111 | 58B511D71A9E6C8500147676 /* Sources */ = { 112 | isa = PBXSourcesBuildPhase; 113 | buildActionMask = 2147483647; 114 | files = ( 115 | B3E7B58A1CC2AC0600A0062D /* RNSvgaPlayer.m in Sources */, 116 | ); 117 | runOnlyForDeploymentPostprocessing = 0; 118 | }; 119 | /* End PBXSourcesBuildPhase section */ 120 | 121 | /* Begin XCBuildConfiguration section */ 122 | 58B511ED1A9E6C8500147676 /* Debug */ = { 123 | isa = XCBuildConfiguration; 124 | buildSettings = { 125 | ALWAYS_SEARCH_USER_PATHS = NO; 126 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 127 | CLANG_CXX_LIBRARY = "libc++"; 128 | CLANG_ENABLE_MODULES = YES; 129 | CLANG_ENABLE_OBJC_ARC = YES; 130 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 131 | CLANG_WARN_BOOL_CONVERSION = YES; 132 | CLANG_WARN_COMMA = YES; 133 | CLANG_WARN_CONSTANT_CONVERSION = YES; 134 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 135 | CLANG_WARN_EMPTY_BODY = YES; 136 | CLANG_WARN_ENUM_CONVERSION = YES; 137 | CLANG_WARN_INFINITE_RECURSION = YES; 138 | CLANG_WARN_INT_CONVERSION = YES; 139 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 140 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 141 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 142 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 143 | CLANG_WARN_STRICT_PROTOTYPES = YES; 144 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 145 | CLANG_WARN_UNREACHABLE_CODE = YES; 146 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 147 | COPY_PHASE_STRIP = NO; 148 | ENABLE_STRICT_OBJC_MSGSEND = YES; 149 | ENABLE_TESTABILITY = YES; 150 | GCC_C_LANGUAGE_STANDARD = gnu99; 151 | GCC_DYNAMIC_NO_PIC = NO; 152 | GCC_NO_COMMON_BLOCKS = YES; 153 | GCC_OPTIMIZATION_LEVEL = 0; 154 | GCC_PREPROCESSOR_DEFINITIONS = ( 155 | "DEBUG=1", 156 | "$(inherited)", 157 | ); 158 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 159 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 160 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 161 | GCC_WARN_UNDECLARED_SELECTOR = YES; 162 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 163 | GCC_WARN_UNUSED_FUNCTION = YES; 164 | GCC_WARN_UNUSED_VARIABLE = YES; 165 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 166 | MTL_ENABLE_DEBUG_INFO = YES; 167 | ONLY_ACTIVE_ARCH = YES; 168 | SDKROOT = iphoneos; 169 | }; 170 | name = Debug; 171 | }; 172 | 58B511EE1A9E6C8500147676 /* Release */ = { 173 | isa = XCBuildConfiguration; 174 | buildSettings = { 175 | ALWAYS_SEARCH_USER_PATHS = NO; 176 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 177 | CLANG_CXX_LIBRARY = "libc++"; 178 | CLANG_ENABLE_MODULES = YES; 179 | CLANG_ENABLE_OBJC_ARC = YES; 180 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 181 | CLANG_WARN_BOOL_CONVERSION = YES; 182 | CLANG_WARN_COMMA = YES; 183 | CLANG_WARN_CONSTANT_CONVERSION = YES; 184 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 185 | CLANG_WARN_EMPTY_BODY = YES; 186 | CLANG_WARN_ENUM_CONVERSION = YES; 187 | CLANG_WARN_INFINITE_RECURSION = YES; 188 | CLANG_WARN_INT_CONVERSION = YES; 189 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 190 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 191 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 192 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 193 | CLANG_WARN_STRICT_PROTOTYPES = YES; 194 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 195 | CLANG_WARN_UNREACHABLE_CODE = YES; 196 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 197 | COPY_PHASE_STRIP = YES; 198 | ENABLE_NS_ASSERTIONS = NO; 199 | ENABLE_STRICT_OBJC_MSGSEND = YES; 200 | GCC_C_LANGUAGE_STANDARD = gnu99; 201 | GCC_NO_COMMON_BLOCKS = YES; 202 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 203 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 204 | GCC_WARN_UNDECLARED_SELECTOR = YES; 205 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 206 | GCC_WARN_UNUSED_FUNCTION = YES; 207 | GCC_WARN_UNUSED_VARIABLE = YES; 208 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 209 | MTL_ENABLE_DEBUG_INFO = NO; 210 | SDKROOT = iphoneos; 211 | VALIDATE_PRODUCT = YES; 212 | }; 213 | name = Release; 214 | }; 215 | 58B511F01A9E6C8500147676 /* Debug */ = { 216 | isa = XCBuildConfiguration; 217 | buildSettings = { 218 | HEADER_SEARCH_PATHS = ( 219 | "$(inherited)", 220 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 221 | "$(SRCROOT)/../../../React/**", 222 | "$(SRCROOT)/../../react-native/React/**", 223 | ); 224 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 225 | OTHER_LDFLAGS = "-ObjC"; 226 | PRODUCT_NAME = RNSvgaPlayer; 227 | SKIP_INSTALL = YES; 228 | }; 229 | name = Debug; 230 | }; 231 | 58B511F11A9E6C8500147676 /* Release */ = { 232 | isa = XCBuildConfiguration; 233 | buildSettings = { 234 | HEADER_SEARCH_PATHS = ( 235 | "$(inherited)", 236 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 237 | "$(SRCROOT)/../../../React/**", 238 | "$(SRCROOT)/../../react-native/React/**", 239 | ); 240 | LIBRARY_SEARCH_PATHS = "$(inherited)"; 241 | OTHER_LDFLAGS = "-ObjC"; 242 | PRODUCT_NAME = RNSvgaPlayer; 243 | SKIP_INSTALL = YES; 244 | }; 245 | name = Release; 246 | }; 247 | /* End XCBuildConfiguration section */ 248 | 249 | /* Begin XCConfigurationList section */ 250 | 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "RNSvgaPlayer" */ = { 251 | isa = XCConfigurationList; 252 | buildConfigurations = ( 253 | 58B511ED1A9E6C8500147676 /* Debug */, 254 | 58B511EE1A9E6C8500147676 /* Release */, 255 | ); 256 | defaultConfigurationIsVisible = 0; 257 | defaultConfigurationName = Release; 258 | }; 259 | 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "RNSvgaPlayer" */ = { 260 | isa = XCConfigurationList; 261 | buildConfigurations = ( 262 | 58B511F01A9E6C8500147676 /* Debug */, 263 | 58B511F11A9E6C8500147676 /* Release */, 264 | ); 265 | defaultConfigurationIsVisible = 0; 266 | defaultConfigurationName = Release; 267 | }; 268 | /* End XCConfigurationList section */ 269 | }; 270 | rootObject = 58B511D31A9E6C8500147676 /* Project object */; 271 | } 272 | -------------------------------------------------------------------------------- /ios/RNSvgaPlayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-svga-player", 3 | "title": "React Native Svga Player", 4 | "version": "1.1.0", 5 | "description": "svga player for react native", 6 | "main": "index.js", 7 | "scripts": { 8 | "tsc": "tsc" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git+https://github.com/bang88/react-native-svga-player.git", 13 | "baseUrl": "https://github.com/bang88/react-native-svga-player" 14 | }, 15 | "keywords": [ 16 | "react-native" 17 | ], 18 | "author": { 19 | "name": "bang88" 20 | }, 21 | "license": "MIT", 22 | "licenseFilename": "LICENSE", 23 | "readmeFilename": "README.md", 24 | "peerDependencies": { 25 | "react": "^16.8.1", 26 | "react-native": ">=0.60.0-rc.0 <1.0.x" 27 | }, 28 | "devDependencies": { 29 | "react": "^16.9.0", 30 | "react-native": "^0.61.5" 31 | }, 32 | "dependencies": { 33 | "@types/react": "^16.9.19", 34 | "@types/react-native": "^0.61.15", 35 | "typescript": "^3.7.5" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /react-native-svga-player.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 = "react-native-svga-player" 7 | s.version = package["version"] 8 | s.summary = package["description"] 9 | s.description = <<-DESC 10 | react-native-svga-player 11 | DESC 12 | s.homepage = "https://github.com/bang88/react-native-svga-player" 13 | s.license = "MIT" 14 | # s.license = { :type => "MIT", :file => "FILE_LICENSE" } 15 | s.authors = { "bang88" => "sqibang@email.com" } 16 | s.platforms = { :ios => "9.0" } 17 | s.source = { :git => "https://github.com/bang88/react-native-svga-player.git", :tag => "#{s.version}" } 18 | 19 | s.source_files = "ios/**/*.{h,m,swift}" 20 | s.requires_arc = true 21 | 22 | s.dependency "React" 23 | # ... 24 | s.dependency "SVGAPlayer" 25 | 26 | end 27 | 28 | -------------------------------------------------------------------------------- /scripts/examples_postinstall.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | * Using libraries within examples and linking them within packages.json like: 5 | * "react-native-library-name": "file:../" 6 | * will cause problems with the metro bundler if the example will run via 7 | * `react-native run-[ios|android]`. This will result in an error as the metro 8 | * bundler will find multiple versions for the same module while resolving it. 9 | * The reason for that is that if the library is installed it also copies in the 10 | * example folder itself as well as the node_modules folder of the library 11 | * although their are defined in .npmignore and should be ignored in theory. 12 | * 13 | * This postinstall script removes the node_modules folder as well as all 14 | * entries from the libraries .npmignore file within the examples node_modules 15 | * folder after the library was installed. This should resolve the metro 16 | * bundler issue mentioned above. 17 | * 18 | * It is expected this scripts lives in the libraries root folder within a 19 | * scripts folder. As first parameter the relative path to the libraries 20 | * folder within the example's node_modules folder may be provided. 21 | * This script will determine the path from this project's package.json file 22 | * if no such relative path is provided. 23 | * An example's package.json entry could look like: 24 | * "postinstall": "node ../scripts/examples_postinstall.js node_modules/react-native-library-name/" 25 | */ 26 | 27 | 'use strict'; 28 | 29 | const fs = require('fs'); 30 | const path = require('path'); 31 | 32 | /// Delete all files and directories for the given path 33 | const removeFileDirectoryRecursively = fileDirPath => { 34 | // Remove file 35 | if (!fs.lstatSync(fileDirPath).isDirectory()) { 36 | fs.unlinkSync(fileDirPath); 37 | return; 38 | } 39 | 40 | // Go down the directory an remove each file / directory recursively 41 | fs.readdirSync(fileDirPath).forEach(entry => { 42 | const entryPath = path.join(fileDirPath, entry); 43 | removeFileDirectoryRecursively(entryPath); 44 | }); 45 | fs.rmdirSync(fileDirPath); 46 | }; 47 | 48 | /// Remove example/node_modules/react-native-library-name/node_modules directory 49 | const removeLibraryNodeModulesPath = (libraryNodeModulesPath) => { 50 | const nodeModulesPath = path.resolve(libraryNodeModulesPath, 'node_modules') 51 | 52 | if (!fs.existsSync(nodeModulesPath)) { 53 | console.log(`No node_modules path found at ${nodeModulesPath}. Skipping delete.`) 54 | return; 55 | } 56 | 57 | console.log(`Deleting: ${nodeModulesPath}`) 58 | try { 59 | removeFileDirectoryRecursively(nodeModulesPath); 60 | console.log(`Successfully deleted: ${nodeModulesPath}`) 61 | } catch (err) { 62 | console.log(`Error deleting ${nodeModulesPath}: ${err.message}`); 63 | } 64 | }; 65 | 66 | /// Remove all entries from the .npmignore within example/node_modules/react-native-library-name/ 67 | const removeLibraryNpmIgnorePaths = (npmIgnorePath, libraryNodeModulesPath) => { 68 | if (!fs.existsSync(npmIgnorePath)) { 69 | console.log(`No .npmignore path found at ${npmIgnorePath}. Skipping deleting content.`); 70 | return; 71 | } 72 | 73 | fs.readFileSync(npmIgnorePath, 'utf8').split(/\r?\n/).forEach(entry => { 74 | if (entry.length === 0) { 75 | return 76 | } 77 | 78 | const npmIgnoreLibraryNodeModulesEntryPath = path.resolve(libraryNodeModulesPath, entry); 79 | if (!fs.existsSync(npmIgnoreLibraryNodeModulesEntryPath)) { 80 | return; 81 | } 82 | 83 | console.log(`Deleting: ${npmIgnoreLibraryNodeModulesEntryPath}`) 84 | try { 85 | removeFileDirectoryRecursively(npmIgnoreLibraryNodeModulesEntryPath); 86 | console.log(`Successfully deleted: ${npmIgnoreLibraryNodeModulesEntryPath}`) 87 | } catch (err) { 88 | console.log(`Error deleting ${npmIgnoreLibraryNodeModulesEntryPath}: ${err.message}`); 89 | } 90 | }); 91 | }; 92 | 93 | // Main start sweeping process 94 | (() => { 95 | // Read out dir of example project 96 | const exampleDir = process.cwd(); 97 | 98 | console.log(`Starting postinstall cleanup for ${exampleDir}`); 99 | 100 | // Resolve the React Native library's path within the example's node_modules directory 101 | const libraryNodeModulesPath = process.argv.length > 2 102 | ? path.resolve(exampleDir, process.argv[2]) 103 | : path.resolve(exampleDir, 'node_modules', require('../package.json').name); 104 | 105 | console.log(`Removing unwanted artifacts for ${libraryNodeModulesPath}`); 106 | 107 | removeLibraryNodeModulesPath(libraryNodeModulesPath); 108 | 109 | const npmIgnorePath = path.resolve(__dirname, '../.npmignore'); 110 | removeLibraryNpmIgnorePaths(npmIgnorePath, libraryNodeModulesPath); 111 | })(); 112 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | /* Basic Options */ 4 | // "incremental": true, /* Enable incremental compilation */ 5 | "target": "ESNEXT" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, 6 | "module": "ESNEXT" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, 7 | // "lib": [], /* Specify library files to be included in the compilation. */ 8 | // "allowJs": true, /* Allow javascript files to be compiled. */ 9 | // "checkJs": true, /* Report errors in .js files. */ 10 | "jsx": "react-native", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ 11 | "declaration": true, /* Generates corresponding '.d.ts' file. */ 12 | // "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ 13 | // "sourceMap": true, /* Generates corresponding '.map' file. */ 14 | // "outFile": "./", /* Concatenate and emit output to single file. */ 15 | // "outDir": "./", /* Redirect output structure to the directory. */ 16 | // "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ 17 | // "composite": true, /* Enable project compilation */ 18 | // "tsBuildInfoFile": "./", /* Specify file to store incremental compilation information */ 19 | // "removeComments": true, /* Do not emit comments to output. */ 20 | // "noEmit": true, /* Do not emit outputs. */ 21 | // "importHelpers": true, /* Import emit helpers from 'tslib'. */ 22 | // "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */ 23 | // "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */ 24 | 25 | /* Strict Type-Checking Options */ 26 | "strict": true /* Enable all strict type-checking options. */, 27 | // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ 28 | // "strictNullChecks": true, /* Enable strict null checks. */ 29 | // "strictFunctionTypes": true, /* Enable strict checking of function types. */ 30 | // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ 31 | // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ 32 | // "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ 33 | // "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ 34 | 35 | /* Additional Checks */ 36 | // "noUnusedLocals": true, /* Report errors on unused locals. */ 37 | // "noUnusedParameters": true, /* Report errors on unused parameters. */ 38 | // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ 39 | // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ 40 | 41 | /* Module Resolution Options */ 42 | // "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */ 43 | // "baseUrl": "./", /* Base directory to resolve non-absolute module names. */ 44 | // "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ 45 | // "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */ 46 | // "typeRoots": [], /* List of folders to include type definitions from. */ 47 | // "types": [], /* Type declaration files to be included in compilation. */ 48 | // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ 49 | "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */, 50 | // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ 51 | // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ 52 | 53 | /* Source Map Options */ 54 | // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ 55 | // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ 56 | // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ 57 | // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ 58 | 59 | /* Experimental Options */ 60 | // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ 61 | // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ 62 | 63 | /* Advanced Options */ 64 | "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ 65 | } 66 | } 67 | --------------------------------------------------------------------------------