443 lines
26 KiB
Diff
443 lines
26 KiB
Diff
diff --git a/node_modules/react-native-linear-gradient/android/.classpath b/node_modules/react-native-linear-gradient/android/.classpath
|
|
new file mode 100644
|
|
index 0000000..0a3280e
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/.project b/node_modules/react-native-linear-gradient/android/.project
|
|
new file mode 100644
|
|
index 0000000..a857a17
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/.project
|
|
@@ -0,0 +1,34 @@
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
+<projectDescription>
|
|
+ <name>react-native-linear-gradient</name>
|
|
+ <comment>Project react-native-linear-gradient 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>1744530580998</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-linear-gradient/android/.settings/org.eclipse.buildship.core.prefs b/node_modules/react-native-linear-gradient/android/.settings/org.eclipse.buildship.core.prefs
|
|
new file mode 100644
|
|
index 0000000..1675490
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/.settings/org.eclipse.jdt.core.prefs b/node_modules/react-native-linear-gradient/android/.settings/org.eclipse.jdt.core.prefs
|
|
new file mode 100644
|
|
index 0000000..60e5b01
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/bin/.project b/node_modules/react-native-linear-gradient/android/bin/.project
|
|
new file mode 100644
|
|
index 0000000..1ec6e75
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/bin/.project
|
|
@@ -0,0 +1,23 @@
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
+<projectDescription>
|
|
+ <name>react-native-linear-gradient</name>
|
|
+ <comment>Project react-native-linear-gradient 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-linear-gradient/android/bin/build.gradle b/node_modules/react-native-linear-gradient/android/bin/build.gradle
|
|
new file mode 100644
|
|
index 0000000..e3aacde
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/bin/build.gradle
|
|
@@ -0,0 +1,50 @@
|
|
+def safeExtGet(prop, fallback) {
|
|
+ rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
+}
|
|
+
|
|
+buildscript {
|
|
+ // The Android Gradle plugin is only required when opening the android folder stand-alone.
|
|
+ // This avoids unnecessary downloads and potential conflicts when the library is included as a
|
|
+ // module dependency in an application project.
|
|
+ if (project == rootProject) {
|
|
+ repositories {
|
|
+ google()
|
|
+ mavenCentral()
|
|
+ }
|
|
+ dependencies {
|
|
+ classpath 'com.android.tools.build:gradle:7.2.1'
|
|
+ }
|
|
+ }
|
|
+}
|
|
+
|
|
+apply plugin: 'com.android.library'
|
|
+
|
|
+android {
|
|
+ compileSdkVersion safeExtGet('compileSdkVersion', 31).toInteger()
|
|
+ defaultConfig {
|
|
+ minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
+ targetSdkVersion safeExtGet('targetSdkVersion', 31)
|
|
+ }
|
|
+ lintOptions {
|
|
+ abortOnError false
|
|
+ }
|
|
+}
|
|
+
|
|
+repositories {
|
|
+ mavenLocal()
|
|
+ mavenCentral()
|
|
+ maven {
|
|
+ // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
+ url "$rootDir/../node_modules/react-native/android"
|
|
+ }
|
|
+ maven {
|
|
+ // Android JSC is installed from npm
|
|
+ url "$rootDir/../node_modules/jsc-android/dist"
|
|
+ }
|
|
+ google()
|
|
+}
|
|
+
|
|
+dependencies {
|
|
+ //noinspection GradleDynamicVersion
|
|
+ implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
+}
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.class b/node_modules/react-native-linear-gradient/android/bin/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.class
|
|
new file mode 100644
|
|
index 0000000..866513f
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/bin/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.class differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-linear-gradient/android/bin/build/intermediates/aar_metadata/debug/aar-metadata.properties
|
|
new file mode 100644
|
|
index 0000000..8c9c699
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/bin/gradle.properties b/node_modules/react-native-linear-gradient/android/bin/gradle.properties
|
|
new file mode 100644
|
|
index 0000000..5bac8ac
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/bin/gradle.properties
|
|
@@ -0,0 +1 @@
|
|
+android.useAndroidX=true
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/src/main/AndroidManifest.xml b/node_modules/react-native-linear-gradient/android/bin/src/main/AndroidManifest.xml
|
|
new file mode 100644
|
|
index 0000000..a7d57a6
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/bin/src/main/AndroidManifest.xml
|
|
@@ -0,0 +1 @@
|
|
+<manifest package="com.BV.LinearGradient" />
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientManager.class b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientManager.class
|
|
new file mode 100644
|
|
index 0000000..f53a18f
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientManager.class differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientPackage.class b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientPackage.class
|
|
new file mode 100644
|
|
index 0000000..90c6b7a
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientPackage.class differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientView.class b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientView.class
|
|
new file mode 100644
|
|
index 0000000..8d3c3a1
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/bin/src/main/java/com/BV/LinearGradient/LinearGradientView.class differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build.gradle b/node_modules/react-native-linear-gradient/android/build.gradle
|
|
index e3aacde..2498eba 100644
|
|
--- a/node_modules/react-native-linear-gradient/android/build.gradle
|
|
+++ b/node_modules/react-native-linear-gradient/android/build.gradle
|
|
@@ -20,6 +20,7 @@ buildscript {
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
+ namespace "com.BV.LinearGradient"
|
|
compileSdkVersion safeExtGet('compileSdkVersion', 31).toInteger()
|
|
defaultConfig {
|
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.java b/node_modules/react-native-linear-gradient/android/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.java
|
|
new file mode 100644
|
|
index 0000000..47c2423
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/generated/source/buildConfig/debug/com/BV/LinearGradient/BuildConfig.java
|
|
@@ -0,0 +1,10 @@
|
|
+/**
|
|
+ * Automatically generated file. DO NOT MODIFY
|
|
+ */
|
|
+package com.BV.LinearGradient;
|
|
+
|
|
+public final class BuildConfig {
|
|
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
|
|
+ public static final String LIBRARY_PACKAGE_NAME = "com.BV.LinearGradient";
|
|
+ public static final String BUILD_TYPE = "debug";
|
|
+}
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
|
|
new file mode 100644
|
|
index 0000000..869089d
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml
|
|
@@ -0,0 +1,9 @@
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
+ package="com.BV.LinearGradient" >
|
|
+
|
|
+ <uses-sdk
|
|
+ android:minSdkVersion="21"
|
|
+ android:targetSdkVersion="34" />
|
|
+
|
|
+</manifest>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json b/node_modules/react-native-linear-gradient/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json
|
|
new file mode 100644
|
|
index 0000000..3d6fa11
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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.BV.LinearGradient",
|
|
+ "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-linear-gradient/android/build/intermediates/aar_metadata/debug/aar-metadata.properties b/node_modules/react-native-linear-gradient/android/build/intermediates/aar_metadata/debug/aar-metadata.properties
|
|
new file mode 100644
|
|
index 0000000..8c9c699
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/node_modules/react-native-linear-gradient/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json
|
|
new file mode 100644
|
|
index 0000000..9e26dfe
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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-linear-gradient/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/node_modules/react-native-linear-gradient/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-linear-gradient/android/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
|
|
new file mode 100644
|
|
index 0000000..42fb0f5
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
|
|
@@ -0,0 +1 @@
|
|
+#Sun Apr 13 14:15:11 ICT 2025
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml
|
|
new file mode 100644
|
|
index 0000000..99de637
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/res"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/res"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/build/generated/res/rs/debug"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/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:.*:<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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"/><mergedItems/></merger>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
|
|
new file mode 100644
|
|
index 0000000..ad8f21f
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/debug/jniLibs"/></dataSet></merger>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/mergeDebugShaders/merger.xml
|
|
new file mode 100644
|
|
index 0000000..ee472db
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/debug/shaders"/></dataSet></merger>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/packageDebugAssets/merger.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/incremental/packageDebugAssets/merger.xml
|
|
new file mode 100644
|
|
index 0000000..4553f5e
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/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:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/assets"/><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/build/intermediates/shader_assets/debug/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/debug/assets"/></dataSet></merger>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/local_only_symbol_list/debug/R-def.txt b/node_modules/react-native-linear-gradient/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
|
|
new file mode 100644
|
|
index 0000000..78ac5b8
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/local_only_symbol_list/debug/R-def.txt
|
|
@@ -0,0 +1,2 @@
|
|
+R_DEF: Internal format may change without notice
|
|
+local
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/node_modules/react-native-linear-gradient/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
|
|
new file mode 100644
|
|
index 0000000..795e127
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
|
|
@@ -0,0 +1,11 @@
|
|
+1<?xml version="1.0" encoding="utf-8"?>
|
|
+2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
+3 package="com.BV.LinearGradient" >
|
|
+4
|
|
+5 <uses-sdk
|
|
+6 android:minSdkVersion="21"
|
|
+6-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+7 android:targetSdkVersion="34" />
|
|
+7-->/Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+8
|
|
+9</manifest>
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/merged_java_res/debug/feature-react-native-linear-gradient.jar b/node_modules/react-native-linear-gradient/android/build/intermediates/merged_java_res/debug/feature-react-native-linear-gradient.jar
|
|
new file mode 100644
|
|
index 0000000..15cb0ec
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/build/intermediates/merged_java_res/debug/feature-react-native-linear-gradient.jar differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/node_modules/react-native-linear-gradient/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
|
|
new file mode 100644
|
|
index 0000000..869089d
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml
|
|
@@ -0,0 +1,9 @@
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
+ package="com.BV.LinearGradient" >
|
|
+
|
|
+ <uses-sdk
|
|
+ android:minSdkVersion="21"
|
|
+ android:targetSdkVersion="34" />
|
|
+
|
|
+</manifest>
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/navigation_json/debug/navigation.json b/node_modules/react-native-linear-gradient/android/build/intermediates/navigation_json/debug/navigation.json
|
|
new file mode 100644
|
|
index 0000000..0637a08
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/navigation_json/debug/navigation.json
|
|
@@ -0,0 +1 @@
|
|
+[]
|
|
\ No newline at end of file
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/intermediates/packaged_manifests/debug/output-metadata.json b/node_modules/react-native-linear-gradient/android/build/intermediates/packaged_manifests/debug/output-metadata.json
|
|
new file mode 100644
|
|
index 0000000..8ae2b0e
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/intermediates/packaged_manifests/debug/output-metadata.json
|
|
@@ -0,0 +1,18 @@
|
|
+{
|
|
+ "version": 3,
|
|
+ "artifactType": {
|
|
+ "type": "PACKAGED_MANIFESTS",
|
|
+ "kind": "Directory"
|
|
+ },
|
|
+ "applicationId": "com.BV.LinearGradient",
|
|
+ "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-linear-gradient/android/build/intermediates/variant_model/debug/out b/node_modules/react-native-linear-gradient/android/build/intermediates/variant_model/debug/out
|
|
new file mode 100644
|
|
index 0000000..0c4eecb
|
|
Binary files /dev/null and b/node_modules/react-native-linear-gradient/android/build/intermediates/variant_model/debug/out differ
|
|
diff --git a/node_modules/react-native-linear-gradient/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-linear-gradient/android/build/outputs/logs/manifest-merger-debug-report.txt
|
|
new file mode 100644
|
|
index 0000000..a0bbcec
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-linear-gradient/android/build/outputs/logs/manifest-merger-debug-report.txt
|
|
@@ -0,0 +1,25 @@
|
|
+-- Merging decision tree log ---
|
|
+manifest
|
|
+ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml:1:1-45
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml:1:1-45
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml:1:1-45
|
|
+ package
|
|
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml:1:11-42
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ xmlns:android
|
|
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml:1:1-45
|
|
+uses-sdk
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml reason: use-sdk injection requested
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ android:targetSdkVersion
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ android:minSdkVersion
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ ADDED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|
|
+ INJECTED from /Users/Kumpor/git_bda/csa-react-60/node_modules/react-native-linear-gradient/android/src/main/AndroidManifest.xml
|