@@ -0,0 +1,2 @@ | |||
BUNDLE_PATH: "vendor/bundle" | |||
BUNDLE_FORCE_RUBY_PLATFORM: 1 |
@@ -62,4 +62,4 @@ untyped-import | |||
untyped-type-import | |||
[version] | |||
^0.158.0 | |||
^0.170.0 |
@@ -1,2 +0,0 @@ | |||
# specific for windows script files | |||
*.bat text eol=crlf |
@@ -56,5 +56,6 @@ buck-out/ | |||
# Bundle artifact | |||
*.jsbundle | |||
# CocoaPods | |||
# Ruby / CocoaPods | |||
/ios/Pods/ | |||
/vendor/bundle/ |
@@ -0,0 +1 @@ | |||
2.7.4 |
@@ -0,0 +1,4 @@ | |||
source 'https://rubygems.org' | |||
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version | |||
ruby '2.7.4' | |||
gem 'cocoapods', '~> 1.11', '>= 1.11.2' |
@@ -8,6 +8,6 @@ | |||
android:usesCleartextTraffic="true" | |||
tools:targetApi="28" | |||
tools:ignore="GoogleAppIndexingWarning"> | |||
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" /> | |||
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" /> | |||
</application> | |||
</manifest> |
@@ -1,5 +1,5 @@ | |||
/** | |||
* Copyright (c) Facebook, Inc. and its affiliates. | |||
* Copyright (c) Meta Platforms, Inc. and affiliates. | |||
* | |||
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root | |||
* directory of this source tree. | |||
@@ -20,6 +20,7 @@ import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; | |||
import com.facebook.flipper.plugins.react.ReactFlipperPlugin; | |||
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; | |||
import com.facebook.react.ReactInstanceManager; | |||
import com.facebook.react.ReactInstanceEventListener; | |||
import com.facebook.react.bridge.ReactContext; | |||
import com.facebook.react.modules.network.NetworkingModule; | |||
import okhttp3.OkHttpClient; | |||
@@ -51,7 +52,7 @@ public class ReactNativeFlipper { | |||
ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); | |||
if (reactContext == null) { | |||
reactInstanceManager.addReactInstanceEventListener( | |||
new ReactInstanceManager.ReactInstanceEventListener() { | |||
new ReactInstanceEventListener() { | |||
@Override | |||
public void onReactContextInitialized(ReactContext reactContext) { | |||
reactInstanceManager.removeReactInstanceEventListener(this); | |||
@@ -20,9 +20,10 @@ | |||
<activity | |||
android:name=".MainActivity" | |||
android:label="@string/app_name" | |||
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" | |||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode" | |||
android:launchMode="singleTask" | |||
android:windowSoftInputMode="adjustPan"> | |||
android:windowSoftInputMode="adjustPan" | |||
android:exported="true"> | |||
<intent-filter> | |||
<action android:name="android.intent.action.MAIN" /> | |||
<category android:name="android.intent.category.LAUNCHER" /> | |||
@@ -1,6 +1,8 @@ | |||
package com.lesspass.android; | |||
import com.facebook.react.ReactActivity; | |||
import com.facebook.react.ReactActivityDelegate; | |||
import com.facebook.react.ReactRootView; | |||
public class MainActivity extends ReactActivity { | |||
@@ -8,4 +10,25 @@ public class MainActivity extends ReactActivity { | |||
protected String getMainComponentName() { | |||
return "LessPass"; | |||
} | |||
/** | |||
* Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and | |||
* you can specify the rendered you wish to use (Fabric or the older renderer). | |||
*/ | |||
@Override | |||
protected ReactActivityDelegate createReactActivityDelegate() { | |||
return new MainActivityDelegate(this, getMainComponentName()); | |||
} | |||
public static class MainActivityDelegate extends ReactActivityDelegate { | |||
public MainActivityDelegate(ReactActivity activity, String mainComponentName) { | |||
super(activity, mainComponentName); | |||
} | |||
@Override | |||
protected ReactRootView createRootView() { | |||
ReactRootView reactRootView = new ReactRootView(getContext()); | |||
// If you opted-in for the New Architecture, we enable the Fabric Renderer. | |||
reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED); | |||
return reactRootView; | |||
} | |||
} | |||
} |
@@ -8,7 +8,9 @@ import com.facebook.react.ReactApplication; | |||
import com.facebook.react.ReactInstanceManager; | |||
import com.facebook.react.ReactNativeHost; | |||
import com.facebook.react.ReactPackage; | |||
import com.facebook.react.config.ReactFeatureFlags; | |||
import com.facebook.soloader.SoLoader; | |||
import com.lesspass.newarchitecture.MainApplicationReactNativeHost; | |||
import java.lang.reflect.InvocationTargetException; | |||
import java.util.List; | |||
@@ -35,14 +37,23 @@ public class MainApplication extends Application implements ReactApplication { | |||
} | |||
}; | |||
private final ReactNativeHost mNewArchitectureNativeHost = | |||
new MainApplicationReactNativeHost(this); | |||
@Override | |||
public ReactNativeHost getReactNativeHost() { | |||
return mReactNativeHost; | |||
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { | |||
return mNewArchitectureNativeHost; | |||
} else { | |||
return mReactNativeHost; | |||
} | |||
} | |||
@Override | |||
public void onCreate() { | |||
super.onCreate(); | |||
// If you opted-in for the New Architecture, we enable the TurboModule system | |||
ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED; | |||
SoLoader.init(this, /* native exopackage */ false); | |||
initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); | |||
} | |||
@@ -0,0 +1,29 @@ | |||
<?xml version="1.0" encoding="utf-8"?> | |||
<!-- Copyright (C) 2014 The Android Open Source Project | |||
Licensed under the Apache License, Version 2.0 (the "License"); | |||
you may not use this file except in compliance with the License. | |||
You may obtain a copy of the License at | |||
http://www.apache.org/licenses/LICENSE-2.0 | |||
Unless required by applicable law or agreed to in writing, software | |||
distributed under the License is distributed on an "AS IS" BASIS, | |||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
See the License for the specific language governing permissions and | |||
limitations under the License. | |||
--> | |||
<inset xmlns:android="http://schemas.android.com/apk/res/android" | |||
android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material" | |||
android:insetRight="@dimen/abc_edit_text_inset_horizontal_material" | |||
android:insetTop="@dimen/abc_edit_text_inset_top_material" | |||
android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"> | |||
<selector> | |||
<!-- | |||
This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I). | |||
The item below with state_pressed="false" and state_focused="false" causes a NullPointerException. | |||
NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)' | |||
<item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> | |||
For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR. | |||
--> | |||
<item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/> | |||
<item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/> | |||
</selector> | |||
</inset> |
@@ -6,5 +6,6 @@ | |||
<item name="android:windowBackground">@color/backgroundColor</item> | |||
<item name="android:navigationBarColor">@color/navigationBarColor</item> | |||
<item name="android:windowLightNavigationBar">true</item> | |||
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item> | |||
</style> | |||
</resources> |
@@ -7,7 +7,9 @@ buildscript { | |||
mavenCentral() | |||
} | |||
dependencies { | |||
classpath("com.android.tools.build:gradle:4.2.2") | |||
classpath("com.android.tools.build:gradle:7.0.4") | |||
classpath("com.facebook.react:react-native-gradle-plugin") | |||
classpath("de.undercouch:gradle-download-task:4.1.2") | |||
// NOTE: Do not place your application dependencies here; they belong | |||
// in the individual module build.gradle files | |||
@@ -16,8 +18,6 @@ buildscript { | |||
allprojects { | |||
repositories { | |||
mavenCentral() | |||
mavenLocal() | |||
maven { | |||
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm | |||
url("$rootDir/../node_modules/react-native/android") | |||
@@ -26,7 +26,13 @@ allprojects { | |||
// Android JSC is installed from npm | |||
url("$rootDir/../node_modules/jsc-android/dist") | |||
} | |||
mavenCentral { | |||
// We don't want to fetch react-native from Maven Central as there are | |||
// older versions over there. | |||
content { | |||
excludeGroup "com.facebook.react" | |||
} | |||
} | |||
google() | |||
jcenter() | |||
maven { url 'https://www.jitpack.io' } | |||
@@ -34,11 +40,17 @@ allprojects { | |||
} | |||
ext { | |||
buildToolsVersion = "30.0.2" | |||
buildToolsVersion = "31.0.0" | |||
minSdkVersion = 21 | |||
compileSdkVersion = 30 | |||
targetSdkVersion = 30 | |||
ndkVersion = "21.4.7075529" | |||
compileSdkVersion = 31 | |||
targetSdkVersion = 31 | |||
if (System.properties['os.arch'] == "aarch64") { | |||
// For M1 Users we need to use the NDK 24 which added support for aarch64 | |||
ndkVersion = "24.0.8215888" | |||
} else { | |||
// Otherwise we default to the side-by-side NDK version from AGP. | |||
ndkVersion = "21.4.7075529" | |||
} | |||
def npmVersion = getNpmVersionArray() | |||
versionMajor = npmVersion[0] | |||
versionMinor = npmVersion[1] | |||
@@ -9,8 +9,8 @@ | |||
# Specifies the JVM arguments used for the daemon process. | |||
# The setting is particularly useful for tweaking memory settings. | |||
# Default value: -Xmx10248m -XX:MaxPermSize=256m | |||
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | |||
# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m | |||
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m | |||
# When configured, Gradle will run in incubating parallel mode. | |||
# This option should only be used with decoupled projects. More details, visit | |||
@@ -25,4 +25,14 @@ android.useAndroidX=true | |||
android.enableJetifier=true | |||
# Version of flipper SDK to use with React Native | |||
FLIPPER_VERSION=0.99.0 | |||
FLIPPER_VERSION=0.125.0 | |||
# Use this property to specify which architecture you want to build. | |||
# You can also override it from the CLI using | |||
# ./gradlew <task> -PreactNativeArchitectures=x86_64 | |||
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 | |||
# Use this property to enable support to the new architecture. | |||
# This will allow you to use TurboModules and the Fabric render in | |||
# your application. You should enable this flag either if you want | |||
# to write custom TurboModules/Fabric components OR use libraries that | |||
# are providing them. | |||
newArchEnabled=false |
@@ -1,5 +1,5 @@ | |||
distributionBase=GRADLE_USER_HOME | |||
distributionPath=wrapper/dists | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip | |||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip | |||
zipStoreBase=GRADLE_USER_HOME | |||
zipStorePath=wrapper/dists |
@@ -1,7 +1,7 @@ | |||
#!/usr/bin/env sh | |||
#!/bin/sh | |||
# | |||
# Copyright 2015 the original author or authors. | |||
# Copyright © 2015-2021 the original authors. | |||
# | |||
# Licensed under the Apache License, Version 2.0 (the "License"); | |||
# you may not use this file except in compliance with the License. | |||
@@ -17,67 +17,101 @@ | |||
# | |||
############################################################################## | |||
## | |||
## Gradle start up script for UN*X | |||
## | |||
# | |||
# Gradle start up script for POSIX generated by Gradle. | |||
# | |||
# Important for running: | |||
# | |||
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is | |||
# noncompliant, but you have some other compliant shell such as ksh or | |||
# bash, then to run this script, type that shell name before the whole | |||
# command line, like: | |||
# | |||
# ksh Gradle | |||
# | |||
# Busybox and similar reduced shells will NOT work, because this script | |||
# requires all of these POSIX shell features: | |||
# * functions; | |||
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», | |||
# «${var#prefix}», «${var%suffix}», and «$( cmd )»; | |||
# * compound commands having a testable exit status, especially «case»; | |||
# * various built-in commands including «command», «set», and «ulimit». | |||
# | |||
# Important for patching: | |||
# | |||
# (2) This script targets any POSIX shell, so it avoids extensions provided | |||
# by Bash, Ksh, etc; in particular arrays are avoided. | |||
# | |||
# The "traditional" practice of packing multiple parameters into a | |||
# space-separated string is a well documented source of bugs and security | |||
# problems, so this is (mostly) avoided, by progressively accumulating | |||
# options in "$@", and eventually passing that to Java. | |||
# | |||
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, | |||
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; | |||
# see the in-line comments for details. | |||
# | |||
# There are tweaks for specific operating systems such as AIX, CygWin, | |||
# Darwin, MinGW, and NonStop. | |||
# | |||
# (3) This script is generated from the Groovy template | |||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt | |||
# within the Gradle project. | |||
# | |||
# You can find Gradle at https://github.com/gradle/gradle/. | |||
# | |||
############################################################################## | |||
# Attempt to set APP_HOME | |||
# Resolve links: $0 may be a link | |||
PRG="$0" | |||
# Need this for relative symlinks. | |||
while [ -h "$PRG" ] ; do | |||
ls=`ls -ld "$PRG"` | |||
link=`expr "$ls" : '.*-> \(.*\)$'` | |||
if expr "$link" : '/.*' > /dev/null; then | |||
PRG="$link" | |||
else | |||
PRG=`dirname "$PRG"`"/$link" | |||
fi | |||
app_path=$0 | |||
# Need this for daisy-chained symlinks. | |||
while | |||
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path | |||
[ -h "$app_path" ] | |||
do | |||
ls=$( ls -ld "$app_path" ) | |||
link=${ls#*' -> '} | |||
case $link in #( | |||
/*) app_path=$link ;; #( | |||
*) app_path=$APP_HOME$link ;; | |||
esac | |||
done | |||
SAVED="`pwd`" | |||
cd "`dirname \"$PRG\"`/" >/dev/null | |||
APP_HOME="`pwd -P`" | |||
cd "$SAVED" >/dev/null | |||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit | |||
APP_NAME="Gradle" | |||
APP_BASE_NAME=`basename "$0"` | |||
APP_BASE_NAME=${0##*/} | |||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. | |||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' | |||
# Use the maximum available, or set MAX_FD != -1 to use that value. | |||
MAX_FD="maximum" | |||
MAX_FD=maximum | |||
warn () { | |||
echo "$*" | |||
} | |||
} >&2 | |||
die () { | |||
echo | |||
echo "$*" | |||
echo | |||
exit 1 | |||
} | |||
} >&2 | |||
# OS specific support (must be 'true' or 'false'). | |||
cygwin=false | |||
msys=false | |||
darwin=false | |||
nonstop=false | |||
case "`uname`" in | |||
CYGWIN* ) | |||
cygwin=true | |||
;; | |||
Darwin* ) | |||
darwin=true | |||
;; | |||
MINGW* ) | |||
msys=true | |||
;; | |||
NONSTOP* ) | |||
nonstop=true | |||
;; | |||
case "$( uname )" in #( | |||
CYGWIN* ) cygwin=true ;; #( | |||
Darwin* ) darwin=true ;; #( | |||
MSYS* | MINGW* ) msys=true ;; #( | |||
NONSTOP* ) nonstop=true ;; | |||
esac | |||
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar | |||
@@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar | |||
if [ -n "$JAVA_HOME" ] ; then | |||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then | |||
# IBM's JDK on AIX uses strange locations for the executables | |||
JAVACMD="$JAVA_HOME/jre/sh/java" | |||
JAVACMD=$JAVA_HOME/jre/sh/java | |||
else | |||
JAVACMD="$JAVA_HOME/bin/java" | |||
JAVACMD=$JAVA_HOME/bin/java | |||
fi | |||
if [ ! -x "$JAVACMD" ] ; then | |||
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME | |||
@@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the | |||
location of your Java installation." | |||
fi | |||
else | |||
JAVACMD="java" | |||
JAVACMD=java | |||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | |||
Please set the JAVA_HOME variable in your environment to match the | |||
@@ -106,80 +140,95 @@ location of your Java installation." | |||
fi | |||
# Increase the maximum file descriptors if we can. | |||
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then | |||
MAX_FD_LIMIT=`ulimit -H -n` | |||
if [ $? -eq 0 ] ; then | |||
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then | |||
MAX_FD="$MAX_FD_LIMIT" | |||
fi | |||
ulimit -n $MAX_FD | |||
if [ $? -ne 0 ] ; then | |||
warn "Could not set maximum file descriptor limit: $MAX_FD" | |||
fi | |||
else | |||
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" | |||
fi | |||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then | |||
case $MAX_FD in #( | |||
max*) | |||
MAX_FD=$( ulimit -H -n ) || | |||
warn "Could not query maximum file descriptor limit" | |||
esac | |||
case $MAX_FD in #( | |||
'' | soft) :;; #( | |||
*) | |||
ulimit -n "$MAX_FD" || | |||
warn "Could not set maximum file descriptor limit to $MAX_FD" | |||
esac | |||
fi | |||
# For Darwin, add options to specify how the application appears in the dock | |||
if $darwin; then | |||
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" | |||
fi | |||
# Collect all arguments for the java command, stacking in reverse order: | |||
# * args from the command line | |||
# * the main class name | |||
# * -classpath | |||
# * -D...appname settings | |||
# * --module-path (only if needed) | |||
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. | |||
# For Cygwin or MSYS, switch paths to Windows format before running java | |||
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then | |||
APP_HOME=`cygpath --path --mixed "$APP_HOME"` | |||
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` | |||
JAVACMD=`cygpath --unix "$JAVACMD"` | |||
# We build the pattern for arguments to be converted via cygpath | |||
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` | |||
SEP="" | |||
for dir in $ROOTDIRSRAW ; do | |||
ROOTDIRS="$ROOTDIRS$SEP$dir" | |||
SEP="|" | |||
done | |||
OURCYGPATTERN="(^($ROOTDIRS))" | |||
# Add a user-defined pattern to the cygpath arguments | |||
if [ "$GRADLE_CYGPATTERN" != "" ] ; then | |||
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" | |||
fi | |||
if "$cygwin" || "$msys" ; then | |||
APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) | |||
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) | |||
JAVACMD=$( cygpath --unix "$JAVACMD" ) | |||
# Now convert the arguments - kludge to limit ourselves to /bin/sh | |||
i=0 | |||
for arg in "$@" ; do | |||
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` | |||
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option | |||
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition | |||
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` | |||
else | |||
eval `echo args$i`="\"$arg\"" | |||
for arg do | |||
if | |||
case $arg in #( | |||
-*) false ;; # don't mess with options #( | |||
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath | |||
[ -e "$t" ] ;; #( | |||
*) false ;; | |||
esac | |||
then | |||
arg=$( cygpath --path --ignore --mixed "$arg" ) | |||
fi | |||
i=`expr $i + 1` | |||
# Roll the args list around exactly as many times as the number of | |||
# args, so each arg winds up back in the position where it started, but | |||
# possibly modified. | |||
# | |||
# NB: a `for` loop captures its iteration list before it begins, so | |||
# changing the positional parameters here affects neither the number of | |||
# iterations, nor the values presented in `arg`. | |||
shift # remove old arg | |||
set -- "$@" "$arg" # push replacement arg | |||
done | |||
case $i in | |||
0) set -- ;; | |||
1) set -- "$args0" ;; | |||
2) set -- "$args0" "$args1" ;; | |||
3) set -- "$args0" "$args1" "$args2" ;; | |||
4) set -- "$args0" "$args1" "$args2" "$args3" ;; | |||
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; | |||
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; | |||
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; | |||
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; | |||
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; | |||
esac | |||
fi | |||
# Escape application args | |||
save () { | |||
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done | |||
echo " " | |||
} | |||
APP_ARGS=`save "$@"` | |||
# Collect all arguments for the java command; | |||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of | |||
# shell script including quotes and variable substitutions, so put them in | |||
# double quotes to make sure that they get re-expanded; and | |||
# * put everything else in single quotes, so that it's not re-expanded. | |||
set -- \ | |||
"-Dorg.gradle.appname=$APP_BASE_NAME" \ | |||
-classpath "$CLASSPATH" \ | |||
org.gradle.wrapper.GradleWrapperMain \ | |||
"$@" | |||
# Use "xargs" to parse quoted args. | |||
# | |||
# With -n1 it outputs one arg per line, with the quotes and backslashes removed. | |||
# | |||
# In Bash we could simply go: | |||
# | |||
# readarray ARGS < <( xargs -n1 <<<"$var" ) && | |||
# set -- "${ARGS[@]}" "$@" | |||
# | |||
# but POSIX shell has neither arrays nor command substitution, so instead we | |||
# post-process each arg (as a line of input to sed) to backslash-escape any | |||
# character that might be a shell metacharacter, then use eval to reverse | |||
# that process (while maintaining the separation between arguments), and wrap | |||
# the whole thing up as a single "set" statement. | |||
# | |||
# This will of course break if any of these variables contains a newline or | |||
# an unmatched quote. | |||
# | |||
# Collect all arguments for the java command, following the shell quoting and substitution rules | |||
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" | |||
eval "set -- $( | |||
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | | |||
xargs -n1 | | |||
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | | |||
tr '\n' ' ' | |||
)" '"$@"' | |||
exec "$JAVACMD" "$@" | |||
exec "$JAVACMD" "$@" |
@@ -1,3 +1,8 @@ | |||
rootProject.name = 'LessPass' | |||
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) | |||
include ':app' | |||
includeBuild('../node_modules/react-native-gradle-plugin') | |||
if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { | |||
include(":ReactAndroid") | |||
project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid') | |||
} |
@@ -289,11 +289,13 @@ | |||
inputPaths = ( | |||
"${PODS_ROOT}/Target Support Files/Pods-LessPass/Pods-LessPass-frameworks.sh", | |||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion", | |||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog", | |||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL", | |||
); | |||
name = "[CP] Embed Pods Frameworks"; | |||
outputPaths = ( | |||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework", | |||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/glog.framework", | |||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", | |||
); | |||
runOnlyForDeploymentPostprocessing = 0; | |||
@@ -433,7 +435,7 @@ | |||
COPY_PHASE_STRIP = NO; | |||
ENABLE_STRICT_OBJC_MSGSEND = YES; | |||
ENABLE_TESTABILITY = YES; | |||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; | |||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; | |||
GCC_C_LANGUAGE_STANDARD = gnu99; | |||
GCC_DYNAMIC_NO_PIC = NO; | |||
GCC_NO_COMMON_BLOCKS = YES; | |||
@@ -452,8 +454,8 @@ | |||
IPHONEOS_DEPLOYMENT_TARGET = 11.0; | |||
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | |||
LIBRARY_SEARCH_PATHS = ( | |||
"$(SDKROOT)/usr/lib/swift", | |||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | |||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", | |||
"\"$(inherited)\"", | |||
); | |||
MTL_ENABLE_DEBUG_INFO = YES; | |||
@@ -495,7 +497,7 @@ | |||
COPY_PHASE_STRIP = YES; | |||
ENABLE_NS_ASSERTIONS = NO; | |||
ENABLE_STRICT_OBJC_MSGSEND = YES; | |||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; | |||
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; | |||
GCC_C_LANGUAGE_STANDARD = gnu99; | |||
GCC_NO_COMMON_BLOCKS = YES; | |||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES; | |||
@@ -507,8 +509,8 @@ | |||
IPHONEOS_DEPLOYMENT_TARGET = 11.0; | |||
LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)"; | |||
LIBRARY_SEARCH_PATHS = ( | |||
"$(SDKROOT)/usr/lib/swift", | |||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", | |||
"\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", | |||
"\"$(inherited)\"", | |||
); | |||
MTL_ENABLE_DEBUG_INFO = NO; | |||
@@ -20,6 +20,20 @@ | |||
ReferencedContainer = "container:LessPass.xcodeproj"> | |||
</BuildableReference> | |||
</BuildActionEntry> | |||
<BuildActionEntry | |||
buildForTesting = "YES" | |||
buildForRunning = "YES" | |||
buildForProfiling = "YES" | |||
buildForArchiving = "YES" | |||
buildForAnalyzing = "YES"> | |||
<BuildableReference | |||
BuildableIdentifier = "primary" | |||
BlueprintIdentifier = "1BEE828C124E6416179B904A9F66D794" | |||
BuildableName = "React" | |||
BlueprintName = "React" | |||
ReferencedContainer = "container:Pods/Pods.xcodeproj"> | |||
</BuildableReference> | |||
</BuildActionEntry> | |||
</BuildActionEntries> | |||
</BuildAction> | |||
<TestAction | |||
@@ -53,7 +53,7 @@ static void InitializeFlipper(UIApplication *application) { | |||
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge | |||
{ | |||
#if DEBUG | |||
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; | |||
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; | |||
#else | |||
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; | |||
#endif | |||
@@ -2,7 +2,8 @@ | |||
#import "AppDelegate.h" | |||
int main(int argc, char * argv[]) { | |||
int main(int argc, char *argv[]) | |||
{ | |||
@autoreleasepool { | |||
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); | |||
} | |||
@@ -2,14 +2,21 @@ require_relative '../node_modules/react-native/scripts/react_native_pods' | |||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | |||
platform :ios, '11.0' | |||
install! 'cocoapods', :deterministic_uuids => false | |||
target 'LessPass' do | |||
config = use_native_modules! | |||
# Flags change depending on the env values. | |||
flags = get_default_flags() | |||
use_react_native!( | |||
:path => config[:reactNativePath], | |||
# to enable hermes on iOS, change `false` to `true` and then install pods | |||
:hermes_enabled => false | |||
:hermes_enabled => flags[:hermes_enabled], | |||
:fabric_enabled => flags[:fabric_enabled], | |||
# An absolute path to your application root. | |||
:app_path => "#{Pod::Config.instance.installation_root}/.." | |||
) | |||
use_native_modules! | |||
@@ -2,78 +2,79 @@ PODS: | |||
- boost (1.76.0) | |||
- CocoaAsyncSocket (7.6.5) | |||
- DoubleConversion (1.1.6) | |||
- FBLazyVector (0.66.0) | |||
- FBReactNativeSpec (0.66.0): | |||
- FBLazyVector (0.68.2) | |||
- FBReactNativeSpec (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTRequired (= 0.66.0) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- Flipper (0.99.0): | |||
- RCTRequired (= 0.68.2) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Core (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- Flipper (0.125.0): | |||
- Flipper-Folly (~> 2.6) | |||
- Flipper-RSocket (~> 1.4) | |||
- Flipper-Boost-iOSX (1.76.0.1.11) | |||
- Flipper-DoubleConversion (3.1.7) | |||
- Flipper-DoubleConversion (3.2.0) | |||
- Flipper-Fmt (7.1.7) | |||
- Flipper-Folly (2.6.7): | |||
- Flipper-Folly (2.6.10): | |||
- Flipper-Boost-iOSX | |||
- Flipper-DoubleConversion | |||
- Flipper-Fmt (= 7.1.7) | |||
- Flipper-Glog | |||
- libevent (~> 2.1.12) | |||
- OpenSSL-Universal (= 1.1.180) | |||
- Flipper-Glog (0.3.6) | |||
- OpenSSL-Universal (= 1.1.1100) | |||
- Flipper-Glog (0.5.0.4) | |||
- Flipper-PeerTalk (0.0.4) | |||
- Flipper-RSocket (1.4.3): | |||
- Flipper-Folly (~> 2.6) | |||
- FlipperKit (0.99.0): | |||
- FlipperKit/Core (= 0.99.0) | |||
- FlipperKit/Core (0.99.0): | |||
- Flipper (~> 0.99.0) | |||
- FlipperKit (0.125.0): | |||
- FlipperKit/Core (= 0.125.0) | |||
- FlipperKit/Core (0.125.0): | |||
- Flipper (~> 0.125.0) | |||
- FlipperKit/CppBridge | |||
- FlipperKit/FBCxxFollyDynamicConvert | |||
- FlipperKit/FBDefines | |||
- FlipperKit/FKPortForwarding | |||
- FlipperKit/CppBridge (0.99.0): | |||
- Flipper (~> 0.99.0) | |||
- FlipperKit/FBCxxFollyDynamicConvert (0.99.0): | |||
- SocketRocket (~> 0.6.0) | |||
- FlipperKit/CppBridge (0.125.0): | |||
- Flipper (~> 0.125.0) | |||
- FlipperKit/FBCxxFollyDynamicConvert (0.125.0): | |||
- Flipper-Folly (~> 2.6) | |||
- FlipperKit/FBDefines (0.99.0) | |||
- FlipperKit/FKPortForwarding (0.99.0): | |||
- FlipperKit/FBDefines (0.125.0) | |||
- FlipperKit/FKPortForwarding (0.125.0): | |||
- CocoaAsyncSocket (~> 7.6) | |||
- Flipper-PeerTalk (~> 0.0.4) | |||
- FlipperKit/FlipperKitHighlightOverlay (0.99.0) | |||
- FlipperKit/FlipperKitLayoutHelpers (0.99.0): | |||
- FlipperKit/FlipperKitHighlightOverlay (0.125.0) | |||
- FlipperKit/FlipperKitLayoutHelpers (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitHighlightOverlay | |||
- FlipperKit/FlipperKitLayoutTextSearchable | |||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0): | |||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitHighlightOverlay | |||
- FlipperKit/FlipperKitLayoutHelpers | |||
- YogaKit (~> 1.18) | |||
- FlipperKit/FlipperKitLayoutPlugin (0.99.0): | |||
- FlipperKit/FlipperKitLayoutPlugin (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitHighlightOverlay | |||
- FlipperKit/FlipperKitLayoutHelpers | |||
- FlipperKit/FlipperKitLayoutIOSDescriptors | |||
- FlipperKit/FlipperKitLayoutTextSearchable | |||
- YogaKit (~> 1.18) | |||
- FlipperKit/FlipperKitLayoutTextSearchable (0.99.0) | |||
- FlipperKit/FlipperKitNetworkPlugin (0.99.0): | |||
- FlipperKit/FlipperKitLayoutTextSearchable (0.125.0) | |||
- FlipperKit/FlipperKitNetworkPlugin (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitReactPlugin (0.99.0): | |||
- FlipperKit/FlipperKitReactPlugin (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0): | |||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/SKIOSNetworkPlugin (0.99.0): | |||
- FlipperKit/SKIOSNetworkPlugin (0.125.0): | |||
- FlipperKit/Core | |||
- FlipperKit/FlipperKitNetworkPlugin | |||
- fmt (6.2.1) | |||
- glog (0.3.5) | |||
- libevent (2.1.12) | |||
- OpenSSL-Universal (1.1.180) | |||
- OpenSSL-Universal (1.1.1100) | |||
- RCT-Folly (2021.06.28.00-v2): | |||
- boost | |||
- DoubleConversion | |||
@@ -85,275 +86,289 @@ PODS: | |||
- DoubleConversion | |||
- fmt (~> 6.2.1) | |||
- glog | |||
- RCTRequired (0.66.0) | |||
- RCTTypeSafety (0.66.0): | |||
- FBLazyVector (= 0.66.0) | |||
- RCTRequired (0.68.2) | |||
- RCTTypeSafety (0.68.2): | |||
- FBLazyVector (= 0.68.2) | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTRequired (= 0.66.0) | |||
- React-Core (= 0.66.0) | |||
- React (0.66.0): | |||
- React-Core (= 0.66.0) | |||
- React-Core/DevSupport (= 0.66.0) | |||
- React-Core/RCTWebSocket (= 0.66.0) | |||
- React-RCTActionSheet (= 0.66.0) | |||
- React-RCTAnimation (= 0.66.0) | |||
- React-RCTBlob (= 0.66.0) | |||
- React-RCTImage (= 0.66.0) | |||
- React-RCTLinking (= 0.66.0) | |||
- React-RCTNetwork (= 0.66.0) | |||
- React-RCTSettings (= 0.66.0) | |||
- React-RCTText (= 0.66.0) | |||
- React-RCTVibration (= 0.66.0) | |||
- React-callinvoker (0.66.0) | |||
- React-Core (0.66.0): | |||
- RCTRequired (= 0.68.2) | |||
- React-Core (= 0.68.2) | |||
- React (0.68.2): | |||
- React-Core (= 0.68.2) | |||
- React-Core/DevSupport (= 0.68.2) | |||
- React-Core/RCTWebSocket (= 0.68.2) | |||
- React-RCTActionSheet (= 0.68.2) | |||
- React-RCTAnimation (= 0.68.2) | |||
- React-RCTBlob (= 0.68.2) | |||
- React-RCTImage (= 0.68.2) | |||
- React-RCTLinking (= 0.68.2) | |||
- React-RCTNetwork (= 0.68.2) | |||
- React-RCTSettings (= 0.68.2) | |||
- React-RCTText (= 0.68.2) | |||
- React-RCTVibration (= 0.68.2) | |||
- React-callinvoker (0.68.2) | |||
- React-Codegen (0.68.2): | |||
- FBReactNativeSpec (= 0.68.2) | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTRequired (= 0.68.2) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Core (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-Core (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default (= 0.66.0) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-Core/Default (= 0.68.2) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/CoreModulesHeaders (0.66.0): | |||
- React-Core/CoreModulesHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/Default (0.66.0): | |||
- React-Core/Default (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/DevSupport (0.66.0): | |||
- React-Core/DevSupport (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default (= 0.66.0) | |||
- React-Core/RCTWebSocket (= 0.66.0) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-jsinspector (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-Core/Default (= 0.68.2) | |||
- React-Core/RCTWebSocket (= 0.68.2) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-jsinspector (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTActionSheetHeaders (0.66.0): | |||
- React-Core/RCTActionSheetHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTAnimationHeaders (0.66.0): | |||
- React-Core/RCTAnimationHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTBlobHeaders (0.66.0): | |||
- React-Core/RCTBlobHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTImageHeaders (0.66.0): | |||
- React-Core/RCTImageHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTLinkingHeaders (0.66.0): | |||
- React-Core/RCTLinkingHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTNetworkHeaders (0.66.0): | |||
- React-Core/RCTNetworkHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTSettingsHeaders (0.66.0): | |||
- React-Core/RCTSettingsHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTTextHeaders (0.66.0): | |||
- React-Core/RCTTextHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTVibrationHeaders (0.66.0): | |||
- React-Core/RCTVibrationHeaders (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-Core/RCTWebSocket (0.66.0): | |||
- React-Core/RCTWebSocket (0.68.2): | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/Default (= 0.66.0) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsiexecutor (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-Core/Default (= 0.68.2) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsiexecutor (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- Yoga | |||
- React-CoreModules (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- React-CoreModules (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core/CoreModulesHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-RCTImage (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-cxxreact (0.66.0): | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/CoreModulesHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-RCTImage (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-cxxreact (0.68.2): | |||
- boost (= 1.76.0) | |||
- DoubleConversion | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-callinvoker (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-jsinspector (= 0.66.0) | |||
- React-logger (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-runtimeexecutor (= 0.66.0) | |||
- React-jsi (0.66.0): | |||
- React-callinvoker (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-jsinspector (= 0.68.2) | |||
- React-logger (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- React-runtimeexecutor (= 0.68.2) | |||
- React-jsi (0.68.2): | |||
- boost (= 1.76.0) | |||
- DoubleConversion | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-jsi/Default (= 0.66.0) | |||
- React-jsi/Default (0.66.0): | |||
- React-jsi/Default (= 0.68.2) | |||
- React-jsi/Default (0.68.2): | |||
- boost (= 1.76.0) | |||
- DoubleConversion | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-jsiexecutor (0.66.0): | |||
- React-jsiexecutor (0.68.2): | |||
- DoubleConversion | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-jsinspector (0.66.0) | |||
- React-logger (0.66.0): | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- React-jsinspector (0.68.2) | |||
- React-logger (0.68.2): | |||
- glog | |||
- react-native-safe-area-context (3.4.0): | |||
- React-Core | |||
- React-perflogger (0.66.0) | |||
- React-RCTActionSheet (0.66.0): | |||
- React-Core/RCTActionSheetHeaders (= 0.66.0) | |||
- React-RCTAnimation (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- react-native-safe-area-context (4.2.5): | |||
- RCT-Folly | |||
- RCTRequired | |||
- RCTTypeSafety | |||
- React | |||
- ReactCommon/turbomodule/core | |||
- React-perflogger (0.68.2) | |||
- React-RCTActionSheet (0.68.2): | |||
- React-Core/RCTActionSheetHeaders (= 0.68.2) | |||
- React-RCTAnimation (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core/RCTAnimationHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTBlob (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTAnimationHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTBlob (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/RCTBlobHeaders (= 0.66.0) | |||
- React-Core/RCTWebSocket (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-RCTNetwork (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTImage (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTBlobHeaders (= 0.68.2) | |||
- React-Core/RCTWebSocket (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-RCTNetwork (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTImage (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core/RCTImageHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-RCTNetwork (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTLinking (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- React-Core/RCTLinkingHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTNetwork (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTImageHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-RCTNetwork (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTLinking (0.68.2): | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTLinkingHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTNetwork (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core/RCTNetworkHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTSettings (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTNetworkHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTSettings (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- RCTTypeSafety (= 0.66.0) | |||
- React-Core/RCTSettingsHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-RCTText (0.66.0): | |||
- React-Core/RCTTextHeaders (= 0.66.0) | |||
- React-RCTVibration (0.66.0): | |||
- FBReactNativeSpec (= 0.66.0) | |||
- RCTTypeSafety (= 0.68.2) | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTSettingsHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-RCTText (0.68.2): | |||
- React-Core/RCTTextHeaders (= 0.68.2) | |||
- React-RCTVibration (0.68.2): | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-Core/RCTVibrationHeaders (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (= 0.66.0) | |||
- React-runtimeexecutor (0.66.0): | |||
- React-jsi (= 0.66.0) | |||
- ReactCommon/turbomodule/core (0.66.0): | |||
- React-Codegen (= 0.68.2) | |||
- React-Core/RCTVibrationHeaders (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (= 0.68.2) | |||
- React-runtimeexecutor (0.68.2): | |||
- React-jsi (= 0.68.2) | |||
- ReactCommon/turbomodule/core (0.68.2): | |||
- DoubleConversion | |||
- glog | |||
- RCT-Folly (= 2021.06.28.00-v2) | |||
- React-callinvoker (= 0.66.0) | |||
- React-Core (= 0.66.0) | |||
- React-cxxreact (= 0.66.0) | |||
- React-jsi (= 0.66.0) | |||
- React-logger (= 0.66.0) | |||
- React-perflogger (= 0.66.0) | |||
- React-callinvoker (= 0.68.2) | |||
- React-Core (= 0.68.2) | |||
- React-cxxreact (= 0.68.2) | |||
- React-jsi (= 0.68.2) | |||
- React-logger (= 0.68.2) | |||
- React-perflogger (= 0.68.2) | |||
- RNCAsyncStorage (1.12.1): | |||
- React-Core | |||
- RNCClipboard (1.5.1): | |||
- React-Core | |||
- RNCMaskedView (0.1.11): | |||
- React | |||
- RNGestureHandler (1.10.3): | |||
- RNGestureHandler (2.4.2): | |||
- React-Core | |||
- RNKeychain (8.0.0): | |||
- React-Core | |||
- RNScreens (3.11.1): | |||
- RNScreens (3.13.1): | |||
- React-Core | |||
- React-RCTImage | |||
- RNVectorIcons (8.1.0): | |||
- RNVectorIcons (9.1.0): | |||
- React-Core | |||
- SocketRocket (0.6.0) | |||
- TouchID (4.4.1): | |||
- React | |||
- Yoga (1.14.0) | |||
@@ -365,33 +380,35 @@ DEPENDENCIES: | |||
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) | |||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) | |||
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) | |||
- Flipper (= 0.99.0) | |||
- Flipper (= 0.125.0) | |||
- Flipper-Boost-iOSX (= 1.76.0.1.11) | |||
- Flipper-DoubleConversion (= 3.1.7) | |||
- Flipper-DoubleConversion (= 3.2.0) | |||
- Flipper-Fmt (= 7.1.7) | |||
- Flipper-Folly (= 2.6.7) | |||
- Flipper-Glog (= 0.3.6) | |||
- Flipper-Folly (= 2.6.10) | |||
- Flipper-Glog (= 0.5.0.4) | |||
- Flipper-PeerTalk (= 0.0.4) | |||
- Flipper-RSocket (= 1.4.3) | |||
- FlipperKit (= 0.99.0) | |||
- FlipperKit/Core (= 0.99.0) | |||
- FlipperKit/CppBridge (= 0.99.0) | |||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0) | |||
- FlipperKit/FBDefines (= 0.99.0) | |||
- FlipperKit/FKPortForwarding (= 0.99.0) | |||
- FlipperKit/FlipperKitHighlightOverlay (= 0.99.0) | |||
- FlipperKit/FlipperKitLayoutPlugin (= 0.99.0) | |||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0) | |||
- FlipperKit/FlipperKitNetworkPlugin (= 0.99.0) | |||
- FlipperKit/FlipperKitReactPlugin (= 0.99.0) | |||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0) | |||
- FlipperKit/SKIOSNetworkPlugin (= 0.99.0) | |||
- FlipperKit (= 0.125.0) | |||
- FlipperKit/Core (= 0.125.0) | |||
- FlipperKit/CppBridge (= 0.125.0) | |||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0) | |||
- FlipperKit/FBDefines (= 0.125.0) | |||
- FlipperKit/FKPortForwarding (= 0.125.0) | |||
- FlipperKit/FlipperKitHighlightOverlay (= 0.125.0) | |||
- FlipperKit/FlipperKitLayoutPlugin (= 0.125.0) | |||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0) | |||
- FlipperKit/FlipperKitNetworkPlugin (= 0.125.0) | |||
- FlipperKit/FlipperKitReactPlugin (= 0.125.0) | |||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0) | |||
- FlipperKit/SKIOSNetworkPlugin (= 0.125.0) | |||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) | |||
- OpenSSL-Universal (= 1.1.1100) | |||
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) | |||
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) | |||
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) | |||
- React (from `../node_modules/react-native/`) | |||
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) | |||
- React-Codegen (from `build/generated/ios`) | |||
- React-Core (from `../node_modules/react-native/`) | |||
- React-Core/DevSupport (from `../node_modules/react-native/`) | |||
- React-Core/RCTWebSocket (from `../node_modules/react-native/`) | |||
@@ -439,6 +456,7 @@ SPEC REPOS: | |||
- fmt | |||
- libevent | |||
- OpenSSL-Universal | |||
- SocketRocket | |||
- YogaKit | |||
EXTERNAL SOURCES: | |||
@@ -462,6 +480,8 @@ EXTERNAL SOURCES: | |||
:path: "../node_modules/react-native/" | |||
React-callinvoker: | |||
:path: "../node_modules/react-native/ReactCommon/callinvoker" | |||
React-Codegen: | |||
:path: build/generated/ios | |||
React-Core: | |||
:path: "../node_modules/react-native/" | |||
React-CoreModules: | |||
@@ -525,57 +545,59 @@ SPEC CHECKSUMS: | |||
boost: a7c83b31436843459a1961bfd74b96033dc77234 | |||
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 | |||
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662 | |||
FBLazyVector: 6816ca39e1cc8beffd2a96783f518296789d1c48 | |||
FBReactNativeSpec: 3b1e86618e902743fde35b40cf9ebd100fd655b7 | |||
Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733 | |||
FBLazyVector: a7a655862f6b09625d11c772296b01cd5164b648 | |||
FBReactNativeSpec: 81ce99032d5b586fddd6a38d450f8595f7e04be4 | |||
Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0 | |||
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c | |||
Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c | |||
Flipper-DoubleConversion: 3d3d04a078d4f3a1b6c6916587f159dc11f232c4 | |||
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b | |||
Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a | |||
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 | |||
Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 | |||
Flipper-Glog: 87bc98ff48de90cb5b0b5114ed3da79d85ee2dd4 | |||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 | |||
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541 | |||
FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9 | |||
FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86 | |||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 | |||
glog: 5337263514dd6f09803962437687240c5dc39aa4 | |||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 | |||
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b | |||
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c | |||
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9 | |||
RCTRequired: e4a18a90004e0ed97bba9081099104fd0f658dc9 | |||
RCTTypeSafety: 8a3c31d38de58e1a6a7df6e4e643644a60b00e22 | |||
React: 2b1d0dc3c23e01b754588a74a5b265282d9eb61e | |||
React-callinvoker: 57c195e780695285fa56e61efdbc0ca0e9204484 | |||
React-Core: 45e4b3c57b0b5fdbb24bc6a63a964870c0405955 | |||
React-CoreModules: d7bb1ae3436eddd85a7eb6d5e928f8c1655d87db | |||
React-cxxreact: 60c850e9997b21ee302757c36a460efc944183e7 | |||
React-jsi: 38d68cb1b53843703100830d530342b32f8e0878 | |||
React-jsiexecutor: 6a05173dc0142abc582bd4edd2d23146b8cc218a | |||
React-jsinspector: be95ad424ba9f7b817aff22732eb9b1b810a000a | |||
React-logger: 9a9cd87d4ea681ae929b32ef580638ff1b50fb24 | |||
react-native-safe-area-context: f4f7cc09d81ae2d39dfd13e764d718969af07080 | |||
React-perflogger: 1f554c2b684e2f484f9edcdfdaeedab039fbaca8 | |||
React-RCTActionSheet: 610d5a5d71ab4808734782c8bca6a12ec3563672 | |||
React-RCTAnimation: ec6ed97370ace32724c253f29f0586cafcab8126 | |||
React-RCTBlob: b3270d498ff240f49c50e1bc950b6e5fd48886ba | |||
React-RCTImage: 23d5e26669b31230bea3fd99eb703af699e5d61a | |||
React-RCTLinking: edaaee9dee82b79e90e7b903d8913fa72284fbba | |||
React-RCTNetwork: e8825053dd1b5c2a0e1aa3cf1127750b624f90c0 | |||
React-RCTSettings: 40d7ae987031c5dc561d11cd3a15cc1245a11d42 | |||
React-RCTText: 6e104479d4f0bb593b4cf90b6fc6e5390c12ccde | |||
React-RCTVibration: 53b92d54b923283638cb0186da7a5c2d2b70a49b | |||
React-runtimeexecutor: 4bb657a97aa74568d9ed634c8bd478299bb8a3a6 | |||
ReactCommon: eb059748e842a1a86025ebbd4ac9d99e74492f88 | |||
RCTRequired: 3e917ea5377751094f38145fdece525aa90545a0 | |||
RCTTypeSafety: c43c072a4bd60feb49a9570b0517892b4305c45e | |||
React: 176dd882de001854ced260fad41bb68a31aa4bd0 | |||
React-callinvoker: c2864d1818d6e64928d2faf774a3800dfc38fe1f | |||
React-Codegen: 98b6f97f0a7abf7d67e4ce435c77c05b7a95cf05 | |||
React-Core: fdaa2916b1c893f39f02cff0476d1fb0cab1e352 | |||
React-CoreModules: fd8705b80699ec36c2cdd635c2ce9d874b9cfdfc | |||
React-cxxreact: 1832d971f7b0cb2c7b943dc0ec962762c90c906e | |||
React-jsi: 72af715135abe8c3f0dcf3b2548b71d048b69a7e | |||
React-jsiexecutor: b7b553412f2ec768fe6c8f27cd6bafdb9d8719e6 | |||
React-jsinspector: c5989c77cb89ae6a69561095a61cce56a44ae8e8 | |||
React-logger: a0833912d93b36b791b7a521672d8ee89107aff1 | |||
react-native-safe-area-context: ebf8c413eb8b5f7c392a036a315eb7b46b96845f | |||
React-perflogger: a18b4f0bd933b8b24ecf9f3c54f9bf65180f3fe6 | |||
React-RCTActionSheet: 547fe42fdb4b6089598d79f8e1d855d7c23e2162 | |||
React-RCTAnimation: bc9440a1c37b06ae9ebbb532d244f607805c6034 | |||
React-RCTBlob: a1295c8e183756d7ef30ba6e8f8144dfe8a19215 | |||
React-RCTImage: a30d1ee09b1334067fbb6f30789aae2d7ac150c9 | |||
React-RCTLinking: ffc6d5b88d1cb9aca13c54c2ec6507fbf07f2ac4 | |||
React-RCTNetwork: f807a2facab6cf5cf36d592e634611de9cf12d81 | |||
React-RCTSettings: 861806819226ed8332e6a8f90df2951a34bb3e7f | |||
React-RCTText: f3fb464cc41a50fc7a1aba4deeb76a9ad8282cb9 | |||
React-RCTVibration: 79040b92bfa9c3c2d2cb4f57e981164ec7ab9374 | |||
React-runtimeexecutor: b960b687d2dfef0d3761fbb187e01812ebab8b23 | |||
ReactCommon: 095366164a276d91ea704ce53cb03825c487a3f2 | |||
RNCAsyncStorage: b03032fdbdb725bea0bd9e5ec5a7272865ae7398 | |||
RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495 | |||
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489 | |||
RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 | |||
RNGestureHandler: 61628a2c859172551aa2100d3e73d1e57878392f | |||
RNKeychain: 4f63aada75ebafd26f4bc2c670199461eab85d94 | |||
RNScreens: 4d83613b50b74ed277026375dc0810893b0c347f | |||
RNVectorIcons: 31cebfcf94e8cf8686eb5303ae0357da64d7a5a4 | |||
RNScreens: 40a2cb40a02a609938137a1e0acfbf8fc9eebf19 | |||
RNVectorIcons: 7923e585eaeb139b9f4531d25a125a1500162a0b | |||
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608 | |||
TouchID: ba4c656d849cceabc2e4eef722dea5e55959ecf4 | |||
Yoga: c11abbf5809216c91fcd62f5571078b83d9b6720 | |||
Yoga: 99652481fcd320aefa4a7ef90095b95acd181952 | |||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a | |||
PODFILE CHECKSUM: e8224faa1532c57e7f6a88615f204e5b3c70bae5 | |||
PODFILE CHECKSUM: c24b137748bd89423e90c29bc22ce8bb9d0f5e81 | |||
COCOAPODS: 1.11.2 |
@@ -25,42 +25,42 @@ | |||
"@react-native-community/async-storage": "^1.12.1", | |||
"@react-native-community/clipboard": "^1.5.1", | |||
"@react-native-community/masked-view": "^0.1.11", | |||
"@react-navigation/bottom-tabs": "^6.0.9", | |||
"@react-navigation/material-bottom-tabs": "^6.0.9", | |||
"@react-navigation/native": "^6.0.6", | |||
"@react-navigation/stack": "^6.0.11", | |||
"axios": "^0.23.0", | |||
"fuzzysort": "^1.1.4", | |||
"@react-navigation/bottom-tabs": "^6.3.1", | |||
"@react-navigation/material-bottom-tabs": "^6.2.1", | |||
"@react-navigation/native": "^6.0.10", | |||
"@react-navigation/stack": "^6.2.1", | |||
"axios": "^0.27.2", | |||
"fuzzysort": "^2.0.1", | |||
"lesspass-fingerprint": "latest", | |||
"lesspass-render-password": "latest", | |||
"lodash": "^4.17.21", | |||
"memoize-one": "^5.2.1", | |||
"prettier": "^2.4.1", | |||
"react": "17.0.2", | |||
"react-native": "0.66.0", | |||
"react-native-gesture-handler": "^1.10.3", | |||
"memoize-one": "^6.0.0", | |||
"prettier": "^2.6.2", | |||
"react": "18.1.0", | |||
"react-native": "0.68.2", | |||
"react-native-gesture-handler": "^2.4.2", | |||
"react-native-keychain": "^8.0.0", | |||
"react-native-paper": "^4.9.2", | |||
"react-native-safe-area-context": "^3.3.2", | |||
"react-native-screens": "^3.8.0", | |||
"react-native-paper": "^4.12.1", | |||
"react-native-safe-area-context": "^4.2.5", | |||
"react-native-screens": "^3.13.1", | |||
"react-native-touch-id": "^4.1.0", | |||
"react-native-vector-icons": "^8.1.0", | |||
"react-native-vector-icons": "^9.1.0", | |||
"react-redux": "^7.2.5", | |||
"redux": "^4.1.1", | |||
"redux-persist": "^6.0.0", | |||
"redux-thunk": "^2.3.0" | |||
}, | |||
"devDependencies": { | |||
"@babel/core": "^7.15.8", | |||
"@babel/runtime": "^7.15.4", | |||
"@react-native-community/eslint-config": "^3.0.1", | |||
"babel-jest": "^27.2.5", | |||
"eslint": "^8.0.0", | |||
"jest": "^27.2.5", | |||
"metro-react-native-babel-preset": "^0.66.2", | |||
"pod-install": "^0.1.28", | |||
"react-native-clean-project": "^3.6.7", | |||
"react-test-renderer": "17.0.2" | |||
"@babel/core": "^7.18.2", | |||
"@babel/runtime": "^7.18.3", | |||
"@react-native-community/eslint-config": "^3.0.2", | |||
"babel-jest": "^28.1.0", | |||
"eslint": "^7.32.0", | |||
"jest": "^28.1.0", | |||
"metro-react-native-babel-preset": "^0.67.0", | |||
"pod-install": "^0.1.36", | |||
"react-native-clean-project": "^4.0.1", | |||
"react-test-renderer": "18.1.0" | |||
}, | |||
"jest": { | |||
"preset": "react-native" | |||