csa-react-60/patches/react-native-image-crop-picker+0.40.0.patch

892 lines
49 KiB
Diff

diff --git a/node_modules/react-native-image-crop-picker/android/.classpath b/node_modules/react-native-image-crop-picker/android/.classpath
new file mode 100644
index 0000000..0a3280e
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/.classpath
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21/"/>
+ <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
+ <classpathentry kind="output" path="bin/default"/>
+</classpath>
diff --git a/node_modules/react-native-image-crop-picker/android/.project b/node_modules/react-native-image-crop-picker/android/.project
new file mode 100644
index 0000000..dc03db2
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/.project
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>react-native-image-crop-picker</name>
+ <comment>Project react-native-image-crop-picker created by Buildship.</comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+ </natures>
+ <filteredResources>
+ <filter>
+ <id>1744530580986</id>
+ <name></name>
+ <type>30</type>
+ <matcher>
+ <id>org.eclipse.core.resources.regexFilterMatcher</id>
+ <arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
+ </matcher>
+ </filter>
+ </filteredResources>
+</projectDescription>
diff --git a/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.buildship.core.prefs b/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.buildship.core.prefs
new file mode 100644
index 0000000..1675490
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.buildship.core.prefs
@@ -0,0 +1,2 @@
+connection.project.dir=../../../android
+eclipse.preferences.version=1
diff --git a/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.jdt.core.prefs b/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.jdt.core.prefs
new file mode 100644
index 0000000..60e5b01
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/.settings/org.eclipse.jdt.core.prefs
@@ -0,0 +1,4 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=27
+org.eclipse.jdt.core.compiler.compliance=27
+org.eclipse.jdt.core.compiler.source=27
diff --git a/node_modules/react-native-image-crop-picker/android/bin/.project b/node_modules/react-native-image-crop-picker/android/bin/.project
new file mode 100644
index 0000000..c9e0f4b
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/.project
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>react-native-image-crop-picker</name>
+ <comment>Project react-native-image-crop-picker created by Buildship.</comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.eclipse.buildship.core.gradleprojectbuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.eclipse.buildship.core.gradleprojectnature</nature>
+ </natures>
+</projectDescription>
diff --git a/node_modules/react-native-image-crop-picker/android/bin/build.gradle b/node_modules/react-native-image-crop-picker/android/bin/build.gradle
new file mode 100644
index 0000000..48443cc
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/build.gradle
@@ -0,0 +1,26 @@
+apply plugin: 'com.android.library'
+
+def DEFAULT_COMPILE_SDK_VERSION = 30
+def DEFAULT_BUILD_TOOLS_VERSION = "29.0.3"
+def DEFAULT_TARGET_SDK_VERSION = 30
+def DEFAULT_MIN_SDK_VERSION = 16
+
+android {
+ compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
+ buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
+
+ defaultConfig {
+ minSdkVersion rootProject.hasProperty('minSdkVersion') ? rootProject.minSdkVersion : DEFAULT_MIN_SDK_VERSION
+ targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
+ versionCode 1
+ }
+ lintOptions {
+ abortOnError false
+ }
+}
+
+dependencies {
+ implementation 'com.facebook.react:react-native:+'
+ implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
+ implementation 'com.github.yalantis:ucrop:2.2.6-native'
+}
diff --git a/node_modules/react-native-image-crop-picker/android/bin/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.class b/node_modules/react-native-image-crop-picker/android/bin/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.class
new file mode 100644
index 0000000..2c318e8
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-image-crop-picker/android/bin/build/intermediates/aar_metadata/debug/aar-metadata.properties
new file mode 100644
index 0000000..8c9c699
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/build/intermediates/aar_metadata/debug/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.jar b/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..13372ae
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.properties b/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..0f5c93f
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Tue May 17 14:28:43 CEST 2016
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
diff --git a/node_modules/react-native-image-crop-picker/android/bin/gradlew b/node_modules/react-native-image-crop-picker/android/bin/gradlew
new file mode 100644
index 0000000..9d82f78
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/gradlew
@@ -0,0 +1,160 @@
+#!/usr/bin/env bash
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn ( ) {
+ echo "$*"
+}
+
+die ( ) {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+esac
+
+# 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
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+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"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ 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
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "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
+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
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; 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
+ # 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\""
+ fi
+ i=$((i+1))
+ 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
+
+# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
+function splitJvmOpts() {
+ JVM_OPTS=("$@")
+}
+eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
+JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
+
+exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
diff --git a/node_modules/react-native-image-crop-picker/android/bin/gradlew.bat b/node_modules/react-native-image-crop-picker/android/bin/gradlew.bat
new file mode 100644
index 0000000..aec9973
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/gradlew.bat
@@ -0,0 +1,90 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+set CMD_LINE_ARGS=%$
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/AndroidManifest.xml b/node_modules/react-native-image-crop-picker/android/bin/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..c356fde
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/src/main/AndroidManifest.xml
@@ -0,0 +1,29 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.reactnative.ivpusic.imagepicker">
+
+ <queries>
+ <intent>
+ <action android:name="android.media.action.IMAGE_CAPTURE" />
+ </intent>
+ </queries>
+
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+
+ <application>
+
+ <provider
+ android:name=".IvpusicImagePickerFileProvider"
+ android:authorities="${applicationId}.provider"
+ android:exported="false"
+ android:grantUriPermissions="true">
+ <meta-data
+ android:name="android.support.FILE_PROVIDER_PATHS"
+ android:resource="@xml/ivpusic_imagepicker_provider_paths" />
+ </provider>
+
+ <activity
+ android:name="com.yalantis.ucrop.UCropActivity"
+ android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
+ </application>
+
+</manifest>
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/Compression.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/Compression.class
new file mode 100644
index 0000000..2f7bdec
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/Compression.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ExifExtractor.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ExifExtractor.class
new file mode 100644
index 0000000..2c1ecf3
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ExifExtractor.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/GeoDegree.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/GeoDegree.class
new file mode 100644
index 0000000..f938e14
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/GeoDegree.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/IvpusicImagePickerFileProvider.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/IvpusicImagePickerFileProvider.class
new file mode 100644
index 0000000..6117020
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/IvpusicImagePickerFileProvider.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerModule.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerModule.class
new file mode 100644
index 0000000..cb733fa
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerModule.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerPackage.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerPackage.class
new file mode 100644
index 0000000..30ce3e3
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/PickerPackage.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/RealPathUtil.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/RealPathUtil.class
new file mode 100644
index 0000000..500f4cc
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/RealPathUtil.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ResultCollector.class b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ResultCollector.class
new file mode 100644
index 0000000..c409f2a
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/bin/src/main/java/com/reactnative/ivpusic/imagepicker/ResultCollector.class differ
diff --git a/node_modules/react-native-image-crop-picker/android/bin/src/main/res/xml/ivpusic_imagepicker_provider_paths.xml b/node_modules/react-native-image-crop-picker/android/bin/src/main/res/xml/ivpusic_imagepicker_provider_paths.xml
new file mode 100644
index 0000000..ffa74ab
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/bin/src/main/res/xml/ivpusic_imagepicker_provider_paths.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<paths xmlns:android="http://schemas.android.com/apk/res/android">
+ <external-path name="external_files" path="."/>
+</paths>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build.gradle b/node_modules/react-native-image-crop-picker/android/build.gradle
index 48443cc..8cb368f 100644
--- a/node_modules/react-native-image-crop-picker/android/build.gradle
+++ b/node_modules/react-native-image-crop-picker/android/build.gradle
@@ -6,6 +6,7 @@ def DEFAULT_TARGET_SDK_VERSION = 30
def DEFAULT_MIN_SDK_VERSION = 16
android {
+ namespace "com.reactnative.ivpusic.imagepicker"
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
diff --git a/node_modules/react-native-image-crop-picker/android/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.java b/node_modules/react-native-image-crop-picker/android/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.java
new file mode 100644
index 0000000..74a36dd
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/generated/source/buildConfig/debug/com/reactnative/ivpusic/imagepicker/BuildConfig.java
@@ -0,0 +1,10 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package com.reactnative.ivpusic.imagepicker;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String LIBRARY_PACKAGE_NAME = "com.reactnative.ivpusic.imagepicker";
+ public static final String BUILD_TYPE = "debug";
+}
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
new file mode 100644
index 0000000..516f8b4
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.reactnative.ivpusic.imagepicker" >
+
+ <uses-sdk
+ android:minSdkVersion="21"
+ android:targetSdkVersion="34" />
+
+ <queries>
+ <intent>
+ <action android:name="android.media.action.IMAGE_CAPTURE" />
+ </intent>
+ </queries>
+
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+
+ <application>
+ <provider
+ android:name="com.reactnative.ivpusic.imagepicker.IvpusicImagePickerFileProvider"
+ android:authorities="dollar_openBracket_applicationId_closeBracket.provider"
+ android:exported="false"
+ android:grantUriPermissions="true" >
+ <meta-data
+ android:name="android.support.FILE_PROVIDER_PATHS"
+ android:resource="@xml/ivpusic_imagepicker_provider_paths" />
+ </provider>
+
+ <activity
+ android:name="com.yalantis.ucrop.UCropActivity"
+ android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
+ </application>
+
+</manifest>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
new file mode 100644
index 0000000..a34b0f9
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.reactnative.ivpusic.imagepicker",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-image-crop-picker/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
new file mode 100644
index 0000000..8c9c699
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
@@ -0,0 +1,4 @@
+aarFormatVersion=1.0
+aarMetadataVersion=1.0
+minCompileSdk=1
+minAndroidGradlePluginVersion=1.0.0
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/node_modules/react-native-image-crop-picker/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/compiled_local_resources/debug/out/xml_ivpusic_imagepicker_provider_paths.xml.flat b/node_modules/react-native-image-crop-picker/android/build/intermediates/compiled_local_resources/debug/out/xml_ivpusic_imagepicker_provider_paths.xml.flat
new file mode 100644
index 0000000..9acc159
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/build/intermediates/compiled_local_resources/debug/out/xml_ivpusic_imagepicker_provider_paths.xml.flat differ
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state
new file mode 100644
index 0000000..1c983fc
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
new file mode 100644
index 0000000..65bab25
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -0,0 +1,2 @@
+#Sun Apr 13 14:15:12 ICT 2025
+com.reactnative.ivpusic.imagepicker.react-native-image-crop-picker-main-7\:/xml/ivpusic_imagepicker_provider_paths.xml=/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_res/debug/xml/ivpusic_imagepicker_provider_paths.xml
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
new file mode 100644
index 0000000..4b925f4
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/res"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/res"><file name="ivpusic_imagepicker_provider_paths" path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/res/xml/ivpusic_imagepicker_provider_paths.xml" qualifiers="" type="xml"/></source><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"/><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="generated" generated-set="generated$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"/><mergedItems/></merger>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
new file mode 100644
index 0000000..a86d17f
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/debug/jniLibs"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
new file mode 100644
index 0000000..7c080e1
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/debug/shaders"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/packageDebugAssets/merger.xml
new file mode 100644
index 0000000..73ee454
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/incremental/packageDebugAssets/merger.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/assets"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/build/intermediates/shader_assets/debug/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/debug/assets"/></dataSet></merger>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/react-native-image-crop-picker/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
new file mode 100644
index 0000000..192ed14
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
@@ -0,0 +1,3 @@
+R_DEF: Internal format may change without notice
+local
+xml ivpusic_imagepicker_provider_paths
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/react-native-image-crop-picker/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
new file mode 100644
index 0000000..f430cbf
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
@@ -0,0 +1,53 @@
+1<?xml version="1.0" encoding="utf-8"?>
+2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+3 package="com.reactnative.ivpusic.imagepicker" >
+4
+5 <uses-sdk
+6 android:minSdkVersion="21"
+6-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+7 android:targetSdkVersion="34" />
+7-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+8
+9 <queries>
+9-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:4:5-8:15
+10 <intent>
+10-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:5:9-7:18
+11 <action android:name="android.media.action.IMAGE_CAPTURE" />
+11-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:6:13-73
+11-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:6:21-70
+12 </intent>
+13 </queries>
+14
+15 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+15-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:10:5-81
+15-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:10:22-78
+16
+17 <application>
+17-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:12:5-27:19
+18 <provider
+18-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:14:9-22:20
+19 android:name="com.reactnative.ivpusic.imagepicker.IvpusicImagePickerFileProvider"
+19-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:15:13-59
+20 android:authorities="${applicationId}.provider"
+20-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:16:13-60
+21 android:exported="false"
+21-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:17:13-37
+22 android:grantUriPermissions="true" >
+22-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:18:13-47
+23 <meta-data
+23-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:19:13-21:78
+24 android:name="android.support.FILE_PROVIDER_PATHS"
+24-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:20:17-67
+25 android:resource="@xml/ivpusic_imagepicker_provider_paths" />
+25-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:21:17-75
+26 </provider>
+27
+28 <activity
+28-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:24:9-26:72
+29 android:name="com.yalantis.ucrop.UCropActivity"
+29-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:25:13-60
+30 android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
+30-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:26:13-69
+31 </application>
+32
+33</manifest>
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_java_res/debug/feature-react-native-image-crop-picker.jar b/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_java_res/debug/feature-react-native-image-crop-picker.jar
new file mode 100644
index 0000000..15cb0ec
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_java_res/debug/feature-react-native-image-crop-picker.jar differ
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
new file mode 100644
index 0000000..a6aeac9
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.reactnative.ivpusic.imagepicker" >
+
+ <uses-sdk
+ android:minSdkVersion="21"
+ android:targetSdkVersion="34" />
+
+ <queries>
+ <intent>
+ <action android:name="android.media.action.IMAGE_CAPTURE" />
+ </intent>
+ </queries>
+
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+
+ <application>
+ <provider
+ android:name="com.reactnative.ivpusic.imagepicker.IvpusicImagePickerFileProvider"
+ android:authorities="${applicationId}.provider"
+ android:exported="false"
+ android:grantUriPermissions="true" >
+ <meta-data
+ android:name="android.support.FILE_PROVIDER_PATHS"
+ android:resource="@xml/ivpusic_imagepicker_provider_paths" />
+ </provider>
+
+ <activity
+ android:name="com.yalantis.ucrop.UCropActivity"
+ android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
+ </application>
+
+</manifest>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/navigation_json/debug/navigation.json b/node_modules/react-native-image-crop-picker/android/build/intermediates/navigation_json/debug/navigation.json
new file mode 100644
index 0000000..0637a08
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/navigation_json/debug/navigation.json
@@ -0,0 +1 @@
+[]
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_manifests/debug/output-metadata.json b/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_manifests/debug/output-metadata.json
new file mode 100644
index 0000000..66e8fb8
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_manifests/debug/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "com.reactnative.ivpusic.imagepicker",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "../../merged_manifest/debug/AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_res/debug/xml/ivpusic_imagepicker_provider_paths.xml b/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_res/debug/xml/ivpusic_imagepicker_provider_paths.xml
new file mode 100644
index 0000000..ffa74ab
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/intermediates/packaged_res/debug/xml/ivpusic_imagepicker_provider_paths.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<paths xmlns:android="http://schemas.android.com/apk/res/android">
+ <external-path name="external_files" path="."/>
+</paths>
\ No newline at end of file
diff --git a/node_modules/react-native-image-crop-picker/android/build/intermediates/variant_model/debug/out b/node_modules/react-native-image-crop-picker/android/build/intermediates/variant_model/debug/out
new file mode 100644
index 0000000..0c4eecb
Binary files /dev/null and b/node_modules/react-native-image-crop-picker/android/build/intermediates/variant_model/debug/out differ
diff --git a/node_modules/react-native-image-crop-picker/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-image-crop-picker/android/build/outputs/logs/manifest-merger-debug-report.txt
new file mode 100644
index 0000000..dfab255
--- /dev/null
+++ b/node_modules/react-native-image-crop-picker/android/build/outputs/logs/manifest-merger-debug-report.txt
@@ -0,0 +1,61 @@
+-- Merging decision tree log ---
+manifest
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:1:1-29:12
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:1:1-29:12
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:1:1-29:12
+ package
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:2:5-50
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ xmlns:android
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:1:11-69
+queries
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:4:5-8:15
+intent#action:name:android.media.action.IMAGE_CAPTURE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:5:9-7:18
+action#android.media.action.IMAGE_CAPTURE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:6:13-73
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:6:21-70
+uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:10:5-81
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:10:22-78
+application
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:12:5-27:19
+provider#com.reactnative.ivpusic.imagepicker.IvpusicImagePickerFileProvider
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:14:9-22:20
+ android:grantUriPermissions
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:18:13-47
+ android:authorities
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:16:13-60
+ android:exported
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:17:13-37
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:15:13-59
+meta-data#android.support.FILE_PROVIDER_PATHS
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:19:13-21:78
+ android:resource
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:21:17-75
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:20:17-67
+activity#com.yalantis.ucrop.UCropActivity
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:24:9-26:72
+ android:theme
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:26:13-69
+ android:name
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml:25:13-60
+uses-sdk
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ android:targetSdkVersion
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ android:minSdkVersion
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml