├── .gitignore ├── README.md ├── doc ├── RNFrescoBuild_after_patch.png └── RNFrescoBuild_before_patch.png ├── package.json ├── template-061 ├── App.js ├── __tests__ │ └── App-test.js ├── _buckconfig ├── _eslintrc.js ├── _flowconfig ├── _gitattributes ├── _gitignore ├── _prettierrc.js ├── _watchmanconfig ├── android │ ├── .gradle │ │ └── 5.5 │ │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── helloworld │ │ │ │ ├── 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 ├── assets │ └── APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png ├── babel.config.js ├── index.js ├── ios │ ├── HelloWorld-tvOS │ │ └── Info.plist │ ├── HelloWorld-tvOSTests │ │ └── Info.plist │ ├── HelloWorld.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── HelloWorld-tvOS.xcscheme │ │ │ └── HelloWorld.xcscheme │ ├── HelloWorld │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── HelloWorldTests │ │ ├── HelloWorldTests.m │ │ └── Info.plist │ └── Podfile ├── metro.config.js ├── package.json └── patches │ └── DecodeProducer.java.diff ├── template-063 ├── App.js ├── __tests__ │ └── App-test.js ├── _buckconfig ├── _eslintrc.js ├── _flowconfig ├── _gitignore ├── _prettierrc.js ├── _watchmanconfig ├── android │ ├── .gradle │ │ ├── 6.6 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ ├── configuration-cache │ │ │ └── gc.properties │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── helloworld │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── helloworld │ │ │ │ ├── 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 ├── assets │ └── APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png ├── babel.config.js ├── index.js ├── ios │ ├── HelloWorld.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── HelloWorld.xcscheme │ ├── HelloWorld │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── HelloWorldTests │ │ ├── HelloWorldTests.m │ │ └── Info.plist │ └── Podfile ├── metro.config.js ├── package.json └── patches │ └── DecodeProducer.java.diff ├── template.config.js └── template ├── App.js ├── Gemfile ├── Gemfile.lock ├── __tests__ └── App-test.js ├── _buckconfig ├── _bundle └── config ├── _eslintrc.js ├── _flowconfig ├── _gitignore ├── _prettierrc.js ├── _ruby-version ├── _watchmanconfig ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── helloworld │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── helloworld │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets └── APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png ├── babel.config.js ├── index.js ├── ios ├── HelloWorld.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── HelloWorld.xcscheme ├── HelloWorld │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HelloWorldTests │ ├── HelloWorldTests.m │ └── Info.plist └── Podfile ├── metro.config.js ├── package.json └── patches └── DecodeProducer.java.diff /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/README.md -------------------------------------------------------------------------------- /doc/RNFrescoBuild_after_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/doc/RNFrescoBuild_after_patch.png -------------------------------------------------------------------------------- /doc/RNFrescoBuild_before_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/doc/RNFrescoBuild_before_patch.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/package.json -------------------------------------------------------------------------------- /template-061/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/App.js -------------------------------------------------------------------------------- /template-061/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/__tests__/App-test.js -------------------------------------------------------------------------------- /template-061/_buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/_buckconfig -------------------------------------------------------------------------------- /template-061/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /template-061/_flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/_flowconfig -------------------------------------------------------------------------------- /template-061/_gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /template-061/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/_gitignore -------------------------------------------------------------------------------- /template-061/_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/_prettierrc.js -------------------------------------------------------------------------------- /template-061/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /template-061/android/.gradle/5.5/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-061/android/.gradle/5.5/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/.gradle/5.5/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /template-061/android/.gradle/5.5/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-061/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/.project -------------------------------------------------------------------------------- /template-061/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /template-061/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/_BUCK -------------------------------------------------------------------------------- /template-061/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/build.gradle -------------------------------------------------------------------------------- /template-061/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/build_defs.bzl -------------------------------------------------------------------------------- /template-061/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/debug.keystore -------------------------------------------------------------------------------- /template-061/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template-061/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template-061/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template-061/android/app/src/main/java/com/helloworld/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/java/com/helloworld/MainActivity.java -------------------------------------------------------------------------------- /template-061/android/app/src/main/java/com/helloworld/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/java/com/helloworld/MainApplication.java -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template-061/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template-061/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/build.gradle -------------------------------------------------------------------------------- /template-061/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/gradle.properties -------------------------------------------------------------------------------- /template-061/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template-061/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template-061/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/gradlew -------------------------------------------------------------------------------- /template-061/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/gradlew.bat -------------------------------------------------------------------------------- /template-061/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/android/settings.gradle -------------------------------------------------------------------------------- /template-061/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/app.json -------------------------------------------------------------------------------- /template-061/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png -------------------------------------------------------------------------------- /template-061/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/babel.config.js -------------------------------------------------------------------------------- /template-061/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/index.js -------------------------------------------------------------------------------- /template-061/ios/HelloWorld-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld-tvOS/Info.plist -------------------------------------------------------------------------------- /template-061/ios/HelloWorld-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld-tvOSTests/Info.plist -------------------------------------------------------------------------------- /template-061/ios/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template-061/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld-tvOS.xcscheme -------------------------------------------------------------------------------- /template-061/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/AppDelegate.h -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/AppDelegate.m -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/Info.plist -------------------------------------------------------------------------------- /template-061/ios/HelloWorld/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorld/main.m -------------------------------------------------------------------------------- /template-061/ios/HelloWorldTests/HelloWorldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorldTests/HelloWorldTests.m -------------------------------------------------------------------------------- /template-061/ios/HelloWorldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/HelloWorldTests/Info.plist -------------------------------------------------------------------------------- /template-061/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/ios/Podfile -------------------------------------------------------------------------------- /template-061/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/metro.config.js -------------------------------------------------------------------------------- /template-061/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/package.json -------------------------------------------------------------------------------- /template-061/patches/DecodeProducer.java.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-061/patches/DecodeProducer.java.diff -------------------------------------------------------------------------------- /template-063/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/App.js -------------------------------------------------------------------------------- /template-063/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/__tests__/App-test.js -------------------------------------------------------------------------------- /template-063/_buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/_buckconfig -------------------------------------------------------------------------------- /template-063/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /template-063/_flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/_flowconfig -------------------------------------------------------------------------------- /template-063/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/_gitignore -------------------------------------------------------------------------------- /template-063/_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/_prettierrc.js -------------------------------------------------------------------------------- /template-063/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /template-063/android/.gradle/6.6/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-063/android/.gradle/6.6/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/.gradle/6.6/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /template-063/android/.gradle/6.6/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-063/android/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /template-063/android/.gradle/configuration-cache/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-063/android/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template-063/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/.project -------------------------------------------------------------------------------- /template-063/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /template-063/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/_BUCK -------------------------------------------------------------------------------- /template-063/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/build.gradle -------------------------------------------------------------------------------- /template-063/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/build_defs.bzl -------------------------------------------------------------------------------- /template-063/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/debug.keystore -------------------------------------------------------------------------------- /template-063/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template-063/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template-063/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java -------------------------------------------------------------------------------- /template-063/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template-063/android/app/src/main/java/com/helloworld/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/java/com/helloworld/MainActivity.java -------------------------------------------------------------------------------- /template-063/android/app/src/main/java/com/helloworld/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/java/com/helloworld/MainApplication.java -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template-063/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template-063/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/build.gradle -------------------------------------------------------------------------------- /template-063/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/gradle.properties -------------------------------------------------------------------------------- /template-063/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template-063/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template-063/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/gradlew -------------------------------------------------------------------------------- /template-063/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/gradlew.bat -------------------------------------------------------------------------------- /template-063/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/android/settings.gradle -------------------------------------------------------------------------------- /template-063/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/app.json -------------------------------------------------------------------------------- /template-063/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png -------------------------------------------------------------------------------- /template-063/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/babel.config.js -------------------------------------------------------------------------------- /template-063/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/index.js -------------------------------------------------------------------------------- /template-063/ios/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template-063/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/AppDelegate.h -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/AppDelegate.m -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/Info.plist -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/LaunchScreen.storyboard -------------------------------------------------------------------------------- /template-063/ios/HelloWorld/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorld/main.m -------------------------------------------------------------------------------- /template-063/ios/HelloWorldTests/HelloWorldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorldTests/HelloWorldTests.m -------------------------------------------------------------------------------- /template-063/ios/HelloWorldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/HelloWorldTests/Info.plist -------------------------------------------------------------------------------- /template-063/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/ios/Podfile -------------------------------------------------------------------------------- /template-063/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/metro.config.js -------------------------------------------------------------------------------- /template-063/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/package.json -------------------------------------------------------------------------------- /template-063/patches/DecodeProducer.java.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template-063/patches/DecodeProducer.java.diff -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template.config.js -------------------------------------------------------------------------------- /template/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/App.js -------------------------------------------------------------------------------- /template/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/Gemfile -------------------------------------------------------------------------------- /template/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/Gemfile.lock -------------------------------------------------------------------------------- /template/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/__tests__/App-test.js -------------------------------------------------------------------------------- /template/_buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/_buckconfig -------------------------------------------------------------------------------- /template/_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/_bundle/config -------------------------------------------------------------------------------- /template/_eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /template/_flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/_flowconfig -------------------------------------------------------------------------------- /template/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/_gitignore -------------------------------------------------------------------------------- /template/_prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/_prettierrc.js -------------------------------------------------------------------------------- /template/_ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 2 | -------------------------------------------------------------------------------- /template/_watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /template/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/_BUCK -------------------------------------------------------------------------------- /template/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/build.gradle -------------------------------------------------------------------------------- /template/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/build_defs.bzl -------------------------------------------------------------------------------- /template/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/debug.keystore -------------------------------------------------------------------------------- /template/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/debug/java/com/helloworld/ReactNativeFlipper.java -------------------------------------------------------------------------------- /template/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/helloworld/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/java/com/helloworld/MainActivity.java -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/helloworld/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/java/com/helloworld/MainApplication.java -------------------------------------------------------------------------------- /template/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/build.gradle -------------------------------------------------------------------------------- /template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/gradle.properties -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/gradlew -------------------------------------------------------------------------------- /template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/gradlew.bat -------------------------------------------------------------------------------- /template/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/android/settings.gradle -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/app.json -------------------------------------------------------------------------------- /template/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/assets/APAA-2019_Main-Venues-and-Official-Hotels_20190924_v2.png -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/index.js -------------------------------------------------------------------------------- /template/ios/HelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld.xcodeproj/xcshareddata/xcschemes/HelloWorld.xcscheme -------------------------------------------------------------------------------- /template/ios/HelloWorld/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/AppDelegate.h -------------------------------------------------------------------------------- /template/ios/HelloWorld/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/AppDelegate.m -------------------------------------------------------------------------------- /template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template/ios/HelloWorld/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template/ios/HelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/Info.plist -------------------------------------------------------------------------------- /template/ios/HelloWorld/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/LaunchScreen.storyboard -------------------------------------------------------------------------------- /template/ios/HelloWorld/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorld/main.m -------------------------------------------------------------------------------- /template/ios/HelloWorldTests/HelloWorldTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorldTests/HelloWorldTests.m -------------------------------------------------------------------------------- /template/ios/HelloWorldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/HelloWorldTests/Info.plist -------------------------------------------------------------------------------- /template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/ios/Podfile -------------------------------------------------------------------------------- /template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/metro.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/package.json -------------------------------------------------------------------------------- /template/patches/DecodeProducer.java.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clytras/react-native-fresco/HEAD/template/patches/DecodeProducer.java.diff --------------------------------------------------------------------------------