diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..833f5e4e --- /dev/null +++ b/Gemfile @@ -0,0 +1,20 @@ +source 'https://rubygems.org' + +# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version +ruby ">=3.0.0" + +# Exclude problematic versions of cocoapods and activesupport that causes build failures. +gem 'cocoapods', '>= 1.16', '!= 1.15.0', '!= 1.15.1' +gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0' +gem 'xcodeproj', '< 1.27.1' +gem 'concurrent-ruby', '< 1.3.6' +gem "fastlane" + +# Ruby 3.4.0 has removed some libraries from the standard library. +gem 'bigdecimal' +gem 'logger' +gem 'benchmark' +gem 'mutex_m' + +plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') +eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/android/app/src/main/java/com/jellify/MainApplication.kt b/android/app/src/main/java/com/jellify/MainApplication.kt index 0e1ae518..958c5027 100644 --- a/android/app/src/main/java/com/jellify/MainApplication.kt +++ b/android/app/src/main/java/com/jellify/MainApplication.kt @@ -12,6 +12,8 @@ import com.facebook.react.defaults.DefaultReactNativeHost import com.facebook.react.soloader.OpenSourceMergedSoMapping import com.facebook.soloader.SoLoader import com.otahotupdate.OtaHotUpdate +import com.facebook.react.ReactNativeApplicationEntryPoint.loadReactNative + class MainApplication : Application(), ReactApplication { @@ -44,10 +46,6 @@ class MainApplication : Application(), ReactApplication { override fun onCreate() { super.onCreate() - SoLoader.init(this, OpenSourceMergedSoMapping) - if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { - // If you opted-in for the New Architecture, we load the native entry point for this app. - load() - } + loadReactNative(this) } } \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle index a62d6daa..2e0d8927 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -5,7 +5,7 @@ buildscript { compileSdkVersion = 35 targetSdkVersion = 34 ndkVersion = "27.1.12297006" - kotlinVersion = "2.0.21" + kotlinVersion = "2.1.20" } repositories { google() diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index e2385582..e6496e07 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -22,7 +22,7 @@ platform :android do end lane :build do - gradle(task: 'assemble', build_type: 'Release') + gradle(task: 'clean generateCodegenArtifactsFromSchema assembleRelease') end desc "Deploy a new version to the Google Play" diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar index 9bbc975c..1b33c55b 100644 Binary files a/android/gradle/wrapper/gradle-wrapper.jar and b/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index ca025c83..002b867c 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/android/gradlew b/android/gradlew index 3569b91d..23d15a93 100755 --- a/android/gradlew +++ b/android/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -84,7 +86,7 @@ done # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s' "$PWD") || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -112,7 +114,7 @@ case "$( uname )" in #( NONSTOP* ) nonstop=true ;; esac -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar +CLASSPATH="\\\"\\\"" # Determine the Java command to use to start the JVM. @@ -203,7 +205,7 @@ fi DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: -# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line. @@ -211,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ -classpath "$CLASSPATH" \ - org.gradle.wrapper.GradleWrapperMain \ + -jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \ "$@" # Stop when "xargs" is not available. diff --git a/android/gradlew.bat b/android/gradlew.bat index 7101f8e4..5eed7ee8 100644 --- a/android/gradlew.bat +++ b/android/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## @@ -68,11 +70,11 @@ goto fail :execute @rem Setup the command line -set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar +set CLASSPATH= @rem Execute Gradle -"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* :end @rem End local scope for the variables with windows NT shell diff --git a/ios/Gemfile.lock b/ios/Gemfile.lock index de82bd2f..75697078 100644 --- a/ios/Gemfile.lock +++ b/ios/Gemfile.lock @@ -24,28 +24,28 @@ GEM json (>= 1.5.1) artifactory (3.0.17) atomos (0.1.3) - aws-eventstream (1.3.2) - aws-partitions (1.1103.0) - aws-sdk-core (3.224.0) + aws-eventstream (1.4.0) + aws-partitions (1.1116.0) + aws-sdk-core (3.225.2) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.992.0) aws-sigv4 (~> 1.9) base64 jmespath (~> 1, >= 1.6.1) logger - aws-sdk-kms (1.101.0) - aws-sdk-core (~> 3, >= 3.216.0) + aws-sdk-kms (1.105.0) + aws-sdk-core (~> 3, >= 3.225.0) aws-sigv4 (~> 1.5) - aws-sdk-s3 (1.186.0) - aws-sdk-core (~> 3, >= 3.216.0) + aws-sdk-s3 (1.189.1) + aws-sdk-core (~> 3, >= 3.225.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.5) - aws-sigv4 (1.11.0) + aws-sigv4 (1.12.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) - base64 (0.2.0) - benchmark (0.4.0) - bigdecimal (3.1.9) + base64 (0.3.0) + benchmark (0.4.1) + bigdecimal (3.2.2) claide (1.1.0) cocoapods (1.16.2) addressable (~> 2.8) @@ -88,8 +88,8 @@ GEM colored2 (3.1.2) commander (4.6.0) highline (~> 2.0.0) - concurrent-ruby (1.3.3) - connection_pool (2.5.0) + concurrent-ruby (1.3.5) + connection_pool (2.5.3) declarative (0.0.20) digest-crc (0.7.0) rake (>= 12.0.0, < 14.0.0) @@ -104,7 +104,7 @@ GEM rest-client (>= 2.1.0.rc1) domain_name (0.6.20240107) dotenv (2.8.1) - drb (2.2.1) + drb (2.2.3) emoji_regex (3.2.3) escape (0.0.4) ethon (0.16.0) @@ -140,7 +140,7 @@ GEM faraday_middleware (1.2.1) faraday (~> 1.0) fastimage (2.4.0) - fastlane (2.227.2) + fastlane (2.228.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -186,8 +186,17 @@ GEM discordrb (~> 3.3.0) fastlane-sirp (1.0.0) sysrandom (~> 1.0) - ffi (1.17.1) - ffi (1.17.1-x86_64-darwin) + ffi (1.17.2) + ffi (1.17.2-aarch64-linux-gnu) + ffi (1.17.2-aarch64-linux-musl) + ffi (1.17.2-arm-linux-gnu) + ffi (1.17.2-arm-linux-musl) + ffi (1.17.2-arm64-darwin) + ffi (1.17.2-x86-linux-gnu) + ffi (1.17.2-x86-linux-musl) + ffi (1.17.2-x86_64-darwin) + ffi (1.17.2-x86_64-linux-gnu) + ffi (1.17.2-x86_64-linux-musl) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) @@ -236,24 +245,24 @@ GEM i18n (1.14.7) concurrent-ruby (~> 1.0) jmespath (1.6.2) - json (2.12.0) + json (2.12.2) jwt (2.10.1) base64 logger (1.7.0) - mime-types (3.6.2) + mime-types (3.7.0) logger - mime-types-data (~> 3.2015) - mime-types-data (3.2025.0415) + mime-types-data (~> 3.2025, >= 3.2025.0507) + mime-types-data (3.2025.0610) mini_magick (4.13.2) mini_mime (1.1.5) - minitest (5.25.4) + minitest (5.25.5) molinillo (0.8.0) multi_json (1.15.0) multipart-post (2.4.1) mutex_m (0.3.0) nanaimo (0.4.0) nap (1.1.0) - naturally (2.2.1) + naturally (2.3.0) netrc (0.11.0) nkf (0.2.0) optparse (0.6.0) @@ -262,7 +271,7 @@ GEM os (1.1.4) plist (3.7.2) public_suffix (4.0.7) - rake (13.2.1) + rake (13.3.0) rbnacl (3.4.0) ffi representable (3.2.0) @@ -325,8 +334,17 @@ GEM xcpretty (~> 0.2, >= 0.0.7) PLATFORMS + aarch64-linux-gnu + aarch64-linux-musl + arm-linux-gnu + arm-linux-musl + arm64-darwin ruby - x86_64-darwin-23 + x86-linux-gnu + x86-linux-musl + x86_64-darwin + x86_64-linux-gnu + x86_64-linux-musl DEPENDENCIES activesupport (>= 6.1.7.5, != 7.1.0) @@ -341,7 +359,7 @@ DEPENDENCIES xcodeproj (< 1.27.1) RUBY VERSION - ruby 3.1.4p223 + ruby 3.4.3p32 BUNDLED WITH - 2.6.2 + 2.6.9 diff --git a/ios/Jellify/Info.plist b/ios/Jellify/Info.plist index 112af1db..82535ea0 100644 --- a/ios/Jellify/Info.plist +++ b/ios/Jellify/Info.plist @@ -30,6 +30,8 @@ NSAllowsArbitraryLoads + NSAllowsArbitraryLoadsForMedia + NSAllowsLocalNetworking NSAllowsLocalNetworkingUsageDescription @@ -45,23 +47,23 @@ - NSAllowsArbitraryLoadsForMedia - NSExceptionDomains nip.io - NSIncludesSubdomains - NSExceptionAllowsInsecureHTTPLoads + NSIncludesSubdomains + NSLocalNetworkUsageDescription - ${PRODUCT_NAME} uses the local network to connect to one's Jellyfin server for streaming music + ${PRODUCT_NAME} uses the local network to connect to one's Jellyfin server for streaming music NSLocationWhenInUseUsageDescription + RCTNewArchEnabled + UIAppFonts AntDesign.ttf diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 6be5a32b..0d511f7b 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1,13 +1,13 @@ PODS: - boost (1.84.0) - DoubleConversion (1.1.6) - - fast_float (6.1.4) - - FBLazyVector (0.79.2) + - fast_float (8.0.0) + - FBLazyVector (0.80.0) - fmt (11.0.2) - glog (0.3.5) - - hermes-engine (0.79.2): - - hermes-engine/Pre-built (= 0.79.2) - - hermes-engine/Pre-built (0.79.2) + - hermes-engine (0.80.0): + - hermes-engine/Pre-built (= 0.80.0) + - hermes-engine/Pre-built (0.80.0) - libwebp (1.5.0): - libwebp/demux (= 1.5.0) - libwebp/mux (= 1.5.0) @@ -23,331 +23,428 @@ PODS: - RCT-Folly (2024.11.18.00): - boost - DoubleConversion - - fast_float (= 6.1.4) + - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - RCT-Folly/Default (= 2024.11.18.00) - RCT-Folly/Default (2024.11.18.00): - boost - DoubleConversion - - fast_float (= 6.1.4) + - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - RCT-Folly/Fabric (2024.11.18.00): - boost - DoubleConversion - - fast_float (= 6.1.4) + - fast_float (= 8.0.0) - fmt (= 11.0.2) - glog - - RCTDeprecation (0.79.2) - - RCTRequired (0.79.2) - - RCTTypeSafety (0.79.2): - - FBLazyVector (= 0.79.2) - - RCTRequired (= 0.79.2) - - React-Core (= 0.79.2) - - React (0.79.2): - - React-Core (= 0.79.2) - - React-Core/DevSupport (= 0.79.2) - - React-Core/RCTWebSocket (= 0.79.2) - - React-RCTActionSheet (= 0.79.2) - - React-RCTAnimation (= 0.79.2) - - React-RCTBlob (= 0.79.2) - - React-RCTImage (= 0.79.2) - - React-RCTLinking (= 0.79.2) - - React-RCTNetwork (= 0.79.2) - - React-RCTSettings (= 0.79.2) - - React-RCTText (= 0.79.2) - - React-RCTVibration (= 0.79.2) - - React-callinvoker (0.79.2) - - React-Core (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default (= 0.79.2) - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/CoreModulesHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/Default (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/DevSupport (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default (= 0.79.2) - - React-Core/RCTWebSocket (= 0.79.2) - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTActionSheetHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTAnimationHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTBlobHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTImageHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTLinkingHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTNetworkHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTSettingsHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTTextHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTVibrationHeaders (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-Core/RCTWebSocket (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTDeprecation - - React-Core/Default (= 0.79.2) - - React-cxxreact - - React-featureflags - - React-hermes - - React-jsi - - React-jsiexecutor - - React-jsinspector - - React-jsitooling - - React-perflogger - - React-runtimescheduler - - React-utils - - SocketRocket (= 0.7.1) - - Yoga - - React-CoreModules (0.79.2): + - RCTDeprecation (0.80.0) + - RCTRequired (0.80.0) + - RCTTypeSafety (0.80.0): + - FBLazyVector (= 0.80.0) + - RCTRequired (= 0.80.0) + - React-Core (= 0.80.0) + - React (0.80.0): + - React-Core (= 0.80.0) + - React-Core/DevSupport (= 0.80.0) + - React-Core/RCTWebSocket (= 0.80.0) + - React-RCTActionSheet (= 0.80.0) + - React-RCTAnimation (= 0.80.0) + - React-RCTBlob (= 0.80.0) + - React-RCTImage (= 0.80.0) + - React-RCTLinking (= 0.80.0) + - React-RCTNetwork (= 0.80.0) + - React-RCTSettings (= 0.80.0) + - React-RCTText (= 0.80.0) + - React-RCTVibration (= 0.80.0) + - React-callinvoker (0.80.0) + - React-Core (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) - - RCT-Folly (= 2024.11.18.00) - - RCTTypeSafety (= 0.79.2) - - React-Core/CoreModulesHeaders (= 0.79.2) - - React-jsi (= 0.79.2) + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default (= 0.80.0) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/CoreModulesHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/Default (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/DevSupport (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default (= 0.80.0) + - React-Core/RCTWebSocket (= 0.80.0) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTActionSheetHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTAnimationHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTBlobHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTImageHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTLinkingHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTNetworkHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTSettingsHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTTextHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTVibrationHeaders (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-Core/RCTWebSocket (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - RCTDeprecation + - React-Core/Default (= 0.80.0) + - React-cxxreact + - React-featureflags + - React-hermes + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-jsinspectorcdp + - React-jsitooling + - React-perflogger + - React-runtimescheduler + - React-utils + - SocketRocket + - Yoga + - React-CoreModules (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - RCTTypeSafety (= 0.80.0) + - React-Core/CoreModulesHeaders (= 0.80.0) + - React-jsi (= 0.80.0) + - React-jsinspector + - React-jsinspectorcdp - React-jsinspectortracing - React-NativeModulesApple - React-RCTBlob - React-RCTFBReactNativeSpec - - React-RCTImage (= 0.79.2) + - React-RCTImage (= 0.80.0) - ReactCommon - - SocketRocket (= 0.7.1) - - React-cxxreact (0.79.2): + - SocketRocket + - React-cxxreact (0.80.0): - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.79.2) - - React-debug (= 0.79.2) - - React-jsi (= 0.79.2) + - RCT-Folly + - RCT-Folly/Fabric + - React-callinvoker (= 0.80.0) + - React-debug (= 0.80.0) + - React-jsi (= 0.80.0) - React-jsinspector + - React-jsinspectorcdp - React-jsinspectortracing - - React-logger (= 0.79.2) - - React-perflogger (= 0.79.2) - - React-runtimeexecutor (= 0.79.2) - - React-timing (= 0.79.2) - - React-debug (0.79.2) - - React-defaultsnativemodule (0.79.2): + - React-logger (= 0.80.0) + - React-perflogger (= 0.80.0) + - React-runtimeexecutor (= 0.80.0) + - React-timing (= 0.80.0) + - SocketRocket + - React-debug (0.80.0) + - React-defaultsnativemodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric - React-domnativemodule - React-featureflagsnativemodule - React-hermes @@ -356,9 +453,16 @@ PODS: - React-jsiexecutor - React-microtasksnativemodule - React-RCTFBReactNativeSpec - - React-domnativemodule (0.79.2): + - SocketRocket + - React-domnativemodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric - React-Fabric - React-FabricComponents - React-graphics @@ -367,35 +471,38 @@ PODS: - React-jsiexecutor - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-Fabric (0.79.2): + - React-Fabric (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.79.2) - - React-Fabric/attributedstring (= 0.79.2) - - React-Fabric/componentregistry (= 0.79.2) - - React-Fabric/componentregistrynative (= 0.79.2) - - React-Fabric/components (= 0.79.2) - - React-Fabric/consistency (= 0.79.2) - - React-Fabric/core (= 0.79.2) - - React-Fabric/dom (= 0.79.2) - - React-Fabric/imagemanager (= 0.79.2) - - React-Fabric/leakchecker (= 0.79.2) - - React-Fabric/mounting (= 0.79.2) - - React-Fabric/observers (= 0.79.2) - - React-Fabric/scheduler (= 0.79.2) - - React-Fabric/telemetry (= 0.79.2) - - React-Fabric/templateprocessor (= 0.79.2) - - React-Fabric/uimanager (= 0.79.2) + - React-Fabric/animations (= 0.80.0) + - React-Fabric/attributedstring (= 0.80.0) + - React-Fabric/componentregistry (= 0.80.0) + - React-Fabric/componentregistrynative (= 0.80.0) + - React-Fabric/components (= 0.80.0) + - React-Fabric/consistency (= 0.80.0) + - React-Fabric/core (= 0.80.0) + - React-Fabric/dom (= 0.80.0) + - React-Fabric/imagemanager (= 0.80.0) + - React-Fabric/leakchecker (= 0.80.0) + - React-Fabric/mounting (= 0.80.0) + - React-Fabric/observers (= 0.80.0) + - React-Fabric/scheduler (= 0.80.0) + - React-Fabric/telemetry (= 0.80.0) + - React-Fabric/templateprocessor (= 0.80.0) + - React-Fabric/uimanager (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -406,13 +513,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.79.2): + - SocketRocket + - React-Fabric/animations (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -428,13 +538,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.79.2): + - SocketRocket + - React-Fabric/attributedstring (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -450,13 +563,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.79.2): + - SocketRocket + - React-Fabric/componentregistry (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -472,13 +588,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.79.2): + - SocketRocket + - React-Fabric/componentregistrynative (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -494,22 +613,25 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.79.2): + - SocketRocket + - React-Fabric/components (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/legacyviewmanagerinterop (= 0.79.2) - - React-Fabric/components/root (= 0.79.2) - - React-Fabric/components/scrollview (= 0.79.2) - - React-Fabric/components/view (= 0.79.2) + - React-Fabric/components/legacyviewmanagerinterop (= 0.80.0) + - React-Fabric/components/root (= 0.80.0) + - React-Fabric/components/scrollview (= 0.80.0) + - React-Fabric/components/view (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -520,13 +642,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.79.2): + - SocketRocket + - React-Fabric/components/legacyviewmanagerinterop (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -542,13 +667,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.79.2): + - SocketRocket + - React-Fabric/components/root (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -564,13 +692,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.79.2): + - SocketRocket + - React-Fabric/components/scrollview (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -586,13 +717,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.79.2): + - SocketRocket + - React-Fabric/components/view (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -609,14 +743,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-Fabric/consistency (0.79.2): + - React-Fabric/consistency (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -632,13 +769,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/core (0.79.2): + - SocketRocket + - React-Fabric/core (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -654,13 +794,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/dom (0.79.2): + - SocketRocket + - React-Fabric/dom (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -676,13 +819,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.79.2): + - SocketRocket + - React-Fabric/imagemanager (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -698,13 +844,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.79.2): + - SocketRocket + - React-Fabric/leakchecker (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -720,13 +869,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.79.2): + - SocketRocket + - React-Fabric/mounting (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -742,19 +894,22 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers (0.79.2): + - SocketRocket + - React-Fabric/observers (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/observers/events (= 0.79.2) + - React-Fabric/observers/events (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -765,13 +920,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/observers/events (0.79.2): + - SocketRocket + - React-Fabric/observers/events (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -787,13 +945,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.79.2): + - SocketRocket + - React-Fabric/scheduler (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -811,13 +972,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.79.2): + - SocketRocket + - React-Fabric/telemetry (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -833,13 +997,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.79.2): + - SocketRocket + - React-Fabric/templateprocessor (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -855,19 +1022,22 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.79.2): + - SocketRocket + - React-Fabric/uimanager (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/uimanager/consistency (= 0.79.2) + - React-Fabric/uimanager/consistency (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -879,13 +1049,16 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager/consistency (0.79.2): + - SocketRocket + - React-Fabric/uimanager/consistency (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -902,21 +1075,24 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricComponents (0.79.2): + - SocketRocket + - React-FabricComponents (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components (= 0.79.2) - - React-FabricComponents/textlayoutmanager (= 0.79.2) + - React-FabricComponents/components (= 0.80.0) + - React-FabricComponents/textlayoutmanager (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -927,29 +1103,32 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components (0.79.2): + - React-FabricComponents/components (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - React-Fabric - - React-FabricComponents/components/inputaccessory (= 0.79.2) - - React-FabricComponents/components/iostextinput (= 0.79.2) - - React-FabricComponents/components/modal (= 0.79.2) - - React-FabricComponents/components/rncore (= 0.79.2) - - React-FabricComponents/components/safeareaview (= 0.79.2) - - React-FabricComponents/components/scrollview (= 0.79.2) - - React-FabricComponents/components/text (= 0.79.2) - - React-FabricComponents/components/textinput (= 0.79.2) - - React-FabricComponents/components/unimplementedview (= 0.79.2) + - React-FabricComponents/components/inputaccessory (= 0.80.0) + - React-FabricComponents/components/iostextinput (= 0.80.0) + - React-FabricComponents/components/modal (= 0.80.0) + - React-FabricComponents/components/rncore (= 0.80.0) + - React-FabricComponents/components/safeareaview (= 0.80.0) + - React-FabricComponents/components/scrollview (= 0.80.0) + - React-FabricComponents/components/text (= 0.80.0) + - React-FabricComponents/components/textinput (= 0.80.0) + - React-FabricComponents/components/unimplementedview (= 0.80.0) - React-featureflags - React-graphics - React-hermes @@ -960,14 +1139,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/inputaccessory (0.79.2): + - React-FabricComponents/components/inputaccessory (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -984,14 +1166,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/iostextinput (0.79.2): + - React-FabricComponents/components/iostextinput (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1008,14 +1193,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/modal (0.79.2): + - React-FabricComponents/components/modal (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1032,14 +1220,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/rncore (0.79.2): + - React-FabricComponents/components/rncore (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1056,14 +1247,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/safeareaview (0.79.2): + - React-FabricComponents/components/safeareaview (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1080,14 +1274,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/scrollview (0.79.2): + - React-FabricComponents/components/scrollview (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1104,14 +1301,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/text (0.79.2): + - React-FabricComponents/components/text (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1128,14 +1328,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/textinput (0.79.2): + - React-FabricComponents/components/textinput (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1152,14 +1355,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/components/unimplementedview (0.79.2): + - React-FabricComponents/components/unimplementedview (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1176,14 +1382,17 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricComponents/textlayoutmanager (0.79.2): + - React-FabricComponents/textlayoutmanager (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1200,76 +1409,112 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - React-FabricImage (0.79.2): + - React-FabricImage (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) - - RCTRequired (= 0.79.2) - - RCTTypeSafety (= 0.79.2) + - RCT-Folly + - RCT-Folly/Fabric + - RCTRequired (= 0.80.0) + - RCTTypeSafety (= 0.80.0) - React-Fabric - React-featureflags - React-graphics - React-hermes - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.79.2) + - React-jsiexecutor (= 0.80.0) - React-logger - React-rendererdebug - React-utils - ReactCommon + - SocketRocket - Yoga - - React-featureflags (0.79.2): - - RCT-Folly (= 2024.11.18.00) - - React-featureflagsnativemodule (0.79.2): + - React-featureflags (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-featureflagsnativemodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric - React-featureflags - React-hermes - React-jsi - React-jsiexecutor - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core - - React-graphics (0.79.2): + - SocketRocket + - React-graphics (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-hermes - React-jsi - React-jsiexecutor - React-utils - - React-hermes (0.79.2): + - SocketRocket + - React-hermes (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-cxxreact (= 0.79.2) - - React-jsi - - React-jsiexecutor (= 0.79.2) - - React-jsinspector - - React-jsinspectortracing - - React-perflogger (= 0.79.2) - - React-runtimeexecutor - - React-idlecallbacksnativemodule (0.79.2): + - fast_float + - fmt - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact (= 0.80.0) + - React-jsi + - React-jsiexecutor (= 0.80.0) + - React-jsinspector + - React-jsinspectorcdp + - React-jsinspectortracing + - React-perflogger (= 0.80.0) + - React-runtimeexecutor + - SocketRocket + - React-idlecallbacksnativemodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric - React-hermes - React-jsi - React-jsiexecutor - React-RCTFBReactNativeSpec - React-runtimescheduler - ReactCommon/turbomodule/core - - React-ImageManager (0.79.2): + - SocketRocket + - React-ImageManager (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog + - RCT-Folly - RCT-Folly/Fabric - React-Core/Default - React-debug @@ -1277,80 +1522,155 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.79.2): + - SocketRocket + - React-jserrorhandler (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-cxxreact - React-debug - React-featureflags - React-jsi - ReactCommon/turbomodule/bridging - - React-jsi (0.79.2): + - SocketRocket + - React-jsi (0.80.0): - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-jsiexecutor (0.79.2): - - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-cxxreact (= 0.79.2) - - React-jsi (= 0.79.2) - - React-jsinspector - - React-jsinspectortracing - - React-perflogger (= 0.79.2) - - React-jsinspector (0.79.2): - - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-jsiexecutor (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact (= 0.80.0) + - React-jsi (= 0.80.0) + - React-jsinspector + - React-jsinspectorcdp + - React-jsinspectortracing + - React-perflogger (= 0.80.0) + - SocketRocket + - React-jsinspector (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric - React-featureflags - React-jsi + - React-jsinspectorcdp + - React-jsinspectornetwork - React-jsinspectortracing - - React-perflogger (= 0.79.2) - - React-runtimeexecutor (= 0.79.2) - - React-jsinspectortracing (0.79.2): - - RCT-Folly - - React-oscompat - - React-jsitooling (0.79.2): + - React-perflogger (= 0.80.0) + - React-runtimeexecutor (= 0.80.0) + - SocketRocket + - React-jsinspectorcdp (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - - RCT-Folly (= 2024.11.18.00) - - React-cxxreact (= 0.79.2) - - React-jsi (= 0.79.2) + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-jsinspectornetwork (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - React-jsinspectorcdp + - SocketRocket + - React-jsinspectortracing (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - React-oscompat + - SocketRocket + - React-jsitooling (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - React-cxxreact (= 0.80.0) + - React-jsi (= 0.80.0) - React-jsinspector + - React-jsinspectorcdp - React-jsinspectortracing - - React-jsitracing (0.79.2): + - SocketRocket + - React-jsitracing (0.80.0): - React-jsi - - React-logger (0.79.2): + - React-logger (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - - React-Mapbuffer (0.79.2): + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-Mapbuffer (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog + - RCT-Folly + - RCT-Folly/Fabric - React-debug - - React-microtasksnativemodule (0.79.2): + - SocketRocket + - React-microtasksnativemodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric - React-hermes - React-jsi - React-jsiexecutor - React-RCTFBReactNativeSpec - ReactCommon/turbomodule/core + - SocketRocket - react-native-background-actions (4.0.1): - React-Core - react-native-blob-util (0.21.2): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1369,12 +1689,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-blur (4.4.1): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1393,6 +1718,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-carplay (2.4.1-beta.0): - React @@ -1401,10 +1727,14 @@ PODS: - react-native-config/App (1.5.5): - React-Core - react-native-mmkv (3.2.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1423,14 +1753,19 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-netinfo (11.4.1): - React-Core - react-native-ota-hot-update (2.3.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1449,13 +1784,18 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - SSZipArchive (~> 2.4.3) - Yoga - react-native-pager-view (6.7.1): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1474,12 +1814,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-safe-area-context (5.4.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1500,12 +1845,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-safe-area-context/common (5.4.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1524,12 +1874,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-safe-area-context/fabric (5.4.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1549,13 +1904,20 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - react-native-track-player (4.1.1): - React-Core - SwiftAudioEx (= 1.1.0) - - React-NativeModulesApple (0.79.2): + - React-NativeModulesApple (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric - React-callinvoker - React-Core - React-cxxreact @@ -1563,33 +1925,61 @@ PODS: - React-hermes - React-jsi - React-jsinspector + - React-jsinspectorcdp - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-oscompat (0.79.2) - - React-perflogger (0.79.2): + - SocketRocket + - React-oscompat (0.80.0) + - React-perflogger (0.80.0): + - boost - DoubleConversion - - RCT-Folly (= 2024.11.18.00) - - React-performancetimeline (0.79.2): - - RCT-Folly (= 2024.11.18.00) - - React-cxxreact + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - SocketRocket + - React-performancetimeline (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - React-featureflags - React-jsinspectortracing - React-perflogger - React-timing - - React-RCTActionSheet (0.79.2): - - React-Core/RCTActionSheetHeaders (= 0.79.2) - - React-RCTAnimation (0.79.2): - - RCT-Folly (= 2024.11.18.00) + - SocketRocket + - React-RCTActionSheet (0.80.0): + - React-Core/RCTActionSheetHeaders (= 0.80.0) + - React-RCTAnimation (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTAnimationHeaders + - React-featureflags - React-jsi - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTAppDelegate (0.79.2): + - SocketRocket + - React-RCTAppDelegate (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1613,24 +2003,35 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon - - React-RCTBlob (0.79.2): + - SocketRocket + - React-RCTBlob (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt + - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi - React-jsinspector + - React-jsinspectorcdp - React-NativeModulesApple - React-RCTFBReactNativeSpec - React-RCTNetwork - ReactCommon - - React-RCTFabric (0.79.2): + - SocketRocket + - React-RCTFabric (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-Core - React-debug - React-Fabric @@ -1642,6 +2043,8 @@ PODS: - React-ImageManager - React-jsi - React-jsinspector + - React-jsinspectorcdp + - React-jsinspectornetwork - React-jsinspectortracing - React-performancetimeline - React-RCTAnimation @@ -1652,10 +2055,17 @@ PODS: - React-rendererdebug - React-runtimescheduler - React-utils + - SocketRocket - Yoga - - React-RCTFBReactNativeSpec (0.79.2): + - React-RCTFBReactNativeSpec (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1664,8 +2074,15 @@ PODS: - React-jsiexecutor - React-NativeModulesApple - ReactCommon - - React-RCTImage (0.79.2): - - RCT-Folly (= 2024.11.18.00) + - SocketRocket + - React-RCTImage (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTImageHeaders - React-jsi @@ -1673,66 +2090,108 @@ PODS: - React-RCTFBReactNativeSpec - React-RCTNetwork - ReactCommon - - React-RCTLinking (0.79.2): - - React-Core/RCTLinkingHeaders (= 0.79.2) - - React-jsi (= 0.79.2) + - SocketRocket + - React-RCTLinking (0.80.0): + - React-Core/RCTLinkingHeaders (= 0.80.0) + - React-jsi (= 0.80.0) - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - ReactCommon/turbomodule/core (= 0.79.2) - - React-RCTNetwork (0.79.2): - - RCT-Folly (= 2024.11.18.00) + - ReactCommon/turbomodule/core (= 0.80.0) + - React-RCTNetwork (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTNetworkHeaders + - React-featureflags - React-jsi + - React-jsinspectorcdp + - React-jsinspectornetwork - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTRuntime (0.79.2): + - SocketRocket + - React-RCTRuntime (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-Core - React-hermes - React-jsi - React-jsinspector + - React-jsinspectorcdp - React-jsinspectortracing - React-jsitooling - React-RuntimeApple - React-RuntimeCore - React-RuntimeHermes - - React-RCTSettings (0.79.2): - - RCT-Folly (= 2024.11.18.00) + - SocketRocket + - React-RCTSettings (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - RCTTypeSafety - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-RCTText (0.79.2): - - React-Core/RCTTextHeaders (= 0.79.2) + - SocketRocket + - React-RCTText (0.80.0): + - React-Core/RCTTextHeaders (= 0.80.0) - Yoga - - React-RCTVibration (0.79.2): - - RCT-Folly (= 2024.11.18.00) + - React-RCTVibration (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - React-RCTFBReactNativeSpec - ReactCommon - - React-rendererconsistency (0.79.2) - - React-renderercss (0.79.2): + - SocketRocket + - React-rendererconsistency (0.80.0) + - React-renderercss (0.80.0): - React-debug - React-utils - - React-rendererdebug (0.79.2): + - React-rendererdebug (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) - - RCT-Folly (= 2024.11.18.00) + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric - React-debug - - React-rncore (0.79.2) - - React-RuntimeApple (0.79.2): + - SocketRocket + - React-rncore (0.80.0) + - React-RuntimeApple (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-callinvoker - React-Core/Default - React-CoreModules @@ -1752,10 +2211,16 @@ PODS: - React-RuntimeHermes - React-runtimescheduler - React-utils - - React-RuntimeCore (0.79.2): + - SocketRocket + - React-RuntimeCore (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-cxxreact - React-Fabric - React-featureflags @@ -1769,24 +2234,38 @@ PODS: - React-runtimeexecutor - React-runtimescheduler - React-utils - - React-runtimeexecutor (0.79.2): - - React-jsi (= 0.79.2) - - React-RuntimeHermes (0.79.2): + - SocketRocket + - React-runtimeexecutor (0.80.0): + - React-jsi (= 0.80.0) + - React-RuntimeHermes (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog - hermes-engine - - RCT-Folly/Fabric (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-featureflags - React-hermes - React-jsi - React-jsinspector + - React-jsinspectorcdp - React-jsinspectortracing - React-jsitooling - React-jsitracing - React-RuntimeCore - React-utils - - React-runtimescheduler (0.79.2): + - SocketRocket + - React-runtimescheduler (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - React-callinvoker - React-cxxreact - React-debug @@ -1800,21 +2279,32 @@ PODS: - React-runtimeexecutor - React-timing - React-utils - - React-timing (0.79.2) - - React-utils (0.79.2): - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-debug - - React-hermes - - React-jsi (= 0.79.2) - - ReactAppDependencyProvider (0.79.2): - - ReactCodegen - - ReactCodegen (0.79.2): + - SocketRocket + - React-timing (0.80.0) + - React-utils (0.80.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - RCT-Folly + - RCT-Folly/Fabric + - React-debug + - React-hermes + - React-jsi (= 0.80.0) + - SocketRocket + - ReactAppDependencyProvider (0.80.0): + - ReactCodegen + - ReactCodegen (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt + - glog + - hermes-engine + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1832,54 +2322,76 @@ PODS: - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - ReactCommon (0.79.2): - - ReactCommon/turbomodule (= 0.79.2) - - ReactCommon/turbomodule (0.79.2): + - SocketRocket + - ReactCommon (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt + - glog + - RCT-Folly + - RCT-Folly/Fabric + - ReactCommon/turbomodule (= 0.80.0) + - SocketRocket + - ReactCommon/turbomodule (0.80.0): + - boost + - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.79.2) - - React-cxxreact (= 0.79.2) - - React-jsi (= 0.79.2) - - React-logger (= 0.79.2) - - React-perflogger (= 0.79.2) - - ReactCommon/turbomodule/bridging (= 0.79.2) - - ReactCommon/turbomodule/core (= 0.79.2) - - ReactCommon/turbomodule/bridging (0.79.2): + - RCT-Folly + - RCT-Folly/Fabric + - React-callinvoker (= 0.80.0) + - React-cxxreact (= 0.80.0) + - React-jsi (= 0.80.0) + - React-logger (= 0.80.0) + - React-perflogger (= 0.80.0) + - ReactCommon/turbomodule/bridging (= 0.80.0) + - ReactCommon/turbomodule/core (= 0.80.0) + - SocketRocket + - ReactCommon/turbomodule/bridging (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.79.2) - - React-cxxreact (= 0.79.2) - - React-jsi (= 0.79.2) - - React-logger (= 0.79.2) - - React-perflogger (= 0.79.2) - - ReactCommon/turbomodule/core (0.79.2): + - RCT-Folly + - RCT-Folly/Fabric + - React-callinvoker (= 0.80.0) + - React-cxxreact (= 0.80.0) + - React-jsi (= 0.80.0) + - React-logger (= 0.80.0) + - React-perflogger (= 0.80.0) + - SocketRocket + - ReactCommon/turbomodule/core (0.80.0): + - boost - DoubleConversion - - fast_float (= 6.1.4) - - fmt (= 11.0.2) + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - React-callinvoker (= 0.79.2) - - React-cxxreact (= 0.79.2) - - React-debug (= 0.79.2) - - React-featureflags (= 0.79.2) - - React-jsi (= 0.79.2) - - React-logger (= 0.79.2) - - React-perflogger (= 0.79.2) - - React-utils (= 0.79.2) + - RCT-Folly + - RCT-Folly/Fabric + - React-callinvoker (= 0.80.0) + - React-cxxreact (= 0.80.0) + - React-debug (= 0.80.0) + - React-featureflags (= 0.80.0) + - React-jsi (= 0.80.0) + - React-logger (= 0.80.0) + - React-perflogger (= 0.80.0) + - React-utils (= 0.80.0) + - SocketRocket - RNCMaskedView (0.3.2): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1898,6 +2410,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - RNDeviceInfo (14.0.4): - React-Core @@ -1908,10 +2421,14 @@ PODS: - SDWebImage (~> 5.11.1) - SDWebImageWebPCoder (~> 0.8.4) - RNFlashList (1.8.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1930,14 +2447,19 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - RNFS (2.20.0): - React-Core - - RNGestureHandler (2.25.0): + - RNGestureHandler (2.26.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1956,12 +2478,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - RNReactNativeHapticFeedback (2.3.3): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -1980,12 +2507,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - RNReanimated (3.17.5): + - RNReanimated (3.18.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2004,14 +2536,19 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated (= 3.17.5) - - RNReanimated/worklets (= 3.17.5) + - RNReanimated/reanimated (= 3.18.0) + - RNReanimated/worklets (= 3.18.0) + - SocketRocket - Yoga - - RNReanimated/reanimated (3.17.5): + - RNReanimated/reanimated (3.18.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2030,13 +2567,18 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/reanimated/apple (= 3.17.5) + - RNReanimated/reanimated/apple (= 3.18.0) + - SocketRocket - Yoga - - RNReanimated/reanimated/apple (3.17.5): + - RNReanimated/reanimated/apple (3.18.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2055,12 +2597,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - - RNReanimated/worklets (3.17.5): + - RNReanimated/worklets (3.18.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2079,13 +2626,18 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNReanimated/worklets/apple (= 3.17.5) + - RNReanimated/worklets/apple (= 3.18.0) + - SocketRocket - Yoga - - RNReanimated/worklets/apple (3.17.5): + - RNReanimated/worklets/apple (3.18.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2104,12 +2656,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - RNScreens (4.11.0-nightly-20250509-5b482bc5c): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2130,12 +2687,17 @@ PODS: - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - RNScreens/common (= 4.11.0-nightly-20250509-5b482bc5c) + - SocketRocket - Yoga - RNScreens/common (4.11.0-nightly-20250509-5b482bc5c): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2155,37 +2717,17 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - Yoga - - RNSentry (6.13.1): - - DoubleConversion - - glog - - hermes-engine - - RCT-Folly (= 2024.11.18.00) - - RCTRequired - - RCTTypeSafety - - React-Core - - React-debug - - React-Fabric - - React-featureflags - - React-graphics - - React-hermes - - React-ImageManager - - React-jsi - - React-NativeModulesApple - - React-RCTFabric - - React-renderercss - - React-rendererdebug - - React-utils - - ReactCodegen - - ReactCommon/turbomodule/bridging - - ReactCommon/turbomodule/core - - Sentry/HybridSDK (= 8.49.2) + - SocketRocket - Yoga - RNVectorIcons (10.2.0): + - boost - DoubleConversion + - fast_float + - fmt - glog - hermes-engine - - RCT-Folly (= 2024.11.18.00) + - RCT-Folly + - RCT-Folly/Fabric - RCTRequired - RCTTypeSafety - React-Core @@ -2204,6 +2746,7 @@ PODS: - ReactCodegen - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core + - SocketRocket - Yoga - SDWebImage (5.11.1): - SDWebImage/Core (= 5.11.1) @@ -2211,7 +2754,6 @@ PODS: - SDWebImageWebPCoder (0.8.5): - libwebp (~> 1.0) - SDWebImage/Core (~> 5.10) - - Sentry/HybridSDK (8.49.2) - SocketRocket (0.7.1) - SSZipArchive (2.4.3) - SwiftAudioEx (1.1.0) @@ -2226,7 +2768,6 @@ DEPENDENCIES: - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) - RCTRequired (from `../node_modules/react-native/Libraries/Required`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) @@ -2252,6 +2793,8 @@ DEPENDENCIES: - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsinspectorcdp (from `../node_modules/react-native/ReactCommon/jsinspector-modern/cdp`) + - React-jsinspectornetwork (from `../node_modules/react-native/ReactCommon/jsinspector-modern/network`) - React-jsinspectortracing (from `../node_modules/react-native/ReactCommon/jsinspector-modern/tracing`) - React-jsitooling (from `../node_modules/react-native/ReactCommon/jsitooling`) - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) @@ -2310,8 +2853,8 @@ DEPENDENCIES: - RNReactNativeHapticFeedback (from `../node_modules/react-native-haptic-feedback`) - RNReanimated (from `../node_modules/react-native-reanimated`) - RNScreens (from `../node_modules/react-native-screens`) - - "RNSentry (from `../node_modules/@sentry/react-native`)" - RNVectorIcons (from `../node_modules/react-native-vector-icons`) + - SocketRocket (~> 0.7.1) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) SPEC REPOS: @@ -2319,7 +2862,6 @@ SPEC REPOS: - libwebp - SDWebImage - SDWebImageWebPCoder - - Sentry - SocketRocket - SSZipArchive - SwiftAudioEx @@ -2339,7 +2881,7 @@ EXTERNAL SOURCES: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2025-03-03-RNv0.79.0-bc17d964d03743424823d7dd1a9f37633459c5c5 + :tag: hermes-2025-05-06-RNv0.80.0-4eb6132a5bf0450bf4c6c91987675381d7ac8bca RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" RCTDeprecation: @@ -2390,6 +2932,10 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsinspectorcdp: + :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/cdp" + React-jsinspectornetwork: + :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/network" React-jsinspectortracing: :path: "../node_modules/react-native/ReactCommon/jsinspector-modern/tracing" React-jsitooling: @@ -2506,8 +3052,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-reanimated" RNScreens: :path: "../node_modules/react-native-screens" - RNSentry: - :path: "../node_modules/@sentry/react-native" RNVectorIcons: :path: "../node_modules/react-native-vector-icons" Yoga: @@ -2516,104 +3060,104 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb - fast_float: 06eeec4fe712a76acc9376682e4808b05ce978b6 - FBLazyVector: 84b955f7b4da8b895faf5946f73748267347c975 + fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 + FBLazyVector: 778b815a6fb3fa1599f581ffb9a5e85fad313c1d fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 - hermes-engine: 314be5250afa5692b57b4dd1705959e1973a8ebe + hermes-engine: 7068e976238b29e97b3bafd09a994542af7d5c0b libwebp: 02b23773aedb6ff1fd38cec7a77b81414c6842a8 - RCT-Folly: e78785aa9ba2ed998ea4151e314036f6c49e6d82 - RCTDeprecation: 83ffb90c23ee5cea353bd32008a7bca100908f8c - RCTRequired: eb7c0aba998009f47a540bec9e9d69a54f68136e - RCTTypeSafety: 659ae318c09de0477fd27bbc9e140071c7ea5c93 - React: c2d3aa44c49bb34e4dfd49d3ee92da5ebacc1c1c - React-callinvoker: 1bdfb7549b5af266d85757193b5069f60659ef9d - React-Core: 10597593fdbae06f0089881e025a172e51d4a769 - React-CoreModules: 6907b255529dd46895cf687daa67b24484a612c2 - React-cxxreact: a9f5b8180d6955bc3f6a3fcd657c4d9b4d95c1f6 - React-debug: e74e76912b91e08d580c481c34881899ccf63da9 - React-defaultsnativemodule: 11f6ee2cf69bf3af9d0f28a6253def33d21b5266 - React-domnativemodule: f940bbc4fa9e134190acbf3a4a9f95621b5a8f51 - React-Fabric: 6f5c357bf3a42ff11f8844ad3fc7a1eb04f4b9de - React-FabricComponents: 10e0c0209822ac9e69412913a8af1ca33573379b - React-FabricImage: f582e764072dfa4715ae8c42979a5bace9cbcc12 - React-featureflags: d5facceff8f8f6de430e0acecf4979a9a0839ba9 - React-featureflagsnativemodule: a7dd141f1ef4b7c1331af0035689fbc742a49ff4 - React-graphics: 36ae3407172c1c77cea29265d2b12b90aaef6aa0 - React-hermes: 9116d4e6d07abeb519a2852672de087f44da8f12 - React-idlecallbacksnativemodule: ae7f5ffc6cf2d2058b007b78248e5b08172ad5c3 - React-ImageManager: 9daee0dc99ad6a001d4b9e691fbf37107e2b7b54 - React-jserrorhandler: 1e6211581071edaf4ecd5303147328120c73f4dc - React-jsi: 753ba30c902f3a41fa7f956aca8eea3317a44ee6 - React-jsiexecutor: 47520714aa7d9589c51c0f3713dfbfca4895d4f9 - React-jsinspector: cfd27107f6d6f1076a57d88c932401251560fe5f - React-jsinspectortracing: 76a7d791f3c0c09a0d2bf6f46dfb0e79a4fcc0ac - React-jsitooling: 995e826570dd58f802251490486ebd3244a037ab - React-jsitracing: 094ae3d8c123cea67b50211c945b7c0443d3e97b - React-logger: 8edfcedc100544791cd82692ca5a574240a16219 - React-Mapbuffer: c3f4b608e4a59dd2f6a416ef4d47a14400194468 - React-microtasksnativemodule: 054f34e9b82f02bd40f09cebd4083828b5b2beb6 + RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 + RCTDeprecation: ff787f6c860a1b97dd1bc27264b61d23ad1994da + RCTRequired: 664eb8399ed8a83e26ab65af7c2ad390f7e61696 + RCTTypeSafety: a5cf7a7e80baf972e331dc028e5d5c19bb2535a4 + React: 606d4dccbcf29aec4dc84a7921405a28e1701a22 + React-callinvoker: 0e13bd3c039df9ceef04f7381a81f017655c8361 + React-Core: d118e66b5b561f5ab999dd7f9cf14f54dab376a7 + React-CoreModules: 6ec48c52c9ff2ca3fa110153de09e4c2379f1860 + React-cxxreact: cb406100002503e44de4b725e581ce24f47003b9 + React-debug: a9e91845f3670c3a19249f52919f0488b7842cf7 + React-defaultsnativemodule: ee76dbbfc31db775bc318f707f01869cd8a32f42 + React-domnativemodule: a3f44d7ea5c7f8ef5c6f88574471d6f0b73d2f17 + React-Fabric: bb3b550229a1cf7a93f9d8569a3a672cae115d94 + React-FabricComponents: a3b5184c705b5b45c8e6736f8bc579bae5cbecbe + React-FabricImage: 8d3a479a8c6097d20b7bd170df7d28b9da72381e + React-featureflags: 2d450523e473b3923790f9502feb8d13691b9e0e + React-featureflagsnativemodule: 90429c06d7aa290896a76639eaaa78c1d0bf4bca + React-graphics: 9e11a80b48b66d08d47c16cb5d922f1171840e70 + React-hermes: ae85ffa5ce034f07f63c95a7cbd15a391da8a6d3 + React-idlecallbacksnativemodule: bbacde3a9c82e14b9f3bfc9494bb960ce6801bf3 + React-ImageManager: d9f55275912e0ee5e34a66d30ad7c6327ce7daa4 + React-jserrorhandler: eeac7d0ce29ef27a5828d376ae84e516c2f3bab0 + React-jsi: 8eba045092d3ebe6b30f11e397185080e22e1c3d + React-jsiexecutor: 84978b702963ecee46f8e4d510931d4fdb7e8429 + React-jsinspector: 5efae7cf4601cb0c7441e4caaa5a6cc16781bf54 + React-jsinspectorcdp: df0f2b157b62a9f5d91c87600331c55414c35881 + React-jsinspectornetwork: af69093cf9d60dbcd00cda064ac271e2123f623e + React-jsinspectortracing: 2519b0016db1f338e56620a3fec253f455318359 + React-jsitooling: ffb70ee2d0c8836b1e8feddd0945847ae89271ad + React-jsitracing: 4a6b9ca5ed4195c51c9205712f06aba38fbb758e + React-logger: dce52a571ba0e0149c3f0fcc6866cbc0c8552c5e + React-Mapbuffer: f5754c33877eaf36e4c76c613b35615a181c85c5 + React-microtasksnativemodule: 23df6374a3ac422d8c2927839bcaeed61fee3dad react-native-background-actions: 48e6bad9e2a47e3b04858634c5a05ea11062f680 - react-native-blob-util: f6fbaf3935531be0b3c4bcaf46f7bff2802fd93b - react-native-blur: 06d0f9906ecd6cde3a42de16c6cd829a2bf0710c + react-native-blob-util: 147867cf170ec721b07bedd54234628be96af188 + react-native-blur: 477fac85a42b5506232ef1d2b82aad359feadd26 react-native-carplay: 8f388f6f73e5e0f73ed154ad8794371343ee20c0 react-native-config: 644074ab88db883fcfaa584f03520ec29589d7df - react-native-mmkv: d3cc73d2554fafa20dc5b86386359034d1faf8ff + react-native-mmkv: d43fb42ed952f5e3be3ca25f07b0c1474eae7420 react-native-netinfo: cec9c4e86083cb5b6aba0e0711f563e2fbbff187 - react-native-ota-hot-update: e3c981113fc84b550db8a23d2a2d440bd91d9f4b - react-native-pager-view: f238ed7fb53458bd03366944a33686f067c83e9a - react-native-safe-area-context: 562163222d999b79a51577eda2ea8ad2c32b4d06 + react-native-ota-hot-update: fe5bbc1e656018b0cf526adfcc92788e7f098110 + react-native-pager-view: 682422a9cd034c335cae12106c5ca8f892cffe9d + react-native-safe-area-context: bd8e149c82b5a20cfd55e9775d82f1b5954b7e6d react-native-track-player: 6dc2e2633265704b8ab6d8124b80239d4ed1f911 - React-NativeModulesApple: 2c4377e139522c3d73f5df582e4f051a838ff25e - React-oscompat: ef5df1c734f19b8003e149317d041b8ce1f7d29c - React-perflogger: 9a151e0b4c933c9205fd648c246506a83f31395d - React-performancetimeline: 5b0dfc0acba29ea0269ddb34cd6dd59d3b8a1c66 - React-RCTActionSheet: a499b0d6d9793886b67ba3e16046a3fef2cdbbc3 - React-RCTAnimation: cc64adc259aabc3354b73065e2231d796dfce576 - React-RCTAppDelegate: 9d523da768f1c9e84c5f3b7e3624d097dfb0e16b - React-RCTBlob: e727f53eeefded7e6432eb76bd22b57bc880e5d1 - React-RCTFabric: 58590aa4fdb4ad546c06a7449b486cf6844e991f - React-RCTFBReactNativeSpec: 9064c63d99e467a3893e328ba3612745c3c3a338 - React-RCTImage: 7159cbdbb18a09d97ba1a611416eced75b3ccb29 - React-RCTLinking: 46293afdb859bccc63e1d3dedc6901a3c04ef360 - React-RCTNetwork: 4a6cd18f5bcd0363657789c64043123a896b1170 - React-RCTRuntime: 5ab904fd749aa52f267ef771d265612582a17880 - React-RCTSettings: 61e361dc85136d1cb0e148b7541993d2ee950ea7 - React-RCTText: abd1e196c3167175e6baef18199c6d9d8ac54b4e - React-RCTVibration: 490e0dcb01a3fe4a0dfb7bc51ad5856d8b84f343 - React-rendererconsistency: 351fdbc5c1fe4da24243d939094a80f0e149c7a1 - React-renderercss: 3438814bee838ae7840a633ab085ac81699fd5cf - React-rendererdebug: 0ac2b9419ad6f88444f066d4b476180af311fb1e - React-rncore: 57ed480649bb678d8bdc386d20fee8bf2b0c307c - React-RuntimeApple: 8b7a9788f31548298ba1990620fe06b40de65ad7 - React-RuntimeCore: e03d96fbd57ce69fd9bca8c925942194a5126dbc - React-runtimeexecutor: d60846710facedd1edb70c08b738119b3ee2c6c2 - React-RuntimeHermes: aab794755d9f6efd249b61f3af4417296904e3ba - React-runtimescheduler: c3cd124fa5db7c37f601ee49ca0d97019acd8788 - React-timing: a90f4654cbda9c628614f9bee68967f1768bd6a5 - React-utils: a612d50555b6f0f90c74b7d79954019ad47f5de6 - ReactAppDependencyProvider: 04d5eb15eb46be6720e17a4a7fa92940a776e584 - ReactCodegen: c63eda03ba1d94353fb97b031fc84f75a0d125ba - ReactCommon: 76d2dc87136d0a667678668b86f0fca0c16fdeb0 - RNCMaskedView: ae521efb1c6c2b183ae0f8479487db03c826184c + React-NativeModulesApple: e16d5c133019987285f001fbf1461a861e40426f + React-oscompat: 7c0a341cc31e350da71ddf2e46de0a845d1d1626 + React-perflogger: c91e01612298b74f70d846ae3666d2b078c547e0 + React-performancetimeline: 6b9a6951922d764073bc69617be43a9552de96ba + React-RCTActionSheet: 99864bd8422649219f24eca9a51445e698b70b8e + React-RCTAnimation: ae0790201f87e9782f4a8b4346ac414f4c3273f3 + React-RCTAppDelegate: e94955f941036818be7583fe820d13bf47c5e9af + React-RCTBlob: 472203c0f6fa4f25996ed94a2cdf5eaa92200fe3 + React-RCTFabric: 6f6b6979e6395f4fc33e6e25612f6272a71b7af5 + React-RCTFBReactNativeSpec: 9a0d5b08fcc6e0c73f2afc8fce60e8537db82b58 + React-RCTImage: 14ce85b3f9e898ad8ab2fd49be97f09e43251fb9 + React-RCTLinking: b189fd2fd5fce9c3189d64204f1a92c36ffc27bd + React-RCTNetwork: 66f7536d038d5ecec63acdc5e7c9b7f843fed4ac + React-RCTRuntime: 62482bc3df825749a51ff2c7aa2dd0b8d74ee930 + React-RCTSettings: 98360df5a9e6f6d10bd9738c6d4637005e4f842e + React-RCTText: 667ac6f696da8cd6671b5b562adf43419a787705 + React-RCTVibration: 13de9226d181fb939b187f3f682767c6e8cc80f8 + React-rendererconsistency: a4db9bb060c65bce8ae83d936ed0719696055bd2 + React-renderercss: f7788003b3c65702cbc123f8ba7678dd3cb67753 + React-rendererdebug: 67c92da913f21ebe041ce959f024ab89cf2a7bde + React-rncore: 322add36430c38049067a5d365f166256975391f + React-RuntimeApple: f3eedaeab424b467cfc61a308422235399ded08c + React-RuntimeCore: fd5ff77cca527e2ecd42e0d6a3eeafafde74d9c9 + React-runtimeexecutor: 49ea276161508d50b3486c385e1ca7972d1699f5 + React-RuntimeHermes: 85e8e095e106dbc6bcf5dcae051f56ba18b1d629 + React-runtimescheduler: c8581138c14a1e2036e8403628b963c0d1c88b26 + React-timing: a275a1c2e6112dba17f8f7dd496d439213bbea0d + React-utils: 449a6e1fd53886510e284e80bdbb1b1c6db29452 + ReactAppDependencyProvider: 3267432b637c9b38e86961b287f784ee1b08dde0 + ReactCodegen: 5d41e1df061200130dd326e55cdfdf94b0289c6e + ReactCommon: b028d09a66e60ebd83ca59d8cc9a1216360db147 + RNCMaskedView: 7e0ce15656772a939ff0d269100bca3a182163c8 RNDeviceInfo: d863506092aef7e7af3a1c350c913d867d795047 RNDnsLookup: db4a89381b80ec1a5153088518d2c4f8e51f2521 RNFastImage: 462a183c4b0b6b26fdfd639e1ed6ba37536c3b87 - RNFlashList: 5001dd06f0003a497de3e2035653c54cf8b48e96 + RNFlashList: ffe75fa35306b3cc846803ab51b02674e522e9b5 RNFS: 89de7d7f4c0f6bafa05343c578f61118c8282ed8 - RNGestureHandler: ebef699ea17e7c0006c1074e1e423ead60ce0121 - RNReactNativeHapticFeedback: 851adf794e1fcdc0664d80820fa3272ee8a6a538 - RNReanimated: 2313402fe27fecb7237619e9c6fcee3177f08a65 - RNScreens: 2b4dfbdeed88e164177ab3bbb31810be7c355a5c - RNSentry: 0b4de420d54e6154b3a651204324ca8f07a3d709 - RNVectorIcons: 941a39b5d3b9d8cf8ac2e2fc09b07bfafbcf9796 + RNGestureHandler: eeb622199ef1fb3a076243131095df1c797072f0 + RNReactNativeHapticFeedback: 8eb91a6f48567d02ec8026e515102e18c41030cf + RNReanimated: bc1ddb7a5352648bcf0d592256069833bf935a46 + RNScreens: 79823463457c124ca73289e1a2594712f8e0e7cc + RNVectorIcons: ef9b4b0b786053ebdd63ee2972f48de9633ba166 SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d - Sentry: 47021097466aa130802420d485a34da445963d99 SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SSZipArchive: fe6a26b2a54d5a0890f2567b5cc6de5caa600aef SwiftAudioEx: f6aa653770f3a0d3851edaf8d834a30aee4a7646 - Yoga: c758bfb934100bb4bf9cbaccb52557cee35e8bdf + Yoga: 0c4b7d2aacc910a1f702694fa86be830386f4ceb PODFILE CHECKSUM: 6c43107ef8f93930ea4053b68b45c8912648b48c diff --git a/jest/setup-refresh-control.ts b/jest/setup-refresh-control.ts new file mode 100644 index 00000000..44fabcfd --- /dev/null +++ b/jest/setup-refresh-control.ts @@ -0,0 +1,3 @@ +import { View } from 'react-native' + +module.exports = View diff --git a/jest/setup-sentry.ts b/jest/setup-sentry.ts index 5a7d8b0a..e81f54fe 100644 --- a/jest/setup-sentry.ts +++ b/jest/setup-sentry.ts @@ -1,3 +1,3 @@ -jest.mock('@sentry/react-native', () => ({ - init: jest.fn(), -})) +// jest.mock('@sentry/react-native', () => ({ +// init: jest.fn(), +// })) diff --git a/jest/setup.ts b/jest/setup.ts index 30722395..aac3d988 100644 --- a/jest/setup.ts +++ b/jest/setup.ts @@ -32,3 +32,8 @@ jest.mock('react-native-haptic-feedback', () => { }, } }) + +jest.mock('react-native/Libraries/Components/RefreshControl/RefreshControl', () => ({ + __esModule: true, + default: require('./setup-refresh-control'), +})) diff --git a/package.json b/package.json index e2786045..3d2dff84 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,6 @@ "@react-navigation/native": "^7.1.9", "@react-navigation/native-stack": "^7.3.13", "@react-navigation/stack": "^7.3.2", - "@sentry/react-native": "^6.13.1", "@shopify/flash-list": "^1.8.0", "@tamagui/config": "^1.126.12", "@tanstack/query-sync-storage-persister": "^5.76.0", @@ -58,9 +57,9 @@ "invert-color": "^2.0.0", "lodash": "^4.17.21", "openai": "^5.0.2", - "react": "19.0.0", + "react": "19.1.0", "react-freeze": "^1.0.4", - "react-native": "0.79.2", + "react-native": "0.80.0", "react-native-background-actions": "^4.0.1", "react-native-blob-util": "^0.21.2", "react-native-carplay": "^2.4.1-beta.0", @@ -70,12 +69,12 @@ "react-native-draggable-flatlist": "^4.0.3", "react-native-fast-image": "^8.6.3", "react-native-fs": "^2.20.0", - "react-native-gesture-handler": "^2.25.0", + "react-native-gesture-handler": "^2.26.0", "react-native-haptic-feedback": "^2.3.3", "react-native-mmkv": "3.2.0", "react-native-ota-hot-update": "^2.3.0", "react-native-pager-view": "^6.7.1", - "react-native-reanimated": "^3.17.5", + "react-native-reanimated": "^3.18.0", "react-native-safe-area-context": "^5.4.0", "react-native-screens": "^4.11.0-beta.2", "react-native-swipeable-item": "^2.0.9", @@ -94,17 +93,17 @@ "@babel/runtime": "^7.27.1", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.26.0", - "@react-native-community/cli-platform-android": "18.0.0", - "@react-native-community/cli-platform-ios": "18.0.0", - "@react-native/babel-preset": "0.79.2", - "@react-native/eslint-config": "0.79.2", - "@react-native/metro-config": "0.79.2", + "@react-native-community/cli-platform-android": "19.0.0", + "@react-native-community/cli-platform-ios": "19.0.0", + "@react-native/babel-preset": "0.80.0", + "@react-native/eslint-config": "0.80.0", + "@react-native/metro-config": "0.80.0", "@react-native/typescript-config": "0.79.2", "@types/jest": "^29.5.14", "@types/lodash": "^4.17.16", "@types/react": "^19.1.3", "@types/react-native-vector-icons": "^6.4.18", - "@types/react-test-renderer": "19.0.0", + "@types/react-test-renderer": "19.1.0", "babel-plugin-module-resolver": "^5.0.2", "eslint": "^9.26.0", "eslint-config-prettier": "^10.1.5", @@ -121,7 +120,7 @@ "prettier": "^3.5.3", "react-dom": "^19.0.0", "react-native-cli-bump-version": "^1.5.1", - "react-test-renderer": "19.0.0", + "react-test-renderer": "19.1.0", "typescript": "5.8.3" }, "lint-staged": { diff --git a/patches/@shopify+flash-list+1.8.0.patch b/patches/@shopify+flash-list+1.8.0.patch new file mode 100644 index 00000000..9a68951a --- /dev/null +++ b/patches/@shopify+flash-list+1.8.0.patch @@ -0,0 +1,1491 @@ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/results.bin b/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/transformed/classes/classes_dex/classes.dex b/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..06de468 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/a44dcc8aae13c1c2a47d6b84f43ce1db/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/results.bin b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.dex +new file mode 100644 +index 0000000..b67faee +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.dex +new file mode 100644 +index 0000000..9a6bfbb +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerDelegate.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerDelegate.dex +new file mode 100644 +index 0000000..04f22cd +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerDelegate.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerInterface.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerInterface.dex +new file mode 100644 +index 0000000..7aac50f +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/facebook/react/viewmanagers/CellContainerManagerInterface.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutShadow.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutShadow.dex +new file mode 100644 +index 0000000..02d82a8 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutShadow.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.dex +new file mode 100644 +index 0000000..af3578c +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView.dex +new file mode 100644 +index 0000000..0941fa6 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutView.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.dex +new file mode 100644 +index 0000000..439ac96 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager.dex +new file mode 100644 +index 0000000..f484e6f +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/AutoLayoutViewManager.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.dex +new file mode 100644 +index 0000000..17e66d1 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent.dex +new file mode 100644 +index 0000000..c6bd1a1 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BlankAreaEvent.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BuildConfig.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BuildConfig.dex +new file mode 100644 +index 0000000..f444853 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/BuildConfig.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainer.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainer.dex +new file mode 100644 +index 0000000..4899329 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainer.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerImpl.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerImpl.dex +new file mode 100644 +index 0000000..fa2e5e3 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerImpl.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager$Companion.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager$Companion.dex +new file mode 100644 +index 0000000..05056c0 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager$Companion.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager.dex +new file mode 100644 +index 0000000..672d4b5 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/CellContainerManager.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.dex b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.dex +new file mode 100644 +index 0000000..a1e5b98 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.dex differ +diff --git a/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..601f245 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/.transforms/d6ed5aee8f60e73ea961d37043c6114b/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/buildConfig/debug/com/shopify/reactnative/flash_list/BuildConfig.java b/node_modules/@shopify/flash-list/android/build/generated/source/buildConfig/debug/com/shopify/reactnative/flash_list/BuildConfig.java +new file mode 100644 +index 0000000..62aca99 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/buildConfig/debug/com/shopify/reactnative/flash_list/BuildConfig.java +@@ -0,0 +1,12 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.shopify.reactnative.flash_list; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.shopify.reactnative.flash_list"; ++ public static final String BUILD_TYPE = "debug"; ++ // Field from default config. ++ public static final boolean IS_NEW_ARCHITECTURE_ENABLED = true; ++} +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java +new file mode 100644 +index 0000000..29f81e0 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.java +@@ -0,0 +1,47 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class AutoLayoutViewManagerDelegate & AutoLayoutViewManagerInterface> extends BaseViewManagerDelegate { ++ public AutoLayoutViewManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "horizontal": ++ mViewManager.setHorizontal(view, value == null ? false : (boolean) value); ++ break; ++ case "scrollOffset": ++ mViewManager.setScrollOffset(view, value == null ? 0f : ((Double) value).doubleValue()); ++ break; ++ case "windowSize": ++ mViewManager.setWindowSize(view, value == null ? 0f : ((Double) value).doubleValue()); ++ break; ++ case "renderAheadOffset": ++ mViewManager.setRenderAheadOffset(view, value == null ? 0f : ((Double) value).doubleValue()); ++ break; ++ case "enableInstrumentation": ++ mViewManager.setEnableInstrumentation(view, value == null ? false : (boolean) value); ++ break; ++ case "disableAutoLayout": ++ mViewManager.setDisableAutoLayout(view, value == null ? false : (boolean) value); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.java b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.java +new file mode 100644 +index 0000000..88b631c +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.java +@@ -0,0 +1,22 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface AutoLayoutViewManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setHorizontal(T view, boolean value); ++ void setScrollOffset(T view, double value); ++ void setWindowSize(T view, double value); ++ void setRenderAheadOffset(T view, double value); ++ void setEnableInstrumentation(T view, boolean value); ++ void setDisableAutoLayout(T view, boolean value); ++} +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java +new file mode 100644 +index 0000000..4ba6e5f +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerDelegate.java +@@ -0,0 +1,32 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaDelegate.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import androidx.annotation.Nullable; ++import com.facebook.react.uimanager.BaseViewManager; ++import com.facebook.react.uimanager.BaseViewManagerDelegate; ++import com.facebook.react.uimanager.LayoutShadowNode; ++ ++public class CellContainerManagerDelegate & CellContainerManagerInterface> extends BaseViewManagerDelegate { ++ public CellContainerManagerDelegate(U viewManager) { ++ super(viewManager); ++ } ++ @Override ++ public void setProperty(T view, String propName, @Nullable Object value) { ++ switch (propName) { ++ case "index": ++ mViewManager.setIndex(view, value == null ? 0 : ((Double) value).intValue()); ++ break; ++ default: ++ super.setProperty(view, propName, value); ++ } ++ } ++} +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerInterface.java b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerInterface.java +new file mode 100644 +index 0000000..c084ac0 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/java/com/facebook/react/viewmanagers/CellContainerManagerInterface.java +@@ -0,0 +1,17 @@ ++/** ++* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++* ++* Do not edit this file as changes may cause incorrect behavior and will be lost ++* once the code is regenerated. ++* ++* @generated by codegen project: GeneratePropsJavaInterface.js ++*/ ++ ++package com.facebook.react.viewmanagers; ++ ++import android.view.View; ++import com.facebook.react.uimanager.ViewManagerWithGeneratedInterface; ++ ++public interface CellContainerManagerInterface extends ViewManagerWithGeneratedInterface { ++ void setIndex(T view, int value); ++} +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/CMakeLists.txt b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/CMakeLists.txt +new file mode 100644 +index 0000000..6da3850 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/CMakeLists.txt +@@ -0,0 +1,36 @@ ++# Copyright (c) Meta Platforms, Inc. and affiliates. ++# ++# This source code is licensed under the MIT license found in the ++# LICENSE file in the root directory of this source tree. ++ ++cmake_minimum_required(VERSION 3.13) ++set(CMAKE_VERBOSE_MAKEFILE on) ++ ++file(GLOB react_codegen_SRCS CONFIGURE_DEPENDS *.cpp react/renderer/components/rnflashlist/*.cpp) ++ ++add_library( ++ react_codegen_rnflashlist ++ OBJECT ++ ${react_codegen_SRCS} ++) ++ ++target_include_directories(react_codegen_rnflashlist PUBLIC . react/renderer/components/rnflashlist) ++ ++target_link_libraries( ++ react_codegen_rnflashlist ++ fbjni ++ jsi ++ # We need to link different libraries based on whether we are building rncore or not, that's necessary ++ # because we want to break a circular dependency between react_codegen_rncore and reactnative ++ reactnative ++) ++ ++target_compile_options( ++ react_codegen_rnflashlist ++ PRIVATE ++ -DLOG_TAG=\"ReactNative\" ++ -fexceptions ++ -frtti ++ -std=c++20 ++ -Wall ++) +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.cpp +new file mode 100644 +index 0000000..dcd54fb +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.cpp +@@ -0,0 +1,23 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++void rnflashlist_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry) { ++registry->add(concreteComponentDescriptorProvider()); ++registry->add(concreteComponentDescriptorProvider()); ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.h +new file mode 100644 +index 0000000..66b2d8b +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ComponentDescriptors.h +@@ -0,0 +1,25 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateComponentDescriptorH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++using AutoLayoutViewComponentDescriptor = ConcreteComponentDescriptor; ++using CellContainerComponentDescriptor = ConcreteComponentDescriptor; ++ ++void rnflashlist_registerComponentDescriptorsFromCodegen( ++ std::shared_ptr registry); ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.cpp +new file mode 100644 +index 0000000..1484b70 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.cpp +@@ -0,0 +1,26 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterCpp.js ++ */ ++ ++#include ++ ++ ++namespace facebook::react { ++ ++void AutoLayoutViewEventEmitter::onBlankAreaEvent(OnBlankAreaEvent event) const { ++ dispatchEvent("blankAreaEvent", [event=std::move(event)](jsi::Runtime &runtime) { ++ auto payload = jsi::Object(runtime); ++ payload.setProperty(runtime, "offsetStart", event.offsetStart); ++payload.setProperty(runtime, "offsetEnd", event.offsetEnd); ++ return payload; ++ }); ++} ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.h +new file mode 100644 +index 0000000..31c5c24 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/EventEmitters.h +@@ -0,0 +1,33 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateEventEmitterH.js ++ */ ++#pragma once ++ ++#include ++ ++ ++namespace facebook::react { ++class AutoLayoutViewEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ struct OnBlankAreaEvent { ++ int offsetStart; ++ int offsetEnd; ++ }; ++ void onBlankAreaEvent(OnBlankAreaEvent value) const; ++}; ++class CellContainerEventEmitter : public ViewEventEmitter { ++ public: ++ using ViewEventEmitter::ViewEventEmitter; ++ ++ ++ ++}; ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.cpp +new file mode 100644 +index 0000000..29463b5 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.cpp +@@ -0,0 +1,37 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GeneratePropsCpp.js ++ */ ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++AutoLayoutViewProps::AutoLayoutViewProps( ++ const PropsParserContext &context, ++ const AutoLayoutViewProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ horizontal(convertRawProp(context, rawProps, "horizontal", sourceProps.horizontal, {false})), ++ scrollOffset(convertRawProp(context, rawProps, "scrollOffset", sourceProps.scrollOffset, {0.0})), ++ windowSize(convertRawProp(context, rawProps, "windowSize", sourceProps.windowSize, {0.0})), ++ renderAheadOffset(convertRawProp(context, rawProps, "renderAheadOffset", sourceProps.renderAheadOffset, {0.0})), ++ enableInstrumentation(convertRawProp(context, rawProps, "enableInstrumentation", sourceProps.enableInstrumentation, {false})), ++ disableAutoLayout(convertRawProp(context, rawProps, "disableAutoLayout", sourceProps.disableAutoLayout, {false})) ++ {} ++CellContainerProps::CellContainerProps( ++ const PropsParserContext &context, ++ const CellContainerProps &sourceProps, ++ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps), ++ ++ index(convertRawProp(context, rawProps, "index", sourceProps.index, {0})) ++ {} ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.h +new file mode 100644 +index 0000000..fa4a671 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/Props.h +@@ -0,0 +1,42 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GeneratePropsH.js ++ */ ++#pragma once ++ ++#include ++#include ++ ++namespace facebook::react { ++ ++class AutoLayoutViewProps final : public ViewProps { ++ public: ++ AutoLayoutViewProps() = default; ++ AutoLayoutViewProps(const PropsParserContext& context, const AutoLayoutViewProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ bool horizontal{false}; ++ double scrollOffset{0.0}; ++ double windowSize{0.0}; ++ double renderAheadOffset{0.0}; ++ bool enableInstrumentation{false}; ++ bool disableAutoLayout{false}; ++}; ++ ++class CellContainerProps final : public ViewProps { ++ public: ++ CellContainerProps() = default; ++ CellContainerProps(const PropsParserContext& context, const CellContainerProps &sourceProps, const RawProps &rawProps); ++ ++#pragma mark - Props ++ ++ int index{0}; ++}; ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.cpp +new file mode 100644 +index 0000000..7815863 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.cpp +@@ -0,0 +1,18 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeCpp.js ++ */ ++ ++#include ++ ++namespace facebook::react { ++ ++extern const char AutoLayoutViewComponentName[] = "AutoLayoutView"; ++extern const char CellContainerComponentName[] = "CellContainer"; ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.h +new file mode 100644 +index 0000000..3a1d9a9 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/ShadowNodes.h +@@ -0,0 +1,43 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateShadowNodeH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++JSI_EXPORT extern const char AutoLayoutViewComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using AutoLayoutViewShadowNode = ConcreteViewShadowNode< ++ AutoLayoutViewComponentName, ++ AutoLayoutViewProps, ++ AutoLayoutViewEventEmitter, ++ AutoLayoutViewState>; ++ ++JSI_EXPORT extern const char CellContainerComponentName[]; ++ ++/* ++ * `ShadowNode` for component. ++ */ ++using CellContainerShadowNode = ConcreteViewShadowNode< ++ CellContainerComponentName, ++ CellContainerProps, ++ CellContainerEventEmitter, ++ CellContainerState>; ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.cpp +new file mode 100644 +index 0000000..794a356 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.cpp +@@ -0,0 +1,16 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateStateCpp.js ++ */ ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.h +new file mode 100644 +index 0000000..406e7cf +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/States.h +@@ -0,0 +1,41 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateStateH.js ++ */ ++#pragma once ++ ++#ifdef ANDROID ++#include ++#endif ++ ++namespace facebook::react { ++ ++class AutoLayoutViewState { ++public: ++ AutoLayoutViewState() = default; ++ ++#ifdef ANDROID ++ AutoLayoutViewState(AutoLayoutViewState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++class CellContainerState { ++public: ++ CellContainerState() = default; ++ ++#ifdef ANDROID ++ CellContainerState(CellContainerState const &previousState, folly::dynamic data){}; ++ folly::dynamic getDynamic() const { ++ return {}; ++ }; ++#endif ++}; ++ ++} // namespace facebook::react +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI-generated.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI-generated.cpp +new file mode 100644 +index 0000000..e051b5d +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI-generated.cpp +@@ -0,0 +1,17 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleCpp.js ++ */ ++ ++#include "rnflashlistJSI.h" ++ ++namespace facebook::react { ++ ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI.h +new file mode 100644 +index 0000000..ec16260 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/react/renderer/components/rnflashlist/rnflashlistJSI.h +@@ -0,0 +1,19 @@ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist-generated.cpp b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist-generated.cpp +new file mode 100644 +index 0000000..d744030 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist-generated.cpp +@@ -0,0 +1,22 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniCpp.js ++ */ ++ ++#include "rnflashlist.h" ++ ++namespace facebook::react { ++ ++ ++ ++std::shared_ptr rnflashlist_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms) { ++ ++ return nullptr; ++} ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist.h b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist.h +new file mode 100644 +index 0000000..5577491 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/jni/rnflashlist.h +@@ -0,0 +1,24 @@ ++ ++/** ++ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen). ++ * ++ * Do not edit this file as changes may cause incorrect behavior and will be lost ++ * once the code is regenerated. ++ * ++ * @generated by codegen project: GenerateModuleJniH.js ++ */ ++ ++#pragma once ++ ++#include ++#include ++#include ++ ++namespace facebook::react { ++ ++ ++ ++JSI_EXPORT ++std::shared_ptr rnflashlist_ModuleProvider(const std::string &moduleName, const JavaTurboModule::InitParams ¶ms); ++ ++} // namespace facebook::react +diff --git a/node_modules/@shopify/flash-list/android/build/generated/source/codegen/schema.json b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/schema.json +new file mode 100644 +index 0000000..61eb05a +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/generated/source/codegen/schema.json +@@ -0,0 +1 @@ ++{"modules":{"AutoLayoutView":{"type":"Component","components":{"AutoLayoutView":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[{"name":"onBlankAreaEvent","optional":true,"bubblingType":"direct","typeAnnotation":{"type":"EventTypeAnnotation","argument":{"type":"ObjectTypeAnnotation","properties":[{"name":"offsetStart","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}},{"name":"offsetEnd","optional":false,"typeAnnotation":{"type":"Int32TypeAnnotation"}}]}}}],"props":[{"name":"horizontal","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"scrollOffset","optional":true,"typeAnnotation":{"type":"DoubleTypeAnnotation","default":0}},{"name":"windowSize","optional":true,"typeAnnotation":{"type":"DoubleTypeAnnotation","default":0}},{"name":"renderAheadOffset","optional":true,"typeAnnotation":{"type":"DoubleTypeAnnotation","default":0}},{"name":"enableInstrumentation","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}},{"name":"disableAutoLayout","optional":true,"typeAnnotation":{"type":"BooleanTypeAnnotation","default":false}}],"commands":[]}}},"CellContainer":{"type":"Component","components":{"CellContainer":{"extendsProps":[{"type":"ReactNativeBuiltInType","knownTypeName":"ReactNativeCoreViewProps"}],"events":[],"props":[{"name":"index","optional":true,"typeAnnotation":{"type":"Int32TypeAnnotation","default":0}}],"commands":[]}}}}} +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..f949dbf +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..26dc774 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.shopify.reactnative.flash_list", ++ "variantName": "debug", ++ "elements": [ ++ { ++ "type": "SINGLE", ++ "filters": [], ++ "attributes": [], ++ "outputFile": "AndroidManifest.xml" ++ } ++ ], ++ "elementType": "File" ++} +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/@shopify/flash-list/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/@shopify/flash-list/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/@shopify/flash-list/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..17a1f94 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/@shopify/flash-list/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..60f2461 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/@shopify/flash-list/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..e69de29 +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..a217e66 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1 @@ ++#Fri Jun 13 22:21:47 IST 2025 +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..8dafe37 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +new file mode 100644 +index 0000000..1e250c5 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..c8825af +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..6018479 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/shopify_flash-list_debug.kotlin_module b/node_modules/@shopify/flash-list/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/shopify_flash-list_debug.kotlin_module +new file mode 100644 +index 0000000..9dbc290 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/shopify_flash-list_debug.kotlin_module differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class +new file mode 100644 +index 0000000..41209bb +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class +new file mode 100644 +index 0000000..7d167cd +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class +new file mode 100644 +index 0000000..125340b +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerInterface.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerInterface.class +new file mode 100644 +index 0000000..6b3470d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/facebook/react/viewmanagers/CellContainerManagerInterface.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/BuildConfig.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/BuildConfig.class +new file mode 100644 +index 0000000..ba5e2c1 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/BuildConfig.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/CellContainer.class b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/CellContainer.class +new file mode 100644 +index 0000000..f48e504 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/shopify/reactnative/flash_list/CellContainer.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/@shopify/flash-list/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..78ac5b8 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,2 @@ ++R_DEF: Internal format may change without notice ++local +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/@shopify/flash-list/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..eca08c9 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,7 @@ ++1 ++2 ++4 ++5 ++6 ++7 +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/@shopify/flash-list/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..f949dbf +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,7 @@ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/@shopify/flash-list/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/@shopify/flash-list/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/shopify_flash-list_debug.kotlin_module b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/shopify_flash-list_debug.kotlin_module +new file mode 100644 +index 0000000..9dbc290 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/shopify_flash-list_debug.kotlin_module differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class +new file mode 100644 +index 0000000..41209bb +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerDelegate.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class +new file mode 100644 +index 0000000..7d167cd +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/AutoLayoutViewManagerInterface.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class +new file mode 100644 +index 0000000..125340b +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerDelegate.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerInterface.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerInterface.class +new file mode 100644 +index 0000000..6b3470d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/facebook/react/viewmanagers/CellContainerManagerInterface.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class +new file mode 100644 +index 0000000..e1a5686 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class +new file mode 100644 +index 0000000..862fdf5 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView.class +new file mode 100644 +index 0000000..4226dd9 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutView.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class +new file mode 100644 +index 0000000..9fc9918 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class +new file mode 100644 +index 0000000..cc7376d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class +new file mode 100644 +index 0000000..fa42f95 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent.class +new file mode 100644 +index 0000000..e40ed1e +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BlankAreaEvent.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BuildConfig.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BuildConfig.class +new file mode 100644 +index 0000000..ba5e2c1 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/BuildConfig.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainer.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainer.class +new file mode 100644 +index 0000000..f48e504 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainer.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerImpl.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerImpl.class +new file mode 100644 +index 0000000..7ddd20e +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerImpl.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class +new file mode 100644 +index 0000000..f267155 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager.class +new file mode 100644 +index 0000000..4551e06 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/CellContainerManager.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class +new file mode 100644 +index 0000000..b396253 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..c880ede +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/@shopify/flash-list/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/@shopify/flash-list/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..4592df5 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1 @@ ++com.shopify.reactnative.flash_list +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..d43785c +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..e93e718 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..cfa0498 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..817b326 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..6d15a33 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..e06036a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..73c4ba3 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..b1067b5 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..e174080 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..fd5292d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..9e593fa +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..51c1836 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..a4167b0 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..b1067b5 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..e174080 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..fd5292d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..26c6860 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..51c1836 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..dd735da +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..5f726d8 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..57d7b65 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..a9f80ae +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..7e6ee65 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..bc2988a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..9dc5afa +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..13f1b68 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..e13b7a4 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..a541356 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..8f2a132 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..979b45f +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..2943e24 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..33e6559 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..055d732 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..a541356 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..ee746be +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..9842378 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..de270e8 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..e93e718 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..cfa0498 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..817b326 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..bce7468 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..e06036a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..efda06c +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..1c20c8a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..9752f31 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..817b326 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..26d5575 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..0c73d10 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..d934887 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..ac6ceb7 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..f2450b7 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..9e27f73 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..e75d548 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..2df16fe +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..3d952e7 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++7 ++0 +\ No newline at end of file +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..52bf8b7 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..e93e718 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..cfa0498 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..817b326 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..25454f3 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..e06036a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..0eca04a +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..2459ed6 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..379d85c +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..817b326 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..68c3745 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..0667ccd +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..a2dce03 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..4b9d9d2 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..182c57e +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..1ac2e4d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..91357e2 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..3ca2ec0 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..d3e4007 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..1db5202 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +new file mode 100644 +index 0000000..3d05098 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ +diff --git a/node_modules/@shopify/flash-list/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/@shopify/flash-list/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..39c6f36 +--- /dev/null ++++ b/node_modules/@shopify/flash-list/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,17 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml:1:1-3:12 ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml:1:1-3:12 ++ package ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml:2:11-55 ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml:1:11-69 ++uses-sdk ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/@shopify/flash-list/android/src/main/AndroidManifest.xml +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/@shopify/flash-list/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..96356e4 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/META-INF/shopify_flash-list_debug.kotlin_module b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/META-INF/shopify_flash-list_debug.kotlin_module +new file mode 100644 +index 0000000..9dbc290 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/META-INF/shopify_flash-list_debug.kotlin_module differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class +new file mode 100644 +index 0000000..e1a5686 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutShadow.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class +new file mode 100644 +index 0000000..862fdf5 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView$fixLayout$$inlined$sortBy$1.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView.class +new file mode 100644 +index 0000000..4226dd9 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutView.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class +new file mode 100644 +index 0000000..9fc9918 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class +new file mode 100644 +index 0000000..cc7376d +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/AutoLayoutViewManager.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class +new file mode 100644 +index 0000000..fa42f95 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent.class +new file mode 100644 +index 0000000..e40ed1e +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/BlankAreaEvent.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerImpl.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerImpl.class +new file mode 100644 +index 0000000..7ddd20e +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerImpl.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class +new file mode 100644 +index 0000000..f267155 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager$Companion.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager.class +new file mode 100644 +index 0000000..4551e06 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/CellContainerManager.class differ +diff --git a/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class +new file mode 100644 +index 0000000..b396253 +Binary files /dev/null and b/node_modules/@shopify/flash-list/android/build/tmp/kotlin-classes/debug/com/shopify/reactnative/flash_list/ReactNativeFlashListPackage.class differ +diff --git a/node_modules/@shopify/flash-list/android/src/main/kotlin/com/shopify/reactnative/flash_list/BlankAreaEvent.kt b/node_modules/@shopify/flash-list/android/src/main/kotlin/com/shopify/reactnative/flash_list/BlankAreaEvent.kt +index ed74c43..dd34130 100644 +--- a/node_modules/@shopify/flash-list/android/src/main/kotlin/com/shopify/reactnative/flash_list/BlankAreaEvent.kt ++++ b/node_modules/@shopify/flash-list/android/src/main/kotlin/com/shopify/reactnative/flash_list/BlankAreaEvent.kt +@@ -20,7 +20,7 @@ class BlankAreaEvent( + } + + override fun dispatch(rctEventEmitter: RCTEventEmitter) { +- rctEventEmitter.receiveEvent(viewTag, eventName, eventData) ++ rctEventEmitter.receiveEvent(viewTag, eventName, getEventData()) + } + + companion object { diff --git a/patches/react-native+0.79.2.patch b/patches/react-native+0.79.2.patch deleted file mode 100644 index 5eb1c0d9..00000000 --- a/patches/react-native+0.79.2.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff --git a/node_modules/react-native/React/CoreModules/RCTDeviceInfo.mm b/node_modules/react-native/React/CoreModules/RCTDeviceInfo.mm -index 6b4fcef..fed256f 100644 ---- a/node_modules/react-native/React/CoreModules/RCTDeviceInfo.mm -+++ b/node_modules/react-native/React/CoreModules/RCTDeviceInfo.mm -@@ -144,9 +144,10 @@ static BOOL RCTIsIPhoneNotched() - { - UIScreen *mainScreen = UIScreen.mainScreen; - CGSize screenSize = mainScreen.bounds.size; -+ UIView *mainWindow = RCTKeyWindow(); - - // We fallback to screen size if a key window is not found. -- CGSize windowSize = [RCTKeyWindowValuesProxy sharedInstance].windowSize; -+ CGSize windowSize = mainWindow ? mainWindow.bounds.size : screenSize; - - NSDictionary *dimsWindow = @{ - @"width" : @(windowSize.width), diff --git a/patches/react-native-mmkv+3.2.0.patch b/patches/react-native-mmkv+3.2.0.patch new file mode 100644 index 00000000..04df5bb5 --- /dev/null +++ b/patches/react-native-mmkv+3.2.0.patch @@ -0,0 +1,12 @@ +diff --git a/node_modules/react-native-mmkv/react-native-mmkv.podspec b/node_modules/react-native-mmkv/react-native-mmkv.podspec +index be617c1..3e1da7c 100644 +--- a/node_modules/react-native-mmkv/react-native-mmkv.podspec ++++ b/node_modules/react-native-mmkv/react-native-mmkv.podspec +@@ -25,6 +25,7 @@ Pod::Spec.new do |s| + "GCC_PREPROCESSOR_DEFINITIONS" => "$(inherited) FORCE_POSIX", + } + s.compiler_flags = '-x objective-c++' ++ s.libraries = "z", "c++" + + s.source_files = [ + # react-native-mmkv diff --git a/patches/react-native-track-player+4.1.1.patch b/patches/react-native-track-player+4.1.1.patch new file mode 100644 index 00000000..34e1faec --- /dev/null +++ b/patches/react-native-track-player+4.1.1.patch @@ -0,0 +1,3485 @@ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/results.bin b/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/results.bin +new file mode 100644 +index 0000000..0d259dd +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/results.bin +@@ -0,0 +1 @@ ++o/classes +diff --git a/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/transformed/classes/classes_dex/classes.dex b/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/transformed/classes/classes_dex/classes.dex +new file mode 100644 +index 0000000..5960159 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/0db025f0656b62eac5e6a9513c71aa8b/transformed/classes/classes_dex/classes.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/results.bin b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/results.bin +new file mode 100644 +index 0000000..7ed749e +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/results.bin +@@ -0,0 +1 @@ ++o/bundleLibRuntimeToDirDebug +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/BuildConfig.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/BuildConfig.dex +new file mode 100644 +index 0000000..ee7aaeb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/BuildConfig.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.dex +new file mode 100644 +index 0000000..54ce819 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.dex +new file mode 100644 +index 0000000..9dbd3ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.dex +new file mode 100644 +index 0000000..fa7e69c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService.dex +new file mode 100644 +index 0000000..ef96190 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/HeadlessJsMediaService.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/TrackPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/TrackPlayer.dex +new file mode 100644 +index 0000000..9825701 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/TrackPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.dex +new file mode 100644 +index 0000000..e9c3da7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.dex +new file mode 100644 +index 0000000..0b8c10e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.dex +new file mode 100644 +index 0000000..1610e8e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.dex +new file mode 100644 +index 0000000..eb68295 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt.dex +new file mode 100644 +index 0000000..938cb41 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/extensions/NumberExt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.dex +new file mode 100644 +index 0000000..37c3a60 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter.dex +new file mode 100644 +index 0000000..31bdc1f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/MetadataAdapter.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.dex +new file mode 100644 +index 0000000..d8c729d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.dex +new file mode 100644 +index 0000000..39e1fb6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata.dex +new file mode 100644 +index 0000000..5205618 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/PlaybackMetadata.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/State.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/State.dex +new file mode 100644 +index 0000000..7177633 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/State.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/Track.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/Track.dex +new file mode 100644 +index 0000000..a32bc09 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/Track.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackAudioItem.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackAudioItem.dex +new file mode 100644 +index 0000000..ef936ba +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackAudioItem.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackMetadata.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackMetadata.dex +new file mode 100644 +index 0000000..9a8817a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/model/TrackMetadata.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.dex +new file mode 100644 +index 0000000..b8bf513 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents.dex +new file mode 100644 +index 0000000..8e0bf73 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicEvents.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.dex +new file mode 100644 +index 0000000..40531b1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.dex +new file mode 100644 +index 0000000..7fcc98e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$add$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$add$1.dex +new file mode 100644 +index 0000000..6e8a32a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$add$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.dex +new file mode 100644 +index 0000000..160ecc1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.dex +new file mode 100644 +index 0000000..5853d49 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.dex +new file mode 100644 +index 0000000..544c7c4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.dex +new file mode 100644 +index 0000000..2d10c86 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.dex +new file mode 100644 +index 0000000..7c38f7e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.dex +new file mode 100644 +index 0000000..c50f7f1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.dex +new file mode 100644 +index 0000000..e6e3064 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.dex +new file mode 100644 +index 0000000..4ee8b2a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.dex +new file mode 100644 +index 0000000..43f2002 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.dex +new file mode 100644 +index 0000000..5f94152 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.dex +new file mode 100644 +index 0000000..64d0a7f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.dex +new file mode 100644 +index 0000000..41c3a6e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.dex +new file mode 100644 +index 0000000..f4d6af9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.dex +new file mode 100644 +index 0000000..e7fd1e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.dex +new file mode 100644 +index 0000000..745c812 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.dex +new file mode 100644 +index 0000000..7ba6978 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.dex +new file mode 100644 +index 0000000..831a700 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.dex +new file mode 100644 +index 0000000..d1c7825 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.dex +new file mode 100644 +index 0000000..745c251 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.dex +new file mode 100644 +index 0000000..f139700 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.dex +new file mode 100644 +index 0000000..a1ec3c5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.dex +new file mode 100644 +index 0000000..60eb400 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$load$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$load$1.dex +new file mode 100644 +index 0000000..a1a62ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$load$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$move$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$move$1.dex +new file mode 100644 +index 0000000..021e293 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$move$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.dex +new file mode 100644 +index 0000000..a74d999 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.dex +new file mode 100644 +index 0000000..bb83c80 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.dex +new file mode 100644 +index 0000000..189e933 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$play$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$play$1.dex +new file mode 100644 +index 0000000..9a49c46 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$play$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.dex +new file mode 100644 +index 0000000..b37539e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.dex +new file mode 100644 +index 0000000..0148735 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.dex +new file mode 100644 +index 0000000..712e83c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.dex +new file mode 100644 +index 0000000..7fdb65c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.dex +new file mode 100644 +index 0000000..2d921e9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.dex +new file mode 100644 +index 0000000..b31f59f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.dex +new file mode 100644 +index 0000000..824fb98 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.dex +new file mode 100644 +index 0000000..6ef57ac +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.dex +new file mode 100644 +index 0000000..14ecfd5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.dex +new file mode 100644 +index 0000000..4e5ca77 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.dex +new file mode 100644 +index 0000000..99004fd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.dex +new file mode 100644 +index 0000000..eb05e59 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.dex +new file mode 100644 +index 0000000..9485926 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.dex +new file mode 100644 +index 0000000..789e709 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.dex +new file mode 100644 +index 0000000..a32c99b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.dex +new file mode 100644 +index 0000000..b90c61c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.dex +new file mode 100644 +index 0000000..9a8e3d0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.dex +new file mode 100644 +index 0000000..adc2616 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.dex +new file mode 100644 +index 0000000..3c05d4f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.dex +new file mode 100644 +index 0000000..5719902 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.dex +new file mode 100644 +index 0000000..49e534c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.dex +new file mode 100644 +index 0000000..13cdef4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.dex +new file mode 100644 +index 0000000..3f41df8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.dex +new file mode 100644 +index 0000000..889f2f2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule.dex +new file mode 100644 +index 0000000..b1afa7c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/module/MusicModule.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.dex +new file mode 100644 +index 0000000..b30d49a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.dex +new file mode 100644 +index 0000000..670ebe2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$Companion.dex +new file mode 100644 +index 0000000..370e502 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.dex +new file mode 100644 +index 0000000..22b97ee +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.dex +new file mode 100644 +index 0000000..38484f2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.dex +new file mode 100644 +index 0000000..7b477ba +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.dex +new file mode 100644 +index 0000000..74f5de2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.dex +new file mode 100644 +index 0000000..996fe8b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.dex +new file mode 100644 +index 0000000..72c7482 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.dex +new file mode 100644 +index 0000000..94ccfe2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.dex +new file mode 100644 +index 0000000..b35d1b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.dex +new file mode 100644 +index 0000000..57d1784 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.dex +new file mode 100644 +index 0000000..bb23500 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.dex +new file mode 100644 +index 0000000..28d2b9f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.dex +new file mode 100644 +index 0000000..9f053ef +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.dex +new file mode 100644 +index 0000000..b82fbcc +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.dex +new file mode 100644 +index 0000000..bd8217d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.dex +new file mode 100644 +index 0000000..ac7d055 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.dex +new file mode 100644 +index 0000000..1cb5c71 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.dex +new file mode 100644 +index 0000000..a7678c4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.dex +new file mode 100644 +index 0000000..6d0854f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.dex +new file mode 100644 +index 0000000..193f5e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.dex +new file mode 100644 +index 0000000..f772b3d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.dex +new file mode 100644 +index 0000000..cff471d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.dex +new file mode 100644 +index 0000000..cc0a2c8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.dex +new file mode 100644 +index 0000000..233fb5e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService.dex +new file mode 100644 +index 0000000..93914d2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/service/MusicService.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.dex +new file mode 100644 +index 0000000..1efb5b8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.dex +new file mode 100644 +index 0000000..f827f55 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/BundleUtils.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/BundleUtils.dex +new file mode 100644 +index 0000000..2771932 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/BundleUtils.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.dex +new file mode 100644 +index 0000000..4fd7de3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.dex +new file mode 100644 +index 0000000..51872b9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.dex +new file mode 100644 +index 0000000..e6b6a3e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.dex +new file mode 100644 +index 0000000..7a59acd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/RejectionException.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/RejectionException.dex +new file mode 100644 +index 0000000..eaf4a57 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/doublesymmetry/trackplayer/utils/RejectionException.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/EventHolder.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/EventHolder.dex +new file mode 100644 +index 0000000..8390f76 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/EventHolder.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex +new file mode 100644 +index 0000000..4029c23 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex +new file mode 100644 +index 0000000..208ed00 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex +new file mode 100644 +index 0000000..7a32664 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex +new file mode 100644 +index 0000000..6fc8aff +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex +new file mode 100644 +index 0000000..4181d21 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex +new file mode 100644 +index 0000000..132328a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex +new file mode 100644 +index 0000000..4e6aa75 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex +new file mode 100644 +index 0000000..8856d44 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex +new file mode 100644 +index 0000000..2d70f20 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex +new file mode 100644 +index 0000000..0166d7f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.dex +new file mode 100644 +index 0000000..dd7a909 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioContentType.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioContentType.dex +new file mode 100644 +index 0000000..3358414 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioContentType.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItem.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItem.dex +new file mode 100644 +index 0000000..0dbb34c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItem.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.dex +new file mode 100644 +index 0000000..8432568 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemKt.dex +new file mode 100644 +index 0000000..5d27300 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.dex +new file mode 100644 +index 0000000..3d18be8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex +new file mode 100644 +index 0000000..58b1b9d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex +new file mode 100644 +index 0000000..97e6f8f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex +new file mode 100644 +index 0000000..e0ba7e9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex +new file mode 100644 +index 0000000..92a78ba +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.dex +new file mode 100644 +index 0000000..b1bc372 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.dex +new file mode 100644 +index 0000000..901eb55 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferConfig.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferConfig.dex +new file mode 100644 +index 0000000..570bc96 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferConfig.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferOptions.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferOptions.dex +new file mode 100644 +index 0000000..55ca6f5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/BufferOptions.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CacheConfig.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CacheConfig.dex +new file mode 100644 +index 0000000..f6884e7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CacheConfig.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/Capability.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/Capability.dex +new file mode 100644 +index 0000000..961aae0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/Capability.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CustomButton.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CustomButton.dex +new file mode 100644 +index 0000000..40c26e2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/CustomButton.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.dex +new file mode 100644 +index 0000000..27cdde6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/FocusChangeData.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/FocusChangeData.dex +new file mode 100644 +index 0000000..0242ca5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/FocusChangeData.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.dex +new file mode 100644 +index 0000000..19ec809 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.dex +new file mode 100644 +index 0000000..1836250 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.dex +new file mode 100644 +index 0000000..cf79d38 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.dex +new file mode 100644 +index 0000000..2b7a120 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.dex +new file mode 100644 +index 0000000..1697753 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex +new file mode 100644 +index 0000000..181efdb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.dex +new file mode 100644 +index 0000000..015dd47 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.dex +new file mode 100644 +index 0000000..d5600be +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.dex +new file mode 100644 +index 0000000..5650cef +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.dex +new file mode 100644 +index 0000000..5677f71 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.dex +new file mode 100644 +index 0000000..e50d9ab +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaType.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaType.dex +new file mode 100644 +index 0000000..e7e9912 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/MediaType.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.dex +new file mode 100644 +index 0000000..a697951 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.dex +new file mode 100644 +index 0000000..cc8e63b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackError.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackError.dex +new file mode 100644 +index 0000000..6bd3915 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlaybackError.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerConfig.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerConfig.dex +new file mode 100644 +index 0000000..7da1e30 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerConfig.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptions.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptions.dex +new file mode 100644 +index 0000000..bd6ab0b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptions.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.dex +new file mode 100644 +index 0000000..b9b8961 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.dex +new file mode 100644 +index 0000000..941a6f1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex +new file mode 100644 +index 0000000..747a50a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.dex +new file mode 100644 +index 0000000..6c45de2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex +new file mode 100644 +index 0000000..817aaaf +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex +new file mode 100644 +index 0000000..85352f3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex +new file mode 100644 +index 0000000..f853d6d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.dex +new file mode 100644 +index 0000000..e88e7ca +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.dex +new file mode 100644 +index 0000000..4848c70 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode.dex +new file mode 100644 +index 0000000..69e880b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/RepeatMode.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/WakeMode.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/WakeMode.dex +new file mode 100644 +index 0000000..4533be8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/models/WakeMode.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.dex +new file mode 100644 +index 0000000..1b2b789 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.dex +new file mode 100644 +index 0000000..32fa88b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.dex +new file mode 100644 +index 0000000..3ec0dc1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.dex +new file mode 100644 +index 0000000..a69de0e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.dex +new file mode 100644 +index 0000000..23f8f30 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.dex +new file mode 100644 +index 0000000..8635332 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.dex +new file mode 100644 +index 0000000..90b31f5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.dex +new file mode 100644 +index 0000000..3ad0917 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.dex +new file mode 100644 +index 0000000..14e0f13 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.dex +new file mode 100644 +index 0000000..7e3b11e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer.dex +new file mode 100644 +index 0000000..2b48dd8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/AudioPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.dex +new file mode 100644 +index 0000000..61765b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.dex +new file mode 100644 +index 0000000..09b8082 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.dex +new file mode 100644 +index 0000000..e58772e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.dex +new file mode 100644 +index 0000000..40238b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.dex +new file mode 100644 +index 0000000..638df04 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/BufferKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/BufferKt.dex +new file mode 100644 +index 0000000..af59d01 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/BufferKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/Cache.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/Cache.dex +new file mode 100644 +index 0000000..971ca21 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/Cache.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/FocusManager.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/FocusManager.dex +new file mode 100644 +index 0000000..cd6acdb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/FocusManager.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.dex +new file mode 100644 +index 0000000..99b3deb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.dex +new file mode 100644 +index 0000000..91d681a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.dex +new file mode 100644 +index 0000000..099fa72 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener.dex +new file mode 100644 +index 0000000..7c082b1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListener.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.dex +new file mode 100644 +index 0000000..23e36f9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.dex +new file mode 100644 +index 0000000..dd5cc4a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.dex +new file mode 100644 +index 0000000..701d741 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService.dex +new file mode 100644 +index 0000000..2358e21 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicService.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.dex +new file mode 100644 +index 0000000..4ab322a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/FFT.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/FFT.dex +new file mode 100644 +index 0000000..c372075 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/FFT.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/UtilsKt.dex b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/UtilsKt.dex +new file mode 100644 +index 0000000..1aa7f94 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/bundleLibRuntimeToDirDebug_dex/com/lovegaoshi/kotlinaudio/utils/UtilsKt.dex differ +diff --git a/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin +new file mode 100644 +index 0000000..6d4347d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/.transforms/c8398aa3ca5cea0f125f9f4bb124791c/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ +diff --git a/node_modules/react-native-track-player/android/build/generated/source/buildConfig/debug/com/doublesymmetry/trackplayer/BuildConfig.java b/node_modules/react-native-track-player/android/build/generated/source/buildConfig/debug/com/doublesymmetry/trackplayer/BuildConfig.java +new file mode 100644 +index 0000000..7b5e7c0 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/generated/source/buildConfig/debug/com/doublesymmetry/trackplayer/BuildConfig.java +@@ -0,0 +1,10 @@ ++/** ++ * Automatically generated file. DO NOT MODIFY ++ */ ++package com.doublesymmetry.trackplayer; ++ ++public final class BuildConfig { ++ public static final boolean DEBUG = Boolean.parseBoolean("true"); ++ public static final String LIBRARY_PACKAGE_NAME = "com.doublesymmetry.trackplayer"; ++ public static final String BUILD_TYPE = "debug"; ++} +diff --git a/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +new file mode 100644 +index 0000000..3cc6961 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +new file mode 100644 +index 0000000..745a7ed +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json +@@ -0,0 +1,18 @@ ++{ ++ "version": 3, ++ "artifactType": { ++ "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", ++ "kind": "Directory" ++ }, ++ "applicationId": "com.doublesymmetry.trackplayer", ++ "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-track-player/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/node_modules/react-native-track-player/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +new file mode 100644 +index 0000000..1211b1e +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties +@@ -0,0 +1,6 @@ ++aarFormatVersion=1.0 ++aarMetadataVersion=1.0 ++minCompileSdk=1 ++minCompileSdkExtension=0 ++minAndroidGradlePluginVersion=1.0.0 ++coreLibraryDesugaringEnabled=false +diff --git a/node_modules/react-native-track-player/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/node_modules/react-native-track-player/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +new file mode 100644 +index 0000000..9e26dfe +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json +@@ -0,0 +1 @@ ++{} +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/node_modules/react-native-track-player/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar +new file mode 100644 +index 0000000..cc3fdc0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/node_modules/react-native-track-player/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar +new file mode 100644 +index 0000000..4e1426b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/node_modules/react-native-track-player/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +new file mode 100644 +index 0000000..ec0bd12 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt +@@ -0,0 +1,12 @@ ++int drawable baseline_repeat_24 0x0 ++int drawable baseline_repeat_one_24 0x0 ++int drawable forward 0x0 ++int drawable heart_24px 0x0 ++int drawable hearte_24px 0x0 ++int drawable ifl_24px 0x0 ++int drawable rewind 0x0 ++int drawable shuffle_24px 0x0 ++int string playback_channel_name 0x0 ++int string rntp_temporary_channel_id 0x0 ++int string rntp_temporary_channel_name 0x0 ++int xml automotive_app_desc 0x0 +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_24.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_24.xml.flat +new file mode 100644 +index 0000000..7cfdbfe +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_24.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_one_24.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_one_24.xml.flat +new file mode 100644 +index 0000000..f2bbfe8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_baseline_repeat_one_24.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_forward.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_forward.xml.flat +new file mode 100644 +index 0000000..28dd6ae +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_forward.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_heart_24px.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_heart_24px.xml.flat +new file mode 100644 +index 0000000..ddc9ae1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_heart_24px.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_hearte_24px.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_hearte_24px.xml.flat +new file mode 100644 +index 0000000..06606bb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_hearte_24px.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_ifl_24px.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_ifl_24px.xml.flat +new file mode 100644 +index 0000000..3c090f9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_ifl_24px.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rewind.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rewind.xml.flat +new file mode 100644 +index 0000000..c53d541 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_rewind.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_shuffle_24px.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_shuffle_24px.xml.flat +new file mode 100644 +index 0000000..c87e513 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_shuffle_24px.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/xml_automotive_app_desc.xml.flat b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/xml_automotive_app_desc.xml.flat +new file mode 100644 +index 0000000..a46a78a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/xml_automotive_app_desc.xml.flat differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +new file mode 100644 +index 0000000..81eba04 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties +@@ -0,0 +1,10 @@ ++#Fri Jun 13 22:21:47 IST 2025 ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/baseline_repeat_one_24.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_one_24.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/shuffle_24px.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/shuffle_24px.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/heart_24px.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/heart_24px.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/ifl_24px.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ifl_24px.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/xml/automotive_app_desc.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/xml/automotive_app_desc.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/baseline_repeat_24.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_24.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/hearte_24px.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/hearte_24px.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/forward.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/forward.xml ++com.doublesymmetry.trackplayer.react-native-track-player-main-6\:/drawable/rewind.xml=/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rewind.xml +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +new file mode 100644 +index 0000000..231cc90 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml +@@ -0,0 +1,6 @@ ++ ++ ++ Now Playing ++ rntp_temporary_channel ++ temporary_channel ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +new file mode 100644 +index 0000000..5d303d6 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml +@@ -0,0 +1,2 @@ ++ ++rntp_temporary_channelNow Playingtemporary_channel +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugAssets/merger.xml b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +new file mode 100644 +index 0000000..6598bb0 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugAssets/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +new file mode 100644 +index 0000000..5845bde +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +new file mode 100644 +index 0000000..5849a0c +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +@@ -0,0 +1,2 @@ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-track-player_debug.kotlin_module b/node_modules/react-native-track-player/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-track-player_debug.kotlin_module +new file mode 100644 +index 0000000..739eed2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/java_res/debug/processDebugJavaRes/out/META-INF/react-native-track-player_debug.kotlin_module differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/trackplayer/BuildConfig.class b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/trackplayer/BuildConfig.class +new file mode 100644 +index 0000000..8caddf0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/doublesymmetry/trackplayer/BuildConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class +new file mode 100644 +index 0000000..feb5f0f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class +new file mode 100644 +index 0000000..4c911b5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/utils/FFT.class b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/utils/FFT.class +new file mode 100644 +index 0000000..f741e64 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/lovegaoshi/kotlinaudio/utils/FFT.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt b/node_modules/react-native-track-player/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +new file mode 100644 +index 0000000..39c04fb +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/local_only_symbol_list/debug/parseDebugLocalResources/R-def.txt +@@ -0,0 +1,14 @@ ++R_DEF: Internal format may change without notice ++local ++drawable baseline_repeat_24 ++drawable baseline_repeat_one_24 ++drawable forward ++drawable heart_24px ++drawable hearte_24px ++drawable ifl_24px ++drawable rewind ++drawable shuffle_24px ++string playback_channel_name ++string rntp_temporary_channel_id ++string rntp_temporary_channel_name ++xml automotive_app_desc +diff --git a/node_modules/react-native-track-player/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt b/node_modules/react-native-track-player/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +new file mode 100644 +index 0000000..3ccc198 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/manifest_merge_blame_file/debug/processDebugManifest/manifest-merger-blame-debug-report.txt +@@ -0,0 +1,46 @@ ++1 ++2 ++4 ++5 ++6 ++7 ++7-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:5:5-68 ++7-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:5:22-65 ++8 ++8-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:6:5-77 ++8-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:6:22-74 ++9 ++9-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:7:5-8:79 ++9-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:8:9-76 ++10 ++11 ++11-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:10:5-25:19 ++12 ++13 ++14 /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:13:9-23:19 ++15 android:name="com.doublesymmetry.trackplayer.service.MusicService" ++15-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:14:13-79 ++16 android:enabled="true" ++16-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:15:13-35 ++17 android:exported="true" ++17-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:16:13-36 ++18 android:foregroundServiceType="mediaPlayback" > ++18-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:17:13-58 ++19 ++19-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:18:13-22:29 ++20 ++20-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:19:17-77 ++20-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:19:25-74 ++21 ++21-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:20:17-86 ++21-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:20:25-83 ++22 ++22-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:21:17-83 ++22-->/Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:21:25-80 ++23 ++24 ++25 ++26 ++27 +diff --git a/node_modules/react-native-track-player/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml b/node_modules/react-native-track-player/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +new file mode 100644 +index 0000000..3cc6961 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/merged_manifest/debug/processDebugManifest/AndroidManifest.xml +@@ -0,0 +1,27 @@ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json b/node_modules/react-native-track-player/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +new file mode 100644 +index 0000000..0637a08 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/navigation_json/debug/extractDeepLinksDebug/navigation.json +@@ -0,0 +1 @@ ++[] +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt b/node_modules/react-native-track-player/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +new file mode 100644 +index 0000000..08f4ebe +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/nested_resources_validation_report/debug/generateDebugResources/nestedResourcesValidationReport.txt +@@ -0,0 +1 @@ ++0 Warning/Error +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_24.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_24.xml +new file mode 100644 +index 0000000..c535ae2 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_one_24.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_one_24.xml +new file mode 100644 +index 0000000..199be36 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/baseline_repeat_one_24.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/forward.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/forward.xml +new file mode 100644 +index 0000000..32e3663 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/forward.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/heart_24px.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/heart_24px.xml +new file mode 100644 +index 0000000..0d2a36b +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/heart_24px.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/hearte_24px.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/hearte_24px.xml +new file mode 100644 +index 0000000..79944b6 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/hearte_24px.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ifl_24px.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ifl_24px.xml +new file mode 100644 +index 0000000..35712cf +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/ifl_24px.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rewind.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rewind.xml +new file mode 100644 +index 0000000..99c06c4 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/rewind.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/shuffle_24px.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/shuffle_24px.xml +new file mode 100644 +index 0000000..b1f0e7f +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/drawable/shuffle_24px.xml +@@ -0,0 +1,5 @@ ++ ++ ++ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +new file mode 100644 +index 0000000..231cc90 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/values/values.xml +@@ -0,0 +1,6 @@ ++ ++ ++ Now Playing ++ rntp_temporary_channel ++ temporary_channel ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/xml/automotive_app_desc.xml b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/xml/automotive_app_desc.xml +new file mode 100644 +index 0000000..59ee4e3 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/packaged_res/debug/packageDebugResources/xml/automotive_app_desc.xml +@@ -0,0 +1,3 @@ ++ ++ ++ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-track-player_debug.kotlin_module b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-track-player_debug.kotlin_module +new file mode 100644 +index 0000000..739eed2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/react-native-track-player_debug.kotlin_module differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/BuildConfig.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/BuildConfig.class +new file mode 100644 +index 0000000..8caddf0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/BuildConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class +new file mode 100644 +index 0000000..c202172 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class +new file mode 100644 +index 0000000..c11340b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class +new file mode 100644 +index 0000000..b5d58dc +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class +new file mode 100644 +index 0000000..c1c10fe +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/TrackPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/TrackPlayer.class +new file mode 100644 +index 0000000..f28fd5d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/TrackPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class +new file mode 100644 +index 0000000..eeceef4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class +new file mode 100644 +index 0000000..bb9e63c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class +new file mode 100644 +index 0000000..d2bc784 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class +new file mode 100644 +index 0000000..7bbc2ef +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt.class +new file mode 100644 +index 0000000..bdd705d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/extensions/NumberExt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class +new file mode 100644 +index 0000000..b532094 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class +new file mode 100644 +index 0000000..a38aae1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class +new file mode 100644 +index 0000000..a7bb73a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class +new file mode 100644 +index 0000000..2ac3367 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class +new file mode 100644 +index 0000000..9868454 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/State.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/State.class +new file mode 100644 +index 0000000..3810778 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/State.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/Track.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/Track.class +new file mode 100644 +index 0000000..3b1fe88 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/Track.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class +new file mode 100644 +index 0000000..8df2387 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackMetadata.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackMetadata.class +new file mode 100644 +index 0000000..5b02135 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/model/TrackMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class +new file mode 100644 +index 0000000..e778541 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents.class +new file mode 100644 +index 0000000..9067968 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicEvents.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class +new file mode 100644 +index 0000000..7ce80e2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class +new file mode 100644 +index 0000000..960ab2f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class +new file mode 100644 +index 0000000..d21179f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class +new file mode 100644 +index 0000000..3e7b2e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class +new file mode 100644 +index 0000000..0d20ba4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class +new file mode 100644 +index 0000000..0f567da +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class +new file mode 100644 +index 0000000..64cfe29 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class +new file mode 100644 +index 0000000..b964a64 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class +new file mode 100644 +index 0000000..904af42 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class +new file mode 100644 +index 0000000..6c0fa1e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class +new file mode 100644 +index 0000000..29c9089 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class +new file mode 100644 +index 0000000..7823df2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class +new file mode 100644 +index 0000000..94e96cb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class +new file mode 100644 +index 0000000..5ba21c6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class +new file mode 100644 +index 0000000..183e58b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class +new file mode 100644 +index 0000000..63f5a01 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class +new file mode 100644 +index 0000000..78df6a2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class +new file mode 100644 +index 0000000..ec62a0a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class +new file mode 100644 +index 0000000..b558b83 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class +new file mode 100644 +index 0000000..f14ca65 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class +new file mode 100644 +index 0000000..1744b54 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class +new file mode 100644 +index 0000000..d830a0d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class +new file mode 100644 +index 0000000..819312b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class +new file mode 100644 +index 0000000..ae7171c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class +new file mode 100644 +index 0000000..261c2eb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class +new file mode 100644 +index 0000000..992589b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class +new file mode 100644 +index 0000000..f22b3c7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class +new file mode 100644 +index 0000000..f25b5ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class +new file mode 100644 +index 0000000..8154bc0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class +new file mode 100644 +index 0000000..fc5f58f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class +new file mode 100644 +index 0000000..04ef946 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class +new file mode 100644 +index 0000000..87eccd9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class +new file mode 100644 +index 0000000..5e9a431 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class +new file mode 100644 +index 0000000..6d09451 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class +new file mode 100644 +index 0000000..461d8b8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class +new file mode 100644 +index 0000000..0bc7f8d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class +new file mode 100644 +index 0000000..d4ab689 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class +new file mode 100644 +index 0000000..8340806 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class +new file mode 100644 +index 0000000..56dec95 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class +new file mode 100644 +index 0000000..a99f097 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class +new file mode 100644 +index 0000000..cd245bd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class +new file mode 100644 +index 0000000..1cab13e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class +new file mode 100644 +index 0000000..e4ffc03 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class +new file mode 100644 +index 0000000..aa558f1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class +new file mode 100644 +index 0000000..743abb1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class +new file mode 100644 +index 0000000..b28c433 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class +new file mode 100644 +index 0000000..1f59ec7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class +new file mode 100644 +index 0000000..18713e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class +new file mode 100644 +index 0000000..c5fc147 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class +new file mode 100644 +index 0000000..5c174b9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class +new file mode 100644 +index 0000000..a781e46 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class +new file mode 100644 +index 0000000..47de008 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class +new file mode 100644 +index 0000000..b4855d8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class +new file mode 100644 +index 0000000..cd8d0a0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class +new file mode 100644 +index 0000000..01bc39e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule.class +new file mode 100644 +index 0000000..9456ad1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/module/MusicModule.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class +new file mode 100644 +index 0000000..13e7d5a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class +new file mode 100644 +index 0000000..b2702ab +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class +new file mode 100644 +index 0000000..c2bb1a4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class +new file mode 100644 +index 0000000..2b798be +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class +new file mode 100644 +index 0000000..49b6165 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class +new file mode 100644 +index 0000000..e2ecf8e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class +new file mode 100644 +index 0000000..3c957b6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class +new file mode 100644 +index 0000000..223c988 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class +new file mode 100644 +index 0000000..29e7e54 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class +new file mode 100644 +index 0000000..5fa1772 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class +new file mode 100644 +index 0000000..cf83a5f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class +new file mode 100644 +index 0000000..fd25625 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class +new file mode 100644 +index 0000000..3c8c5c8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class +new file mode 100644 +index 0000000..d02389a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class +new file mode 100644 +index 0000000..0c2b417 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class +new file mode 100644 +index 0000000..a0e365f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class +new file mode 100644 +index 0000000..a10af04 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class +new file mode 100644 +index 0000000..984d464 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class +new file mode 100644 +index 0000000..592d8a3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class +new file mode 100644 +index 0000000..b6edc09 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class +new file mode 100644 +index 0000000..a109a15 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class +new file mode 100644 +index 0000000..9465afb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class +new file mode 100644 +index 0000000..0700cb5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class +new file mode 100644 +index 0000000..7d50151 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class +new file mode 100644 +index 0000000..106cd58 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class +new file mode 100644 +index 0000000..46e08a9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService.class +new file mode 100644 +index 0000000..150c408 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/service/MusicService.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class +new file mode 100644 +index 0000000..4287f66 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class +new file mode 100644 +index 0000000..6388cf1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/BundleUtils.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/BundleUtils.class +new file mode 100644 +index 0000000..9e6cd4f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/BundleUtils.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class +new file mode 100644 +index 0000000..bd82dae +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class +new file mode 100644 +index 0000000..26b59da +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class +new file mode 100644 +index 0000000..9b34513 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class +new file mode 100644 +index 0000000..220654f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/RejectionException.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/RejectionException.class +new file mode 100644 +index 0000000..6628b17 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/doublesymmetry/trackplayer/utils/RejectionException.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/EventHolder.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/EventHolder.class +new file mode 100644 +index 0000000..4cf5343 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/EventHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class +new file mode 100644 +index 0000000..2867401 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class +new file mode 100644 +index 0000000..7b68264 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class +new file mode 100644 +index 0000000..2006704 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class +new file mode 100644 +index 0000000..54594d6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class +new file mode 100644 +index 0000000..c303786 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class +new file mode 100644 +index 0000000..54142c4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class +new file mode 100644 +index 0000000..b31a29d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class +new file mode 100644 +index 0000000..8a86f57 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class +new file mode 100644 +index 0000000..820a6f5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class +new file mode 100644 +index 0000000..7179ea6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class +new file mode 100644 +index 0000000..56e11c0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class +new file mode 100644 +index 0000000..8a0ef3e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItem.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItem.class +new file mode 100644 +index 0000000..5381980 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class +new file mode 100644 +index 0000000..a993a96 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class +new file mode 100644 +index 0000000..5b81352 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class +new file mode 100644 +index 0000000..09ad4b3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class +new file mode 100644 +index 0000000..2b167d6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class +new file mode 100644 +index 0000000..c156d8b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class +new file mode 100644 +index 0000000..d09a5d7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class +new file mode 100644 +index 0000000..a4cf2b2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class +new file mode 100644 +index 0000000..b79b5ea +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class +new file mode 100644 +index 0000000..b41f3d4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class +new file mode 100644 +index 0000000..c05bb70 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class +new file mode 100644 +index 0000000..cce606a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class +new file mode 100644 +index 0000000..8fe7978 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/Capability.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/Capability.class +new file mode 100644 +index 0000000..fb2bd76 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/Capability.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CustomButton.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CustomButton.class +new file mode 100644 +index 0000000..3b94318 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/CustomButton.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class +new file mode 100644 +index 0000000..c3c1574 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class +new file mode 100644 +index 0000000..336b100 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class +new file mode 100644 +index 0000000..4337842 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class +new file mode 100644 +index 0000000..52f78ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class +new file mode 100644 +index 0000000..93c138d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class +new file mode 100644 +index 0000000..82cf634 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class +new file mode 100644 +index 0000000..2ffa4f0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class +new file mode 100644 +index 0000000..96887e7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class +new file mode 100644 +index 0000000..35ef1ea +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class +new file mode 100644 +index 0000000..5c137af +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class +new file mode 100644 +index 0000000..16496ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class +new file mode 100644 +index 0000000..48891b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class +new file mode 100644 +index 0000000..da79d11 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaType.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaType.class +new file mode 100644 +index 0000000..4941d37 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/MediaType.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class +new file mode 100644 +index 0000000..efc2b5a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class +new file mode 100644 +index 0000000..2a0601c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class +new file mode 100644 +index 0000000..9b2777e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class +new file mode 100644 +index 0000000..5c53ddf +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class +new file mode 100644 +index 0000000..571a6ce +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class +new file mode 100644 +index 0000000..94d1539 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class +new file mode 100644 +index 0000000..43d275f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class +new file mode 100644 +index 0000000..eceda5d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class +new file mode 100644 +index 0000000..0d529cb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class +new file mode 100644 +index 0000000..3497cdd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class +new file mode 100644 +index 0000000..304b270 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class +new file mode 100644 +index 0000000..259a350 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class +new file mode 100644 +index 0000000..0b193ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class +new file mode 100644 +index 0000000..1c729c9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class +new file mode 100644 +index 0000000..c764e26 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/WakeMode.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/WakeMode.class +new file mode 100644 +index 0000000..77f808e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/models/WakeMode.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class +new file mode 100644 +index 0000000..186a262 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class +new file mode 100644 +index 0000000..033abc2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class +new file mode 100644 +index 0000000..379f683 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class +new file mode 100644 +index 0000000..62310b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class +new file mode 100644 +index 0000000..f83e8c6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class +new file mode 100644 +index 0000000..d6ad722 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class +new file mode 100644 +index 0000000..3d5d0ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class +new file mode 100644 +index 0000000..f3cb614 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class +new file mode 100644 +index 0000000..be5bd8d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class +new file mode 100644 +index 0000000..e264fac +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class +new file mode 100644 +index 0000000..0a04320 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class +new file mode 100644 +index 0000000..feb5f0f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer$ForwardingListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class +new file mode 100644 +index 0000000..4c911b5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/ForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class +new file mode 100644 +index 0000000..416f214 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class +new file mode 100644 +index 0000000..8d558e9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class +new file mode 100644 +index 0000000..a179bdb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class +new file mode 100644 +index 0000000..642f718 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/Cache.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/Cache.class +new file mode 100644 +index 0000000..308f272 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/Cache.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class +new file mode 100644 +index 0000000..0772fb1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class +new file mode 100644 +index 0000000..9053870 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class +new file mode 100644 +index 0000000..72e46bf +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class +new file mode 100644 +index 0000000..db303d2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class +new file mode 100644 +index 0000000..848ccd1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class +new file mode 100644 +index 0000000..8d64089 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class +new file mode 100644 +index 0000000..bc39b7d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class +new file mode 100644 +index 0000000..9c61280 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService.class +new file mode 100644 +index 0000000..f8bd180 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicService.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class +new file mode 100644 +index 0000000..68e8d33 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/FFT.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/FFT.class +new file mode 100644 +index 0000000..f741e64 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/FFT.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class +new file mode 100644 +index 0000000..e0b778a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar +new file mode 100644 +index 0000000..151f8e6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/intermediates/runtime_library_classes_jar/debug/bundleLibRuntimeToJarDebug/classes.jar differ +diff --git a/node_modules/react-native-track-player/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/node_modules/react-native-track-player/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +new file mode 100644 +index 0000000..4ea1b13 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt +@@ -0,0 +1,13 @@ ++com.doublesymmetry.trackplayer ++drawable baseline_repeat_24 ++drawable baseline_repeat_one_24 ++drawable forward ++drawable heart_24px ++drawable hearte_24px ++drawable ifl_24px ++drawable rewind ++drawable shuffle_24px ++string playback_channel_name ++string rntp_temporary_channel_id ++string rntp_temporary_channel_name ++xml automotive_app_desc +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab +new file mode 100644 +index 0000000..bf10dd1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream +new file mode 100644 +index 0000000..e032b69 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len +new file mode 100644 +index 0000000..3dcbc56 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len +new file mode 100644 +index 0000000..48e9f9a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values +new file mode 100644 +index 0000000..e3f5504 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at +new file mode 100644 +index 0000000..265370a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +new file mode 100644 +index 0000000..b27ba6a +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.s +@@ -0,0 +1 @@ ++á3 +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i +new file mode 100644 +index 0000000..349ae22 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab +new file mode 100644 +index 0000000..e180e05 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +new file mode 100644 +index 0000000..260aaa2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +new file mode 100644 +index 0000000..9fa3497 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len +new file mode 100644 +index 0000000..be2ce70 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +new file mode 100644 +index 0000000..292136f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i +new file mode 100644 +index 0000000..9fa3f4a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +new file mode 100644 +index 0000000..b06d6c4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +new file mode 100644 +index 0000000..260aaa2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..9fa3497 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +new file mode 100644 +index 0000000..be2ce70 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +new file mode 100644 +index 0000000..46b0c48 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +new file mode 100644 +index 0000000..9fa3f4a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab +new file mode 100644 +index 0000000..b885880 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream +new file mode 100644 +index 0000000..5b57b32 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len +new file mode 100644 +index 0000000..26579f8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len +new file mode 100644 +index 0000000..93a595b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at +new file mode 100644 +index 0000000..3231e82 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i +new file mode 100644 +index 0000000..8bc2f7a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab +new file mode 100644 +index 0000000..bdf584a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream +new file mode 100644 +index 0000000..88c57d3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len +new file mode 100644 +index 0000000..e5009a4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len +new file mode 100644 +index 0000000..2a17e6e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at +new file mode 100644 +index 0000000..1c6bbc6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i +new file mode 100644 +index 0000000..0967b17 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab +new file mode 100644 +index 0000000..86658ee +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +new file mode 100644 +index 0000000..3409414 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +new file mode 100644 +index 0000000..a64c2fb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +new file mode 100644 +index 0000000..9a272d5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values +new file mode 100644 +index 0000000..0efb49d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +new file mode 100644 +index 0000000..9232f91 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +new file mode 100644 +index 0000000..418f70a +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.s +@@ -0,0 +1 @@ ++þ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +new file mode 100644 +index 0000000..0d52939 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab +new file mode 100644 +index 0000000..9d62894 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream +new file mode 100644 +index 0000000..321d92e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +new file mode 100644 +index 0000000..466716a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len +new file mode 100644 +index 0000000..eb0b8a0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at +new file mode 100644 +index 0000000..41f26f4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i +new file mode 100644 +index 0000000..1c1a979 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab +new file mode 100644 +index 0000000..0fd2f4f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream +new file mode 100644 +index 0000000..9388105 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len +new file mode 100644 +index 0000000..6c58201 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len +new file mode 100644 +index 0000000..8f15452 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values +new file mode 100644 +index 0000000..94ab939 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at +new file mode 100644 +index 0000000..066ebd7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +new file mode 100644 +index 0000000..7e18a38 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.s +@@ -0,0 +1 @@ ++ÀäÙ¬ +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i +new file mode 100644 +index 0000000..ca7106c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab +new file mode 100644 +index 0000000..59a4179 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +new file mode 100644 +index 0000000..e032b69 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +new file mode 100644 +index 0000000..3dcbc56 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len +new file mode 100644 +index 0000000..48e9f9a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +new file mode 100644 +index 0000000..7f39597 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i +new file mode 100644 +index 0000000..349ae22 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab +new file mode 100644 +index 0000000..e0dd433 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream +new file mode 100644 +index 0000000..a10da0a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +new file mode 100644 +index 0000000..6dc1435 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len +new file mode 100644 +index 0000000..be9fd94 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at +new file mode 100644 +index 0000000..d0f27af +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i +new file mode 100644 +index 0000000..aa78068 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab +new file mode 100644 +index 0000000..ce03def +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream +new file mode 100644 +index 0000000..d2462c2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +new file mode 100644 +index 0000000..8f03324 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len +new file mode 100644 +index 0000000..486fe1a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at +new file mode 100644 +index 0000000..3733c80 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i +new file mode 100644 +index 0000000..9a08481 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +new file mode 100644 +index 0000000..b55f912 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab +@@ -0,0 +1,2 @@ ++50 ++0 +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab +new file mode 100644 +index 0000000..3a0b7df +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream +new file mode 100644 +index 0000000..e032b69 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len +new file mode 100644 +index 0000000..3dcbc56 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len +new file mode 100644 +index 0000000..48e9f9a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at +new file mode 100644 +index 0000000..e1e0ed2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i +new file mode 100644 +index 0000000..349ae22 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab +new file mode 100644 +index 0000000..1842f80 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream +new file mode 100644 +index 0000000..845a3a2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len +new file mode 100644 +index 0000000..c4a5886 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len +new file mode 100644 +index 0000000..48e9f9a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at +new file mode 100644 +index 0000000..76aecbc +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i +new file mode 100644 +index 0000000..574f909 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len +new file mode 100644 +index 0000000..131e265 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab +new file mode 100644 +index 0000000..d2d179a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream +new file mode 100644 +index 0000000..104c3c9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len +new file mode 100644 +index 0000000..9898e00 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len +new file mode 100644 +index 0000000..29a7f12 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values +new file mode 100644 +index 0000000..5a85df4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at +new file mode 100644 +index 0000000..6e9a401 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +new file mode 100644 +index 0000000..801712d +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.s +@@ -0,0 +1 @@ ++ák +\ No newline at end of file +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i +new file mode 100644 +index 0000000..79b721e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len +new file mode 100644 +index 0000000..4424406 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +new file mode 100644 +index 0000000..f012ad4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin +new file mode 100644 +index 0000000..0595d7c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ +diff --git a/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +new file mode 100644 +index 0000000..e3e1511 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ +diff --git a/node_modules/react-native-track-player/android/build/outputs/logs/manifest-merger-debug-report.txt b/node_modules/react-native-track-player/android/build/outputs/logs/manifest-merger-debug-report.txt +new file mode 100644 +index 0000000..974a778 +--- /dev/null ++++ b/node_modules/react-native-track-player/android/build/outputs/logs/manifest-merger-debug-report.txt +@@ -0,0 +1,55 @@ ++-- Merging decision tree log --- ++manifest ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:2:1-27:12 ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:2:1-27:12 ++ package ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:3:11-51 ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml ++ xmlns:android ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:2:11-69 ++uses-permission#android.permission.WAKE_LOCK ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:5:5-68 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:5:22-65 ++uses-permission#android.permission.FOREGROUND_SERVICE ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:6:5-77 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:6:22-74 ++uses-permission#android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:7:5-8:79 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:8:9-76 ++application ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:10:5-25:19 ++service#com.doublesymmetry.trackplayer.service.MusicService ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:13:9-23:19 ++ android:enabled ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:15:13-35 ++ android:exported ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:16:13-36 ++ android:foregroundServiceType ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:17:13-58 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:14:13-79 ++intent-filter#action:name:android.intent.action.MEDIA_BUTTON+action:name:android.media.browse.MediaBrowserService+action:name:androidx.media3.session.MediaLibraryService ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:18:13-22:29 ++action#android.intent.action.MEDIA_BUTTON ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:19:17-77 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:19:25-74 ++action#androidx.media3.session.MediaLibraryService ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:20:17-86 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:20:25-83 ++action#android.media.browse.MediaBrowserService ++ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:21:17-83 ++ android:name ++ ADDED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml:21:25-80 ++uses-sdk ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml reason: use-sdk injection requested ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml ++INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml ++ android:targetSdkVersion ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml ++ android:minSdkVersion ++ INJECTED from /Users/riteshshukla/Desktop/development/opensource/Jellify/node_modules/react-native-track-player/android/src/main/AndroidManifest.xml +diff --git a/node_modules/react-native-track-player/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/node_modules/react-native-track-player/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin +new file mode 100644 +index 0000000..b267066 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-track-player_debug.kotlin_module b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-track-player_debug.kotlin_module +new file mode 100644 +index 0000000..739eed2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/META-INF/react-native-track-player_debug.kotlin_module differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class +new file mode 100644 +index 0000000..c202172 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class +new file mode 100644 +index 0000000..c11340b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class +new file mode 100644 +index 0000000..b5d58dc +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService$createReactContextAndScheduleTask$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class +new file mode 100644 +index 0000000..c1c10fe +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/HeadlessJsMediaService.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/TrackPlayer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/TrackPlayer.class +new file mode 100644 +index 0000000..f28fd5d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/TrackPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class +new file mode 100644 +index 0000000..eeceef4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class +new file mode 100644 +index 0000000..bb9e63c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/AudioPlayerStateExtKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class +new file mode 100644 +index 0000000..d2bc784 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/EnumExtensionsKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class +new file mode 100644 +index 0000000..7bbc2ef +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt.class +new file mode 100644 +index 0000000..bdd705d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/extensions/NumberExt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class +new file mode 100644 +index 0000000..b532094 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class +new file mode 100644 +index 0000000..a38aae1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/MetadataAdapter.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class +new file mode 100644 +index 0000000..a7bb73a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/NowPlayingMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class +new file mode 100644 +index 0000000..2ac3367 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class +new file mode 100644 +index 0000000..9868454 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/PlaybackMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/State.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/State.class +new file mode 100644 +index 0000000..3810778 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/State.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/Track.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/Track.class +new file mode 100644 +index 0000000..3b1fe88 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/Track.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class +new file mode 100644 +index 0000000..8df2387 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackAudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackMetadata.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackMetadata.class +new file mode 100644 +index 0000000..5b02135 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/model/TrackMetadata.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class +new file mode 100644 +index 0000000..e778541 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents.class +new file mode 100644 +index 0000000..9067968 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicEvents.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class +new file mode 100644 +index 0000000..7ce80e2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$abandonWakeLock$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class +new file mode 100644 +index 0000000..960ab2f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$acquireWakeLock$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class +new file mode 100644 +index 0000000..d21179f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$add$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class +new file mode 100644 +index 0000000..3e7b2e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$clearNowPlayingMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class +new file mode 100644 +index 0000000..0d20ba4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$crossFadePrepare$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class +new file mode 100644 +index 0000000..0f567da +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutJump$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class +new file mode 100644 +index 0000000..64cfe29 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutNext$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class +new file mode 100644 +index 0000000..b964a64 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPause$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class +new file mode 100644 +index 0000000..904af42 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$fadeOutPrevious$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class +new file mode 100644 +index 0000000..6c0fa1e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class +new file mode 100644 +index 0000000..29c9089 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getActiveTrackIndex$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class +new file mode 100644 +index 0000000..7823df2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getBufferedPosition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class +new file mode 100644 +index 0000000..94e96cb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getDuration$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class +new file mode 100644 +index 0000000..5ba21c6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getLastConnectedPackage$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class +new file mode 100644 +index 0000000..183e58b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPitch$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class +new file mode 100644 +index 0000000..63f5a01 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlayWhenReady$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class +new file mode 100644 +index 0000000..78df6a2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPlaybackState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class +new file mode 100644 +index 0000000..ec62a0a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getPosition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class +new file mode 100644 +index 0000000..b558b83 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getProgress$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class +new file mode 100644 +index 0000000..f14ca65 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getQueue$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class +new file mode 100644 +index 0000000..1744b54 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRate$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class +new file mode 100644 +index 0000000..d830a0d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getRepeatMode$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class +new file mode 100644 +index 0000000..819312b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class +new file mode 100644 +index 0000000..ae7171c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$getVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class +new file mode 100644 +index 0000000..261c2eb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$launchInScope$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class +new file mode 100644 +index 0000000..992589b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$load$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class +new file mode 100644 +index 0000000..f22b3c7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$move$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class +new file mode 100644 +index 0000000..f25b5ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceConnected$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class +new file mode 100644 +index 0000000..8154bc0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$onServiceDisconnected$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class +new file mode 100644 +index 0000000..fc5f58f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$pause$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class +new file mode 100644 +index 0000000..04ef946 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$play$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class +new file mode 100644 +index 0000000..87eccd9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$remove$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class +new file mode 100644 +index 0000000..5e9a431 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$removeUpcomingTracks$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class +new file mode 100644 +index 0000000..6d09451 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$reset$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class +new file mode 100644 +index 0000000..461d8b8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$retry$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class +new file mode 100644 +index 0000000..0bc7f8d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekBy$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class +new file mode 100644 +index 0000000..d4ab689 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$seekTo$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class +new file mode 100644 +index 0000000..8340806 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setAnimatedVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class +new file mode 100644 +index 0000000..56dec95 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTree$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class +new file mode 100644 +index 0000000..a99f097 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setBrowseTreeStyle$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class +new file mode 100644 +index 0000000..cd245bd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPitch$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class +new file mode 100644 +index 0000000..1cab13e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlayWhenReady$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class +new file mode 100644 +index 0000000..e4ffc03 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setPlaybackState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class +new file mode 100644 +index 0000000..aa558f1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setQueue$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class +new file mode 100644 +index 0000000..743abb1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRate$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class +new file mode 100644 +index 0000000..b28c433 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setRepeatMode$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class +new file mode 100644 +index 0000000..1f59ec7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$setVolume$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class +new file mode 100644 +index 0000000..18713e8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skip$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class +new file mode 100644 +index 0000000..c5fc147 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToNext$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class +new file mode 100644 +index 0000000..5c174b9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$skipToPrevious$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class +new file mode 100644 +index 0000000..a781e46 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$stop$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class +new file mode 100644 +index 0000000..47de008 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$switchExoPlayer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class +new file mode 100644 +index 0000000..b4855d8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateMetadataForTrack$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class +new file mode 100644 +index 0000000..cd8d0a0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateNowPlayingMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class +new file mode 100644 +index 0000000..01bc39e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule$updateOptions$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule.class +new file mode 100644 +index 0000000..9456ad1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/module/MusicModule.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class +new file mode 100644 +index 0000000..13e7d5a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$APMMediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class +new file mode 100644 +index 0000000..b2702ab +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$AppKilledPlaybackBehavior.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class +new file mode 100644 +index 0000000..c2bb1a4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class +new file mode 100644 +index 0000000..2b798be +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$MusicBinder.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class +new file mode 100644 +index 0000000..49b6165 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class +new file mode 100644 +index 0000000..e2ecf8e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class +new file mode 100644 +index 0000000..3c957b6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class +new file mode 100644 +index 0000000..223c988 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class +new file mode 100644 +index 0000000..29e7e54 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class +new file mode 100644 +index 0000000..5fa1772 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class +new file mode 100644 +index 0000000..cf83a5f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$3.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class +new file mode 100644 +index 0000000..fd25625 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class +new file mode 100644 +index 0000000..3c8c5c8 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$4.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class +new file mode 100644 +index 0000000..d02389a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class +new file mode 100644 +index 0000000..0c2b417 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$5.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class +new file mode 100644 +index 0000000..a0e365f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class +new file mode 100644 +index 0000000..a10af04 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$6.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class +new file mode 100644 +index 0000000..984d464 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class +new file mode 100644 +index 0000000..592d8a3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$7.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class +new file mode 100644 +index 0000000..b6edc09 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class +new file mode 100644 +index 0000000..a109a15 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$observeEvents$8.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class +new file mode 100644 +index 0000000..9465afb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEvent$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class +new file mode 100644 +index 0000000..0700cb5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$progressUpdateEventFlow$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class +new file mode 100644 +index 0000000..7d50151 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class +new file mode 100644 +index 0000000..106cd58 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class +new file mode 100644 +index 0000000..46e08a9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService$updateOptions$4.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService.class +new file mode 100644 +index 0000000..150c408 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/service/MusicService.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class +new file mode 100644 +index 0000000..4287f66 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker$Observer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class +new file mode 100644 +index 0000000..6388cf1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/AppForegroundTracker.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/BundleUtils.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/BundleUtils.class +new file mode 100644 +index 0000000..9e6cd4f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/BundleUtils.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class +new file mode 100644 +index 0000000..bd82dae +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$decodeBitmap$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class +new file mode 100644 +index 0000000..26b59da +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader$loadBitmap$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class +new file mode 100644 +index 0000000..9b34513 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/CoilBitmapLoader.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class +new file mode 100644 +index 0000000..220654f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/MediaItemBuilderKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/RejectionException.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/RejectionException.class +new file mode 100644 +index 0000000..6628b17 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/doublesymmetry/trackplayer/utils/RejectionException.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/EventHolder.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/EventHolder.class +new file mode 100644 +index 0000000..4cf5343 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/EventHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class +new file mode 100644 +index 0000000..2867401 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioItemTransition$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class +new file mode 100644 +index 0000000..7b68264 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateAudioPlayerState$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class +new file mode 100644 +index 0000000..2006704 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnAudioFocusChanged$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class +new file mode 100644 +index 0000000..54594d6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnCommonMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class +new file mode 100644 +index 0000000..c303786 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnPlayerActionTriggeredExternally$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class +new file mode 100644 +index 0000000..54142c4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updateOnTimedMetadata$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class +new file mode 100644 +index 0000000..b31a29d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlayWhenReadyChange$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class +new file mode 100644 +index 0000000..8a86f57 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackEndedReason$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class +new file mode 100644 +index 0000000..820a6f5 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePlaybackError$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class +new file mode 100644 +index 0000000..7179ea6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder$updatePositionChangedReason$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class +new file mode 100644 +index 0000000..56e11c0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/event/PlayerEventHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class +new file mode 100644 +index 0000000..8a0ef3e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioContentType.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItem.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItem.class +new file mode 100644 +index 0000000..5381980 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class +new file mode 100644 +index 0000000..a993a96 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemHolder.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class +new file mode 100644 +index 0000000..5b81352 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class +new file mode 100644 +index 0000000..09ad4b3 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class +new file mode 100644 +index 0000000..2b167d6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$AUTO.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class +new file mode 100644 +index 0000000..c156d8b +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$QUEUE_CHANGED.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class +new file mode 100644 +index 0000000..d09a5d7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$REPEAT.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class +new file mode 100644 +index 0000000..a4cf2b2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason$SEEK_TO_ANOTHER_AUDIO_ITEM.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class +new file mode 100644 +index 0000000..b79b5ea +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioItemTransitionReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class +new file mode 100644 +index 0000000..b41f3d4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/AudioPlayerState.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class +new file mode 100644 +index 0000000..c05bb70 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class +new file mode 100644 +index 0000000..cce606a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/BufferOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class +new file mode 100644 +index 0000000..8fe7978 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CacheConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/Capability.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/Capability.class +new file mode 100644 +index 0000000..fb2bd76 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/Capability.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CustomButton.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CustomButton.class +new file mode 100644 +index 0000000..3b94318 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/CustomButton.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class +new file mode 100644 +index 0000000..c3c1574 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/DefaultAudioItem.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class +new file mode 100644 +index 0000000..336b100 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/FocusChangeData.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class +new file mode 100644 +index 0000000..4337842 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$CUSTOMACTION.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class +new file mode 100644 +index 0000000..52f78ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$FORWARD.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class +new file mode 100644 +index 0000000..93c138d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$NEXT.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class +new file mode 100644 +index 0000000..82cf634 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PAUSE.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class +new file mode 100644 +index 0000000..2ffa4f0 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PLAY.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class +new file mode 100644 +index 0000000..96887e7 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$PREVIOUS.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class +new file mode 100644 +index 0000000..35ef1ea +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$RATING.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class +new file mode 100644 +index 0000000..5c137af +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$REWIND.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class +new file mode 100644 +index 0000000..16496ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$SEEK.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class +new file mode 100644 +index 0000000..48891b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback$STOP.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class +new file mode 100644 +index 0000000..da79d11 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaType.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaType.class +new file mode 100644 +index 0000000..4941d37 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/MediaType.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class +new file mode 100644 +index 0000000..efc2b5a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayWhenReadyChangeData.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class +new file mode 100644 +index 0000000..2a0601c +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackEndedReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class +new file mode 100644 +index 0000000..9b2777e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlaybackError.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class +new file mode 100644 +index 0000000..5c53ddf +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerConfig.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class +new file mode 100644 +index 0000000..571a6ce +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptions.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class +new file mode 100644 +index 0000000..94d1539 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PlayerOptionsKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class +new file mode 100644 +index 0000000..43d275f +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$AUTO.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class +new file mode 100644 +index 0000000..eceda5d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$QUEUE_CHANGED.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class +new file mode 100644 +index 0000000..0d529cb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class +new file mode 100644 +index 0000000..3497cdd +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SEEK_FAILED.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class +new file mode 100644 +index 0000000..304b270 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$SKIPPED_PERIOD.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class +new file mode 100644 +index 0000000..259a350 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason$UNKNOWN.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class +new file mode 100644 +index 0000000..0b193ed +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/PositionChangedReason.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class +new file mode 100644 +index 0000000..1c729c9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode$Companion.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class +new file mode 100644 +index 0000000..c764e26 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/RepeatMode.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/WakeMode.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/WakeMode.class +new file mode 100644 +index 0000000..77f808e +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/models/WakeMode.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class +new file mode 100644 +index 0000000..186a262 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMFocusListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class +new file mode 100644 +index 0000000..033abc2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$APMForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class +new file mode 100644 +index 0000000..379f683 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$ExampleForwardingPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class +new file mode 100644 +index 0000000..62310b4 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$PlayerListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class +new file mode 100644 +index 0000000..f83e8c6 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class +new file mode 100644 +index 0000000..d6ad722 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$fadeVolume$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class +new file mode 100644 +index 0000000..3d5d0ec +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$initExoPlayer$renderer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class +new file mode 100644 +index 0000000..f3cb614 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class +new file mode 100644 +index 0000000..be5bd8d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$2.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class +new file mode 100644 +index 0000000..e264fac +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer$switchExoPlayer$3.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class +new file mode 100644 +index 0000000..0a04320 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/AudioPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class +new file mode 100644 +index 0000000..416f214 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer$WhenMappings.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class +new file mode 100644 +index 0000000..8d558e9 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/QueuedAudioPlayer.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class +new file mode 100644 +index 0000000..a179bdb +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/APMRenderersFactory.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class +new file mode 100644 +index 0000000..642f718 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/BufferKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/Cache.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/Cache.class +new file mode 100644 +index 0000000..308f272 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/Cache.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class +new file mode 100644 +index 0000000..0772fb1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/FocusManager.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class +new file mode 100644 +index 0000000..9053870 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/player/components/MediaFactory.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class +new file mode 100644 +index 0000000..72e46bf +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/FFTEmitter.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class +new file mode 100644 +index 0000000..db303d2 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener$handleBuffer$1.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class +new file mode 100644 +index 0000000..848ccd1 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListener.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class +new file mode 100644 +index 0000000..8d64089 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/processors/TeeListenerKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class +new file mode 100644 +index 0000000..bc39b7d +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$CustomMediaSessionCallback.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class +new file mode 100644 +index 0000000..9c61280 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService$MusicBinder.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService.class +new file mode 100644 +index 0000000..f8bd180 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicService.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class +new file mode 100644 +index 0000000..68e8d33 +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/service/MusicServiceKt.class differ +diff --git a/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class +new file mode 100644 +index 0000000..e0b778a +Binary files /dev/null and b/node_modules/react-native-track-player/android/build/tmp/kotlin-classes/debug/com/lovegaoshi/kotlinaudio/utils/UtilsKt.class differ +diff --git a/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/module/MusicModule.kt b/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/module/MusicModule.kt +index 5f1f65e..d85c2da 100644 +--- a/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/module/MusicModule.kt ++++ b/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/module/MusicModule.kt +@@ -591,7 +591,7 @@ class MusicModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaM + if (verifyServiceBoundOrReject(callback)) return@launchInScope + + if (index >= 0 && index < musicService.tracks.size) { +- callback.resolve(Arguments.fromBundle(musicService.tracks[index].originalItem)) ++ callback.resolve(Arguments.fromBundle(musicService.tracks[index].originalItem!!)) + } else { + callback.resolve(null) + } +@@ -631,7 +631,7 @@ class MusicModule(reactContext: ReactApplicationContext) : ReactContextBaseJavaM + callback.resolve( + if (musicService.tracks.isEmpty()) null + else Arguments.fromBundle( +- musicService.tracks[musicService.getCurrentTrackIndex()].originalItem ++ musicService.tracks[musicService.getCurrentTrackIndex()].originalItem!! + ) + ) + } +diff --git a/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/utils/BundleUtils.kt b/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/utils/BundleUtils.kt +index 0129306..79da8ad 100644 +--- a/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/utils/BundleUtils.kt ++++ b/node_modules/react-native-track-player/android/src/main/java/com/doublesymmetry/trackplayer/utils/BundleUtils.kt +@@ -12,7 +12,7 @@ import androidx.media3.common.StarRating + import androidx.media3.common.ThumbRating + import com.doublesymmetry.trackplayer.R + import com.facebook.react.views.imagehelper.ResourceDrawableIdHelper +-import com.facebook.react.views.imagehelper.ResourceDrawableIdHelper.Companion.instance ++import com.facebook.react.views.imagehelper.ResourceDrawableIdHelper.instance + + /** + * @author Milen Pivchev @mpivchev diff --git a/src/components/jellify.tsx b/src/components/jellify.tsx index 496fc9e1..b129acad 100644 --- a/src/components/jellify.tsx +++ b/src/components/jellify.tsx @@ -15,7 +15,7 @@ import { } from '@typedigital/telemetrydeck-react' import telemetryDeckConfig from '../../telemetrydeck.json' import glitchtipConfig from '../../glitchtip.json' -import * as Sentry from '@sentry/react-native' +// import * as Sentry from '@sentry/react-native' import { useTheme } from 'tamagui' import Toast from 'react-native-toast-message' import JellifyToastConfig from '../constants/toast.config' @@ -53,9 +53,9 @@ function JellifyLoggingWrapper({ children }: { children: React.ReactNode }): Rea const telemetrydeck = createTelemetryDeck(telemetryDeckConfig) // only initialize Sentry when we actually have a valid DSN and are sending metrics - if (sendMetrics && glitchtipConfig.dsn) { - Sentry.init(glitchtipConfig) - } + // if (sendMetrics && glitchtipConfig.dsn) { + // Sentry.init(glitchtipConfig) + // } return {children} } diff --git a/tsconfig.json b/tsconfig.json index 55c06712..0720566a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@react-native/typescript-config/tsconfig.json", + "extends": "@react-native/typescript-config", "compilerOptions": { "paths": { "@/*": ["./*"] diff --git a/yarn.lock b/yarn.lock index b8c5ed97..9238f4f3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1630,6 +1630,16 @@ fast-glob "^3.3.2" fast-xml-parser "^4.4.1" +"@react-native-community/cli-config-android@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-android/-/cli-config-android-19.0.0.tgz#b1e5194b01474518221aab3b2d236121f97c2713" + integrity sha512-TDd6qdjVjGKuLUEJdPtBJIUOZAJ+oLLiejdrVsfJplJWlFnJVmUAv2M7yT69U+5kh/fGaaHGtsyDekK0B4Gtbg== + dependencies: + "@react-native-community/cli-tools" "19.0.0" + chalk "^4.1.2" + fast-glob "^3.3.2" + fast-xml-parser "^4.4.1" + "@react-native-community/cli-config-apple@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-18.0.0.tgz#ab7ea261e51e3ebe0bacce93bfa010fadd3e2ac2" @@ -1640,6 +1650,16 @@ execa "^5.0.0" fast-glob "^3.3.2" +"@react-native-community/cli-config-apple@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-config-apple/-/cli-config-apple-19.0.0.tgz#f7339c5cd5529bcabdd17480a69dfd9bbbd3f7f2" + integrity sha512-apIOz46ZseD/eL4LjOTR3UH6UEXSj6bHK3SPA6JmcxY8q8brnAjUxzNC7FGeKBcUbeLbRyXplIuxuOrBpcX3QQ== + dependencies: + "@react-native-community/cli-tools" "19.0.0" + chalk "^4.1.2" + execa "^5.0.0" + fast-glob "^3.3.2" + "@react-native-community/cli-config@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-config/-/cli-config-18.0.0.tgz#95252f881b7c9abbffe7bc87b911de2a3ed9a68f" @@ -1684,6 +1704,17 @@ execa "^5.0.0" logkitty "^0.7.1" +"@react-native-community/cli-platform-android@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-android/-/cli-platform-android-19.0.0.tgz#a540f5709dbf0eeff8f987ff283433e71743791b" + integrity sha512-oY5ztWIZxa7EWiQHNG5RXhx/8DA7t4EPiu0qizuz+tV6sAiDcnPQv4hRYF3+wyeIXk/NJjxnYQe9xeQ0Yt1X4A== + dependencies: + "@react-native-community/cli-config-android" "19.0.0" + "@react-native-community/cli-tools" "19.0.0" + chalk "^4.1.2" + execa "^5.0.0" + logkitty "^0.7.1" + "@react-native-community/cli-platform-apple@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-18.0.0.tgz#044b5a57ec81960f5bdbcf44f18f2fe7931fa5f7" @@ -1695,6 +1726,17 @@ execa "^5.0.0" fast-xml-parser "^4.4.1" +"@react-native-community/cli-platform-apple@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-apple/-/cli-platform-apple-19.0.0.tgz#6cc10764accafcc00f5cdce001738e8886504a61" + integrity sha512-nSuPAaGSDxhsIUzr3JSa9AaQ3f5si6S2+J7FJxTLGuJ2hXrbDXtwOUmtmln09U8cg8Yewa9zh6rjTLVSsFvbAA== + dependencies: + "@react-native-community/cli-config-apple" "19.0.0" + "@react-native-community/cli-tools" "19.0.0" + chalk "^4.1.2" + execa "^5.0.0" + fast-xml-parser "^4.4.1" + "@react-native-community/cli-platform-ios@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-18.0.0.tgz#75ccaddf974d5e3ca65a9d7ace0b4cafe7df4a44" @@ -1702,6 +1744,13 @@ dependencies: "@react-native-community/cli-platform-apple" "18.0.0" +"@react-native-community/cli-platform-ios@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-platform-ios/-/cli-platform-ios-19.0.0.tgz#cda8518875ae61217a41a6950ec4b70c1766280a" + integrity sha512-oi8p8ccbnk9VYMAjqowB2zicUbCyl/DwD0mdTMivX/YQNIflAIFvzq6p76EP4J3E0/IPu9S0IpgVPCBdTyiSlg== + dependencies: + "@react-native-community/cli-platform-apple" "19.0.0" + "@react-native-community/cli-server-api@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-server-api/-/cli-server-api-18.0.0.tgz#172df67c473361e060689a50d7aed93efeae4456" @@ -1734,6 +1783,22 @@ prompts "^2.4.2" semver "^7.5.2" +"@react-native-community/cli-tools@19.0.0": + version "19.0.0" + resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-19.0.0.tgz#cf51c11c0e08cc0bf397c610ee7170f6cc278d2c" + integrity sha512-O6qGE+1xZOOJY43CcjL3E6xtVx5m6TDEVzysIJ0jHjjE1QqYijx6W8VuWebmA08MfX4JCE2jzUrwx2Ns2GguGg== + dependencies: + "@vscode/sudo-prompt" "^9.0.0" + appdirsjs "^1.2.4" + chalk "^4.1.2" + execa "^5.0.0" + find-up "^5.0.0" + launch-editor "^2.9.1" + mime "^2.4.1" + ora "^5.4.1" + prompts "^2.4.2" + semver "^7.5.2" + "@react-native-community/cli-types@18.0.0": version "18.0.0" resolved "https://registry.yarnpkg.com/@react-native-community/cli-types/-/cli-types-18.0.0.tgz#225159de80c0b6a39f993fa003030c2eca2add00" @@ -1772,23 +1837,23 @@ resolved "https://registry.yarnpkg.com/@react-native-masked-view/masked-view/-/masked-view-0.3.2.tgz#7064533a573e3539ec912f59c1f457371bf49dd9" integrity sha512-XwuQoW7/GEgWRMovOQtX3A4PrXhyaZm0lVUiY8qJDvdngjLms9Cpdck6SmGAUNqQwcj2EadHC1HwL0bEyoa/SQ== -"@react-native/assets-registry@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.79.2.tgz#731963e664c8543f5b277e56c058bde612b69f50" - integrity sha512-5h2Z7/+/HL/0h88s0JHOdRCW4CXMCJoROxqzHqxdrjGL6EBD1DdaB4ZqkCOEVSW4Vjhir5Qb97C8i/MPWEYPtg== +"@react-native/assets-registry@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/assets-registry/-/assets-registry-0.80.0.tgz#7c03e0cf07fdd9e4a54ce2bbe8ae49f48440d422" + integrity sha512-MlScsKAz99zoYghe5Rf5mUqsqz2rMB02640NxtPtBMSHNdGxxRlWu/pp1bFexDa1DYJwyIjnLgt3Z/Y90ikHfw== -"@react-native/babel-plugin-codegen@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.79.2.tgz#f3f86766a01487aaaa623ec62514af4c84400953" - integrity sha512-d+NB7Uosn2ZWd4O4+7ZkB6q1a+0z2opD/4+Bzhk/Tv6fc5FrSftK2Noqxvo3/bhbdGFVPxf0yvLE8et4W17x/Q== +"@react-native/babel-plugin-codegen@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/babel-plugin-codegen/-/babel-plugin-codegen-0.80.0.tgz#0515c34aca082cf629223abf02fa61e0f93ffa5e" + integrity sha512-LXd766LHCR/79WmhIg4zUB9jRosgw8xGJ1QnYOoef1rA7vCdubC23nhUxF+PJdfTdAl1cqX4u1dhZcjg6yXjRg== dependencies: "@babel/traverse" "^7.25.3" - "@react-native/codegen" "0.79.2" + "@react-native/codegen" "0.80.0" -"@react-native/babel-preset@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.79.2.tgz#5a683a6efeea357a326f70c84a881be2bafbeae3" - integrity sha512-/HNu869oUq4FUXizpiNWrIhucsYZqu0/0spudJEzk9SEKar0EjVDP7zkg/sKK+KccNypDQGW7nFXT8onzvQ3og== +"@react-native/babel-preset@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/babel-preset/-/babel-preset-0.80.0.tgz#6b5ad39fdf699928ade2fd62fdf2e24bceac34cd" + integrity sha512-ZgwbSOUPNKpIsZ6E0y3bncahh2vBf5V1URNV0tr9PBtu/LbGJ12nBKSH7gqrFdRzfEwKlhc0vP8p1oJt+A5mpw== dependencies: "@babel/core" "^7.25.2" "@babel/plugin-proposal-export-default-from" "^7.24.7" @@ -1831,66 +1896,66 @@ "@babel/plugin-transform-typescript" "^7.25.2" "@babel/plugin-transform-unicode-regex" "^7.24.7" "@babel/template" "^7.25.0" - "@react-native/babel-plugin-codegen" "0.79.2" - babel-plugin-syntax-hermes-parser "0.25.1" + "@react-native/babel-plugin-codegen" "0.80.0" + babel-plugin-syntax-hermes-parser "0.28.1" babel-plugin-transform-flow-enums "^0.0.2" react-refresh "^0.14.0" -"@react-native/codegen@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.79.2.tgz#75270d8162e78c02b0272396a3c6942e39e8703d" - integrity sha512-8JTlGLuLi1p8Jx2N/enwwEd7/2CfrqJpv90Cp77QLRX3VHF2hdyavRIxAmXMwN95k+Me7CUuPtqn2X3IBXOWYg== +"@react-native/codegen@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/codegen/-/codegen-0.80.0.tgz#119e53099281acd6fe3c515ca7bfd00ddcfcf05c" + integrity sha512-X9TsPgytoUkNrQjzAZh4dXa4AuouvYT0NzYyvnjw1ry4LESCZtKba+eY4x3+M30WPR52zjgu+UFL//14BSdCCA== dependencies: glob "^7.1.1" - hermes-parser "0.25.1" + hermes-parser "0.28.1" invariant "^2.2.4" nullthrows "^1.1.1" yargs "^17.6.2" -"@react-native/community-cli-plugin@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.79.2.tgz#d3a0efbdfb554cf3a7e9bfb27865a7caeeeaa1b3" - integrity sha512-E+YEY2dL+68HyR2iahsZdyBKBUi9QyPyaN9vsnda1jNgCjNpSPk2yAF5cXsho+zKK5ZQna3JSeE1Kbi2IfGJbw== +"@react-native/community-cli-plugin@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/community-cli-plugin/-/community-cli-plugin-0.80.0.tgz#58a8e4300addecb01dfc186c23b60e47ac3e6fb7" + integrity sha512-uadfVvzZfz5tGpqwslL12i+rELK9m6cLhtqICX0JQvS7Bu12PJwrozhKzEzIYwN9i3wl2dWrKDUr08izt7S9Iw== dependencies: - "@react-native/dev-middleware" "0.79.2" + "@react-native/dev-middleware" "0.80.0" chalk "^4.0.0" - debug "^2.2.0" + debug "^4.4.0" invariant "^2.2.4" - metro "^0.82.0" - metro-config "^0.82.0" - metro-core "^0.82.0" + metro "^0.82.2" + metro-config "^0.82.2" + metro-core "^0.82.2" semver "^7.1.3" -"@react-native/debugger-frontend@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.79.2.tgz#1377de6d9cabe5455bf332e06408167da5f60c19" - integrity sha512-cGmC7X6kju76DopSBNc+PRAEetbd7TWF9J9o84hOp/xL3ahxR2kuxJy0oJX8Eg8oehhGGEXTuMKHzNa3rDBeSg== +"@react-native/debugger-frontend@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/debugger-frontend/-/debugger-frontend-0.80.0.tgz#ebdb36e73c0cb2eee52c97dcf17d78dbc1ca9689" + integrity sha512-lpu9Z3xtKUaKFvEcm5HSgo1KGfkDa/W3oZHn22Zy0WQ9MiOu2/ar1txgd1wjkoNiK/NethKcRdCN7mqnc6y2mA== -"@react-native/dev-middleware@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.79.2.tgz#f09f1a75b4cd0b56dfd82a07bf41157a9c45619c" - integrity sha512-9q4CpkklsAs1L0Bw8XYCoqqyBSrfRALGEw4/r0EkR38Y/6fVfNfdsjSns0pTLO6h0VpxswK34L/hm4uK3MoLHw== +"@react-native/dev-middleware@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/dev-middleware/-/dev-middleware-0.80.0.tgz#152b7c8f80a93b99ce6f5379855f4094afd71772" + integrity sha512-lLyTnJ687A5jF3fn8yR/undlCis3FG+N/apQ+Q0Lcl+GV6FsZs0U5H28YmL6lZtjOj4TLek6uGPMPmZasHx7cQ== dependencies: "@isaacs/ttlcache" "^1.4.1" - "@react-native/debugger-frontend" "0.79.2" + "@react-native/debugger-frontend" "0.80.0" chrome-launcher "^0.15.2" chromium-edge-launcher "^0.2.0" connect "^3.6.5" - debug "^2.2.0" + debug "^4.4.0" invariant "^2.2.4" nullthrows "^1.1.1" open "^7.0.3" serve-static "^1.16.2" ws "^6.2.3" -"@react-native/eslint-config@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.79.2.tgz#b42c95fe2399aae84209356b0971dd68c4149e4e" - integrity sha512-ukb9qGvrFC/3YVlWVy/GGM+auKdGIsbbumCyfOYPfUdhHFWA/twz1zK4bJQmCZ38iINuTENYedRzoE+U57GclA== +"@react-native/eslint-config@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.80.0.tgz#f32ffcf614c420259ca67cdc8bf35c303c2007ca" + integrity sha512-bd0GOcG++qIKzEngeyeNrGaDWWHtB8CpC5zbpYho2TTWpJDxBRcoPAzBdpPkxQtpBMdXyYRZMENRp6Khrg0YYQ== dependencies: "@babel/core" "^7.25.2" "@babel/eslint-parser" "^7.25.1" - "@react-native/eslint-plugin" "0.79.2" + "@react-native/eslint-plugin" "0.80.0" "@typescript-eslint/eslint-plugin" "^7.1.1" "@typescript-eslint/parser" "^7.1.1" eslint-config-prettier "^8.5.0" @@ -1898,63 +1963,63 @@ eslint-plugin-ft-flow "^2.0.1" eslint-plugin-jest "^27.9.0" eslint-plugin-react "^7.30.1" - eslint-plugin-react-hooks "^4.6.0" + eslint-plugin-react-hooks "^5.2.0" eslint-plugin-react-native "^4.0.0" -"@react-native/eslint-plugin@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.79.2.tgz#23d18226bb4335404e6db561bf1a47ac7d1380ed" - integrity sha512-Abu+0OuwTje9E5eQOvYpTUuXvDgGjHeFhnfNVY9BXalBK8OrX20EFlonWvIbFqii136eS5KLEBm2Wjqk2V5XJg== +"@react-native/eslint-plugin@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.80.0.tgz#8f52a7b15509b61ace17fff41cf802505e990dc5" + integrity sha512-4kFD3M/zGqKdKyeevnTdhgAhNCj89VflDfv2wElo4jOb07xkR6VlEymv/6mZX3tdP/N5ukP2SZB+FDZH1GxBTg== -"@react-native/gradle-plugin@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.79.2.tgz#d41d4e2c63baf688a2b47652c6260f2a2f1ec091" - integrity sha512-6MJFemrwR0bOT0QM+2BxX9k3/pvZQNmJ3Js5pF/6owsA0cUDiCO57otiEU8Fz+UywWEzn1FoQfOfQ8vt2GYmoA== +"@react-native/gradle-plugin@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/gradle-plugin/-/gradle-plugin-0.80.0.tgz#ec7ed5eb6c274068aa83b188b0192c584f1881ef" + integrity sha512-drmS68rabSMOuDD+YsAY2luNT8br82ycodSDORDqAg7yWQcieHMp4ZUOcdOi5iW+JCqobablT/b6qxcrBg+RaA== -"@react-native/js-polyfills@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.79.2.tgz#15eb4da0fe9e8d61d2980d08fd06b5f49e133b0f" - integrity sha512-IaY87Ckd4GTPMkO1/Fe8fC1IgIx3vc3q9Tyt/6qS3Mtk9nC0x9q4kSR5t+HHq0/MuvGtu8HpdxXGy5wLaM+zUw== +"@react-native/js-polyfills@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/js-polyfills/-/js-polyfills-0.80.0.tgz#8016b6891955f61d20e989c50205ce0b3029ad01" + integrity sha512-dMX7IcBuwghySTgIeK8q03tYz/epg5ScGmJEfBQAciuhzMDMV1LBR/9wwdgD73EXM/133yC5A+TlHb3KQil4Ew== -"@react-native/metro-babel-transformer@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.79.2.tgz#bd7c1adbf5b2423a612c5752d554914cafcbd667" - integrity sha512-Bch+UhA5LCrcI/No0rGR6ZS1gOl5Y6Vcoe9MG3NoC0S2lAd96CN0BEhbLQgzR/KmCz9lYT38+3CYzVKKTPLhZA== +"@react-native/metro-babel-transformer@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/metro-babel-transformer/-/metro-babel-transformer-0.80.0.tgz#96d6c9c6a4b9122d8ab490313eddb297937ba157" + integrity sha512-5TldnaJE15IUNnZhjAelRz4+6qATlSO9yuzLqN1Y47qfJrAl/2lrI4KdSjFfvUaWrhezi94Aly1OKSJm9fjrXg== dependencies: "@babel/core" "^7.25.2" - "@react-native/babel-preset" "0.79.2" - hermes-parser "0.25.1" + "@react-native/babel-preset" "0.80.0" + hermes-parser "0.28.1" nullthrows "^1.1.1" -"@react-native/metro-config@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.79.2.tgz#5e5c6491e9c767cacbadeb961e4a6fbc3f3bdda1" - integrity sha512-0yHHZxYnaz/CsZfS8Jxz45TVvI6oQAU1wNGuaxEgoMby0KcRVnPXaIkMh/PltxGCBscmueKhiQFNLaoeTTezuw== +"@react-native/metro-config@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/metro-config/-/metro-config-0.80.0.tgz#86617ebc6c7aeb1f8cc00ca3f7177675d412ddef" + integrity sha512-LJ1ZC9vs/B3wez6BsOIgJ3iw7N4QalMpiT/fb5b66L4vHUGqVucOWNUwpxbDb1m1/wlhTa8AljiAdjt401sFjA== dependencies: - "@react-native/js-polyfills" "0.79.2" - "@react-native/metro-babel-transformer" "0.79.2" - metro-config "^0.82.0" - metro-runtime "^0.82.0" + "@react-native/js-polyfills" "0.80.0" + "@react-native/metro-babel-transformer" "0.80.0" + metro-config "^0.82.2" + metro-runtime "^0.82.2" "@react-native/normalize-color@^2.1.0": version "2.1.0" resolved "https://registry.yarnpkg.com/@react-native/normalize-color/-/normalize-color-2.1.0.tgz#939b87a9849e81687d3640c5efa2a486ac266f91" integrity sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA== -"@react-native/normalize-colors@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.79.2.tgz#9ab70ca257c7411e4ab74cf7f91332c27d39cc6f" - integrity sha512-+b+GNrupWrWw1okHnEENz63j7NSMqhKeFMOyzYLBwKcprG8fqJQhDIGXfizKdxeIa5NnGSAevKL1Ev1zJ56X8w== +"@react-native/normalize-colors@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/normalize-colors/-/normalize-colors-0.80.0.tgz#2a0f4346550c5ab18a2ec956112d483d802b3029" + integrity sha512-bJZDSopadjJxMDvysc634eTfLL4w7cAx5diPe14Ez5l+xcKjvpfofS/1Ja14DlgdMJhxGd03MTXlrxoWust3zg== "@react-native/typescript-config@0.79.2": version "0.79.2" resolved "https://registry.yarnpkg.com/@react-native/typescript-config/-/typescript-config-0.79.2.tgz#02cb07db89ef80159b3c1b3e82e81b0c0d5ce908" integrity sha512-krHAkkPRCOEhuqN3iwRUwIyE1rAnUQ9//huzUc1ukcoQ7Y4qFxM6amhNloAmYn4QH1Ay6o5At00VbEh2xoHISA== -"@react-native/virtualized-lists@0.79.2": - version "0.79.2" - resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.79.2.tgz#ed5a419a30b7ddec978b7816ff698a9d85507e15" - integrity sha512-9G6ROJeP+rdw9Bvr5ruOlag11ET7j1z/En1riFFNo6W3xZvJY+alCuH1ttm12y9+zBm4n8jwCk4lGhjYaV4dKw== +"@react-native/virtualized-lists@0.80.0": + version "0.80.0" + resolved "https://registry.yarnpkg.com/@react-native/virtualized-lists/-/virtualized-lists-0.80.0.tgz#6f2dc00a3e86f4bc9b34be538c18ca92c5b42dcb" + integrity sha512-d9zZdPS/ZRexVAkxo1eRp85U7XnnEpXA1ZpSomRKxBuStYKky1YohfEX5YD5MhphemKK24tT7JR4UhaLlmeX8Q== dependencies: invariant "^2.2.4" nullthrows "^1.1.1" @@ -2035,153 +2100,6 @@ resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8" integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g== -"@sentry-internal/browser-utils@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-8.54.0.tgz#2d68c7fa843db867ed98059faf1a750be3eca95a" - integrity sha512-DKWCqb4YQosKn6aD45fhKyzhkdG7N6goGFDeyTaJFREJDFVDXiNDsYZu30nJ6BxMM7uQIaARhPAC5BXfoED3pQ== - dependencies: - "@sentry/core" "8.54.0" - -"@sentry-internal/feedback@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-8.54.0.tgz#52c3a63aa5b520eca7acfa1376621e8441984126" - integrity sha512-nQqRacOXoElpE0L0ADxUUII0I3A94niqG9Z4Fmsw6057QvyrV/LvTiMQBop6r5qLjwMqK+T33iR4/NQI5RhsXQ== - dependencies: - "@sentry/core" "8.54.0" - -"@sentry-internal/replay-canvas@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-8.54.0.tgz#e57a3893db2bb0ea7ad9dc2a804bb035142fe3ba" - integrity sha512-K/On3OAUBeq/TV2n+1EvObKC+WMV9npVXpVyJqCCyn8HYMm8FUGzuxeajzm0mlW4wDTPCQor6mK9/IgOquUzCw== - dependencies: - "@sentry-internal/replay" "8.54.0" - "@sentry/core" "8.54.0" - -"@sentry-internal/replay@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-8.54.0.tgz#b92990a51ffbe8d92998ff8188db9e3a6f9d1e18" - integrity sha512-8xuBe06IaYIGJec53wUC12tY2q4z2Z0RPS2s1sLtbA00EvK1YDGuXp96IDD+HB9mnDMrQ/jW5f97g9TvPsPQUg== - dependencies: - "@sentry-internal/browser-utils" "8.54.0" - "@sentry/core" "8.54.0" - -"@sentry/babel-plugin-component-annotate@3.3.1": - version "3.3.1" - resolved "https://registry.yarnpkg.com/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-3.3.1.tgz#baecd89396cbb4659565a4e8efe7f0a71b19262a" - integrity sha512-5GOxGT7lZN+I8A7Vp0rWY+726FDKEw8HnFiebe51rQrMbfGfCu2Aw9uSM0nT9OG6xhV6WvGccIcCszTPs4fUZQ== - -"@sentry/browser@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-8.54.0.tgz#5487075908aac564892e689e1b6d233fdb314f5b" - integrity sha512-BgUtvxFHin0fS0CmJVKTLXXZcke0Av729IVfi+2fJ4COX8HO7/HAP02RKaSQGmL2HmvWYTfNZ7529AnUtrM4Rg== - dependencies: - "@sentry-internal/browser-utils" "8.54.0" - "@sentry-internal/feedback" "8.54.0" - "@sentry-internal/replay" "8.54.0" - "@sentry-internal/replay-canvas" "8.54.0" - "@sentry/core" "8.54.0" - -"@sentry/cli-darwin@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-darwin/-/cli-darwin-2.43.1.tgz#356ea4d334a373a87927393f1ff9b047dee99185" - integrity sha512-622g/UyhTi1zC0Nnnbto75gNkExwwjv1cnRA4ERwfPgiOI3UK0/j+m4CcosqrfdTK55pv+SiifOlmvDPZnMIZw== - -"@sentry/cli-linux-arm64@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.43.1.tgz#02918f83d962a9af279dbce0eab6bd2fa57ac033" - integrity sha512-c1P7eZqdDwRlePBSQSgWYUi80W5ywvG/XxZFVecjdHDEYlo2BJTRirqZTqzKzI/Ekk8x5hOxNuBbP+m9FluDMw== - -"@sentry/cli-linux-arm@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-linux-arm/-/cli-linux-arm-2.43.1.tgz#e7bf2c71b6f376581b08034f7d410b3492314c52" - integrity sha512-eQKcfqMR9bg8HKR9UCwm8x3lGBMUu1wCQow2BwEX4NbY1GzniSHNH4MBY2ERpOsfCA0LM5xEWQk/QFXexz1Dhw== - -"@sentry/cli-linux-i686@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-linux-i686/-/cli-linux-i686-2.43.1.tgz#ae495afe985f2b9738ec8277cf84361d6ead1501" - integrity sha512-VRhzmEOeA/nsQHkf3Jt8mbgZmdbAWURM18Y1uXVRI/mQzZaz6YAZ+IzQ6gANpUk+UfTdf1q0unZSAIOUuu19gA== - -"@sentry/cli-linux-x64@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-linux-x64/-/cli-linux-x64-2.43.1.tgz#05a245a995387197f327251674069c553a3f53b6" - integrity sha512-c8G4zdzxzdPOz+tV1LNwUz5UsPNnhEE13kMPesF81liawwznnBsDfeKf6t/87Eem4BgAPdsFlnqnffi4BdqkZQ== - -"@sentry/cli-win32-arm64@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-win32-arm64/-/cli-win32-arm64-2.43.1.tgz#5fdea8285998e6915a0588ebceed87a0afb2a05c" - integrity sha512-K+9td351lzUn51R/oHotyEkq7nzKWBm2ffhVAe4HXNh72MjhyIvonAhQUrGawIjn/aLHO+hq9iNaEXbCu6Hulg== - -"@sentry/cli-win32-i686@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-win32-i686/-/cli-win32-i686-2.43.1.tgz#42907778a1352a87ebe7f1de8d098cb82a7a447f" - integrity sha512-Co7kj0o16xcUZRZY+VwMgpdDvOY2xAbR5Xg5NXv73nXdALgGWf+G5bntFz3baNmaSOYWKJjvZT7a+YLwe/DihQ== - -"@sentry/cli-win32-x64@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli-win32-x64/-/cli-win32-x64-2.43.1.tgz#a26e161e2ce3e3b7e262e4da197c3905b6f291c9" - integrity sha512-uH7l4FXc6s0GoJeriU6kQOYzREqDGB7b16XbTKY+lnhMNvBgP2aaOUQ9yRLbEHeSSg/112SQeolCnF2GwTmoKw== - -"@sentry/cli@2.43.1": - version "2.43.1" - resolved "https://registry.yarnpkg.com/@sentry/cli/-/cli-2.43.1.tgz#8b34d2b24d661aef55395a40ac72413a813a626d" - integrity sha512-5jg8cy4LlPnmgI6FkxClDRB5hFWzmlq7VZqj5o6Zdm5KRywzCn2s18GXyC1LPf6MFHw3AZ/K2h5pUZmJdWUBFQ== - dependencies: - https-proxy-agent "^5.0.0" - node-fetch "^2.6.7" - progress "^2.0.3" - proxy-from-env "^1.1.0" - which "^2.0.2" - optionalDependencies: - "@sentry/cli-darwin" "2.43.1" - "@sentry/cli-linux-arm" "2.43.1" - "@sentry/cli-linux-arm64" "2.43.1" - "@sentry/cli-linux-i686" "2.43.1" - "@sentry/cli-linux-x64" "2.43.1" - "@sentry/cli-win32-arm64" "2.43.1" - "@sentry/cli-win32-i686" "2.43.1" - "@sentry/cli-win32-x64" "2.43.1" - -"@sentry/core@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry/core/-/core-8.54.0.tgz#a2ebec965cadcb6de89e116689feeef79d5862a6" - integrity sha512-03bWf+D1j28unOocY/5FDB6bUHtYlm6m6ollVejhg45ZmK9iPjdtxNWbrLsjT1WRym0Tjzowu+A3p+eebYEv0Q== - -"@sentry/react-native@^6.13.1": - version "6.13.1" - resolved "https://registry.yarnpkg.com/@sentry/react-native/-/react-native-6.13.1.tgz#9dea4ac9422c8371e76255b9111ea3548a0bc215" - integrity sha512-mbWP4bmy8Ebd9dTx5Desb91btEIJXYGmvalqp0AYxo8kuunjJlTeijcvAVDgqD7omOXFitHQWB8jl2M1Pn3f6g== - dependencies: - "@sentry/babel-plugin-component-annotate" "3.3.1" - "@sentry/browser" "8.54.0" - "@sentry/cli" "2.43.1" - "@sentry/core" "8.54.0" - "@sentry/react" "8.54.0" - "@sentry/types" "8.54.0" - "@sentry/utils" "8.54.0" - -"@sentry/react@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry/react/-/react-8.54.0.tgz#16cec103b5d5697bdfebacf6e2d35f19699b3ab3" - integrity sha512-42T/fp8snYN19Fy/2P0Mwotu4gcdy+1Lx+uYCNcYP1o7wNGigJ7qb27sW7W34GyCCHjoCCfQgeOqDQsyY8LC9w== - dependencies: - "@sentry/browser" "8.54.0" - "@sentry/core" "8.54.0" - hoist-non-react-statics "^3.3.2" - -"@sentry/types@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry/types/-/types-8.54.0.tgz#1d57bb094443081de4e0d8b638e6ebc40f5ddd36" - integrity sha512-wztdtr7dOXQKi0iRvKc8XJhJ7HaAfOv8lGu0yqFOFwBZucO/SHnu87GOPi8mvrTiy1bentQO5l+zXWAaMvG4uw== - dependencies: - "@sentry/core" "8.54.0" - -"@sentry/utils@8.54.0": - version "8.54.0" - resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-8.54.0.tgz#5e28e03a249451b4a55200a0787f4e2c59bab2c5" - integrity sha512-JL8UDjrsKxKclTdLXfuHfE7B3KbrAPEYP7tMyN/xiO2vsF6D84fjwYyalO0ZMtuFZE6vpSze8ZOLEh6hLnPYsw== - dependencies: - "@sentry/core" "8.54.0" - "@shopify/flash-list@^1.8.0": version "1.8.0" resolved "https://registry.yarnpkg.com/@shopify/flash-list/-/flash-list-1.8.0.tgz#d271d3ca49acf9f53812594f0c4d24a994eb95e5" @@ -3353,10 +3271,10 @@ dependencies: "@types/react" "*" -"@types/react-test-renderer@19.0.0": - version "19.0.0" - resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-19.0.0.tgz#4cdeace7561bf359ee167f51704f420c07d4bd8d" - integrity sha512-qDVnNybqFm2eZKJ4jD34EvRd6VHD67KjgnWaEMM0Id9L22EpWe3nOSVKHWL1XWRCxUWe3lhXwlEeCKD1BlJCQA== +"@types/react-test-renderer@19.1.0": + version "19.1.0" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-19.1.0.tgz#1d0af8f2e1b5931e245b8b5b234d1502b854dc10" + integrity sha512-XD0WZrHqjNrxA/MaR9O22w/RNidWR9YZmBdRGI7wcnWGrv/3dA8wKCJ8m63Sn+tLJhcjmuhOi629N66W6kgWzQ== dependencies: "@types/react" "*" @@ -3568,13 +3486,6 @@ acorn@^8.14.0, acorn@^8.8.2: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.1.tgz#721d5dc10f7d5b5609a891773d47731796935dfb" integrity sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg== -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - agent-base@^7.1.2: version "7.1.3" resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1" @@ -3915,12 +3826,12 @@ babel-plugin-polyfill-regenerator@^0.6.1: dependencies: "@babel/helper-define-polyfill-provider" "^0.6.4" -babel-plugin-syntax-hermes-parser@0.25.1: - version "0.25.1" - resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.25.1.tgz#58b539df973427fcfbb5176a3aec7e5dee793cb0" - integrity sha512-IVNpGzboFLfXZUAwkLFcI/bnqVbwky0jP3eBno4HKtqvQJAHBLdgxiG6lQ4to0+Q/YCN3PO0od5NZwIKyY4REQ== +babel-plugin-syntax-hermes-parser@0.28.1: + version "0.28.1" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-hermes-parser/-/babel-plugin-syntax-hermes-parser-0.28.1.tgz#9e80a774ddb8038307a62316486669c668fb3568" + integrity sha512-meT17DOuUElMNsL5LZN56d+KBp22hb0EfxWfuPUeoSi54e40v1W4C2V36P75FpsH9fVEfDKpw5Nnkahc8haSsQ== dependencies: - hermes-parser "0.25.1" + hermes-parser "0.28.1" babel-plugin-transform-flow-enums@^0.0.2: version "0.0.2" @@ -4541,7 +4452,7 @@ dayjs@^1.8.15: resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.13.tgz#92430b0139055c3ebb60150aa13e860a4b5a366c" integrity sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg== -debug@2.6.9, debug@^2.2.0, debug@^2.6.9: +debug@2.6.9, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -5002,10 +4913,10 @@ eslint-plugin-prettier@^5.4.0: prettier-linter-helpers "^1.0.0" synckit "^0.11.0" -eslint-plugin-react-hooks@^4.6.0: - version "4.6.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596" - integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ== +eslint-plugin-react-hooks@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz#1be0080901e6ac31ce7971beed3d3ec0a423d9e3" + integrity sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg== eslint-plugin-react-native-globals@^0.1.1: version "0.1.2" @@ -5172,7 +5083,7 @@ etag@^1.8.1, etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== -event-target-shim@^5.0.0, event-target-shim@^5.0.1: +event-target-shim@^5.0.0: version "5.0.1" resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== @@ -5794,23 +5705,11 @@ hasown@^2.0.2: dependencies: function-bind "^1.1.2" -hermes-estree@0.25.1: - version "0.25.1" - resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.25.1.tgz#6aeec17d1983b4eabf69721f3aa3eb705b17f480" - integrity sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw== - hermes-estree@0.28.1: version "0.28.1" resolved "https://registry.yarnpkg.com/hermes-estree/-/hermes-estree-0.28.1.tgz#631e6db146b06e62fc1c630939acf4a3c77d1b24" integrity sha512-w3nxl/RGM7LBae0v8LH2o36+8VqwOZGv9rX1wyoWT6YaKZLqpJZ0YQ5P0LVr3tuRpf7vCx0iIG4i/VmBJejxTQ== -hermes-parser@0.25.1: - version "0.25.1" - resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.25.1.tgz#5be0e487b2090886c62bd8a11724cd766d5f54d1" - integrity sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA== - dependencies: - hermes-estree "0.25.1" - hermes-parser@0.28.1: version "0.28.1" resolved "https://registry.yarnpkg.com/hermes-parser/-/hermes-parser-0.28.1.tgz#17b9e6377f334b6870a1f6da2e123fdcd0b605ac" @@ -5823,7 +5722,7 @@ hey-listen@^1.0.8: resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68" integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q== -hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: +hoist-non-react-statics@^3.3.0: version "3.3.2" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== @@ -5846,14 +5745,6 @@ http-errors@2.0.0, http-errors@^2.0.0: statuses "2.0.1" toidentifier "1.0.1" -https-proxy-agent@^5.0.0: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - https-proxy-agent@^7.0.5: version "7.0.6" resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" @@ -7107,60 +6998,60 @@ merge2@^1.3.0, merge2@^1.4.1: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== -metro-babel-transformer@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.82.3.tgz#e3b8102d165f4ce769e3d2f22ab0b0ad2d941dcc" - integrity sha512-eC0f1MSA8rg7VoNDCYMIAIe5AEgYBskh5W8rIa4RGRdmEOsGlXbAV0AWMYoA7NlIALW/S9b10AcdIwD3n1e50w== +metro-babel-transformer@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-babel-transformer/-/metro-babel-transformer-0.82.4.tgz#1ac029add8f75d0048c54efc266c0a78791f52b2" + integrity sha512-4juJahGRb1gmNbQq48lNinB6WFNfb6m0BQqi/RQibEltNiqTCxew/dBspI2EWA4xVCd3mQWGfw0TML4KurQZnQ== dependencies: "@babel/core" "^7.25.2" flow-enums-runtime "^0.0.6" hermes-parser "0.28.1" nullthrows "^1.1.1" -metro-cache-key@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.82.3.tgz#71b5d6b682515026ac09dfbae223ebe8d4fd3a7b" - integrity sha512-dDLTUOJ7YYqGog9kR55InchwnkkHuxBXD765J3hQVWWPCy6xO9uZXZYGX1Y/tIMV8U7Ho1Sve0V13n5rFajrRQ== +metro-cache-key@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-cache-key/-/metro-cache-key-0.82.4.tgz#21f850008fa2570a51e3958574ea5a791574752e" + integrity sha512-2JCTqcpF+f2OghOpe/+x+JywfzDkrHdAqinPFWmK2ezNAU/qX0jBFaTETogPibFivxZJil37w9Yp6syX8rFUng== dependencies: flow-enums-runtime "^0.0.6" -metro-cache@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.82.3.tgz#4ba5010cb0e9b033b907ba829cf596c0c70f579c" - integrity sha512-9zKhicA5GENROeP+iXku1NrI8FegtwEg3iPXHGixkm1Yppkbwsy/3lSHSiJZoT6GkZmxUDjN6sQ5QQ+/p72Msw== +metro-cache@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-cache/-/metro-cache-0.82.4.tgz#f44557f8b33f5d7b7ba4ccba2880c111e9884329" + integrity sha512-vX0ylSMGtORKiZ4G8uP6fgfPdDiCWvLZUGZ5zIblSGylOX6JYhvExl0Zg4UA9pix/SSQu5Pnp9vdODMFsNIxhw== dependencies: exponential-backoff "^3.1.1" flow-enums-runtime "^0.0.6" https-proxy-agent "^7.0.5" - metro-core "0.82.3" + metro-core "0.82.4" -metro-config@0.82.3, metro-config@^0.82.0: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.82.3.tgz#29d74425ebe255b4da46f2886d82191f88af1c49" - integrity sha512-GRG9sBkPvrGXD/Wu3RdEDuWg5NDixF9t0c6Zz9kZ9Aa/aQY+m85JgaCI5HYEV+UzVC/IUFFSpJiMfzQRicppLw== +metro-config@0.82.4, metro-config@^0.82.2: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-config/-/metro-config-0.82.4.tgz#d42fa8b6a4d53493c34d217bbc6c13ee4817355c" + integrity sha512-Ki3Wumr3hKHGDS7RrHsygmmRNc/PCJrvkLn0+BWWxmbOmOcMMJDSmSI+WRlT8jd5VPZFxIi4wg+sAt5yBXAK0g== dependencies: connect "^3.6.5" cosmiconfig "^5.0.5" flow-enums-runtime "^0.0.6" jest-validate "^29.7.0" - metro "0.82.3" - metro-cache "0.82.3" - metro-core "0.82.3" - metro-runtime "0.82.3" + metro "0.82.4" + metro-cache "0.82.4" + metro-core "0.82.4" + metro-runtime "0.82.4" -metro-core@0.82.3, metro-core@^0.82.0: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.82.3.tgz#749b0916c60f164f05c99e7382917665fe01b287" - integrity sha512-JQZDdXo3hyLl1pqVT4IKEwcBK+3f11qFXeCjQ1hjVpjMwQLOqSM02J7NC/4DNSBt+qWBxWj6R5Jphcc7+9AEWw== +metro-core@0.82.4, metro-core@^0.82.2: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-core/-/metro-core-0.82.4.tgz#f7f498929ac066dafe704c3598a990eeb2acdc8c" + integrity sha512-Xo4ozbxPg2vfgJGCgXZ8sVhC2M0lhTqD+tsKO2q9aelq/dCjnnSb26xZKcQO80CQOQUL7e3QWB7pLFGPjZm31A== dependencies: flow-enums-runtime "^0.0.6" lodash.throttle "^4.1.1" - metro-resolver "0.82.3" + metro-resolver "0.82.4" -metro-file-map@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.82.3.tgz#868677ea55df2cf6491d9de34416e1498bd8f80a" - integrity sha512-o4wtloAge85MZl85F87FT59R/4tn5GvCvLfYcnzzDB20o2YX9AMxZqswrGMaei/GbD/Win5FrLF/Iq8oetcByA== +metro-file-map@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-file-map/-/metro-file-map-0.82.4.tgz#186d737088433dd290c5974d9d96d7e62d36e4f9" + integrity sha512-eO7HD1O3aeNsbEe6NBZvx1lLJUrxgyATjnDmb7bm4eyF6yWOQot9XVtxTDLNifECuvsZ4jzRiTInrbmIHkTdGA== dependencies: debug "^4.4.0" fb-watchman "^2.0.0" @@ -7172,61 +7063,61 @@ metro-file-map@0.82.3: nullthrows "^1.1.1" walker "^1.0.7" -metro-minify-terser@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.82.3.tgz#7b90f892ef0abccc58c69ae480d3032c6f0bbe86" - integrity sha512-/3FasOULfHq1P0KPNFy5y28Th5oknPSwEbt9JELVBMAPhUnLqQkCLr4M+RQzKG3aEQN1/mEqenWApFCkk6Nm/Q== +metro-minify-terser@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-minify-terser/-/metro-minify-terser-0.82.4.tgz#3750c14e7a25eba591f6c75eed995f6751030618" + integrity sha512-W79Mi6BUwWVaM8Mc5XepcqkG+TSsCyyo//dmTsgYfJcsmReQorRFodil3bbJInETvjzdnS1mCsUo9pllNjT1Hg== dependencies: flow-enums-runtime "^0.0.6" terser "^5.15.0" -metro-resolver@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.82.3.tgz#6ba7dfe9b8c57b1332a3747bb6d013006d8968f6" - integrity sha512-pdib7UrOM04j/RjWmaqmjjWRiuCbpA8BdUSuXzvBaK0QlNzHkRRDv6kiOGxgQ+UgG+KdbPcJktsW9olqiDhf9w== +metro-resolver@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-resolver/-/metro-resolver-0.82.4.tgz#936a2300fa577183a1e0e6f7cc405e52f9276f0e" + integrity sha512-uWoHzOBGQTPT5PjippB8rRT3iI9CTgFA9tRiLMzrseA5o7YAlgvfTdY9vFk2qyk3lW3aQfFKWkmqENryPRpu+Q== dependencies: flow-enums-runtime "^0.0.6" -metro-runtime@0.82.3, metro-runtime@^0.82.0: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.82.3.tgz#fe793cf9e976256bd450f3da7845fd704f5254bf" - integrity sha512-J4SrUUsBy9ire8I2sFuXN5MzPmuBHlx1bjvAjdoo1ecpH2mtS3ubRqVnMotBxuK5+GhrbW0mtg5/46PVXy26cw== +metro-runtime@0.82.4, metro-runtime@^0.82.2: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-runtime/-/metro-runtime-0.82.4.tgz#70e0b871683fdb594f2a7c03403b6350deca086b" + integrity sha512-vVyFO7H+eLXRV2E7YAUYA7aMGBECGagqxmFvC2hmErS7oq90BbPVENfAHbUWq1vWH+MRiivoRxdxlN8gBoF/dw== dependencies: "@babel/runtime" "^7.25.0" flow-enums-runtime "^0.0.6" -metro-source-map@0.82.3, metro-source-map@^0.82.0: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.82.3.tgz#e5d243473b057f70e1090ce9cc769cd72deec40c" - integrity sha512-gz7wfjz23rit6ePQ7NKE9x+VOWGKm54vli4wbphR9W+3y0bh6Ad7T0BGH9DUzRAnOnOorewrVEqFmT24mia5sg== +metro-source-map@0.82.4, metro-source-map@^0.82.2: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-source-map/-/metro-source-map-0.82.4.tgz#ddd9bdf3a5864ee8f0b296ed11e46bdc2de321ac" + integrity sha512-9jzDQJ0FPas1FuQFtwmBHsez2BfhFNufMowbOMeG3ZaFvzeziE8A0aJwILDS3U+V5039ssCQFiQeqDgENWvquA== dependencies: "@babel/traverse" "^7.25.3" "@babel/traverse--for-generate-function-map" "npm:@babel/traverse@^7.25.3" "@babel/types" "^7.25.2" flow-enums-runtime "^0.0.6" invariant "^2.2.4" - metro-symbolicate "0.82.3" + metro-symbolicate "0.82.4" nullthrows "^1.1.1" - ob1 "0.82.3" + ob1 "0.82.4" source-map "^0.5.6" vlq "^1.0.0" -metro-symbolicate@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.82.3.tgz#50c5a645727fad9f0eaef1856298ddf267d35a0b" - integrity sha512-WZKhR+QGbwkOLWP1z58Y7BFWUqLVDEEPsSQ5UI5+OWQDAwdtsPU9+sSNoJtD5qRU9qrB2XewQE3lJ2EQRRFJew== +metro-symbolicate@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-symbolicate/-/metro-symbolicate-0.82.4.tgz#76603b0ec2ad8fe5f174aa76485cc46228547a91" + integrity sha512-LwEwAtdsx7z8rYjxjpLWxuFa2U0J6TS6ljlQM4WAATKa4uzV8unmnRuN2iNBWTmRqgNR77mzmI2vhwD4QSCo+w== dependencies: flow-enums-runtime "^0.0.6" invariant "^2.2.4" - metro-source-map "0.82.3" + metro-source-map "0.82.4" nullthrows "^1.1.1" source-map "^0.5.6" vlq "^1.0.0" -metro-transform-plugins@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.82.3.tgz#41379fabc036c95229e948fbf68abc7f757adfa2" - integrity sha512-s1gVrkhczwMbxZLRSLCJ16K/4Sqx5IhO4sWlL6j0jlIEs1/Drn3JrkUUdQTtgmJS8SBpxmmB66cw7wnz751dVg== +metro-transform-plugins@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-transform-plugins/-/metro-transform-plugins-0.82.4.tgz#9d3bb855126e0a63ac2ccf012ed2bc7829209e8c" + integrity sha512-NoWQRPHupVpnDgYguiEcm7YwDhnqW02iWWQjO2O8NsNP09rEMSq99nPjARWfukN7+KDh6YjLvTIN20mj3dk9kw== dependencies: "@babel/core" "^7.25.2" "@babel/generator" "^7.25.0" @@ -7235,29 +7126,29 @@ metro-transform-plugins@0.82.3: flow-enums-runtime "^0.0.6" nullthrows "^1.1.1" -metro-transform-worker@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.82.3.tgz#fadb4ff2694079dadd19e449dda4b8ff47545c78" - integrity sha512-z5Y7nYlSlLAEhjFi73uEJh69G5IC6HFZmXFcrxnY+JNlsjT2r0GgsDF4WaQGtarAIt5NP88V8983/PedwNfEcw== +metro-transform-worker@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro-transform-worker/-/metro-transform-worker-0.82.4.tgz#cf7db4ef89301ab6658f7a0988fd030e28f86b28" + integrity sha512-kPI7Ad/tdAnI9PY4T+2H0cdgGeSWWdiPRKuytI806UcN4VhFL6OmYa19/4abYVYF+Cd2jo57CDuwbaxRfmXDhw== dependencies: "@babel/core" "^7.25.2" "@babel/generator" "^7.25.0" "@babel/parser" "^7.25.3" "@babel/types" "^7.25.2" flow-enums-runtime "^0.0.6" - metro "0.82.3" - metro-babel-transformer "0.82.3" - metro-cache "0.82.3" - metro-cache-key "0.82.3" - metro-minify-terser "0.82.3" - metro-source-map "0.82.3" - metro-transform-plugins "0.82.3" + metro "0.82.4" + metro-babel-transformer "0.82.4" + metro-cache "0.82.4" + metro-cache-key "0.82.4" + metro-minify-terser "0.82.4" + metro-source-map "0.82.4" + metro-transform-plugins "0.82.4" nullthrows "^1.1.1" -metro@0.82.3, metro@^0.82.0: - version "0.82.3" - resolved "https://registry.yarnpkg.com/metro/-/metro-0.82.3.tgz#d25137f05faceb32783b41bbe3698d4903e74792" - integrity sha512-EfSLtuUmfsGk3znJ+zoN8cRLniQo3W1wyA+nJMfpTLdENfbbPnGRTwmKhzRcJIUh9jgkrrF4oRQ5shLtQ2DsUw== +metro@0.82.4, metro@^0.82.2: + version "0.82.4" + resolved "https://registry.yarnpkg.com/metro/-/metro-0.82.4.tgz#e4fb4552f1387610b0b2873ed07d4cd59754d636" + integrity sha512-/gFmw3ux9CPG5WUmygY35hpyno28zi/7OUn6+OFfbweA8l0B+PPqXXLr0/T6cf5nclCcH0d22o+02fICaShVxw== dependencies: "@babel/code-frame" "^7.24.7" "@babel/core" "^7.25.2" @@ -7280,18 +7171,18 @@ metro@0.82.3, metro@^0.82.0: jest-worker "^29.7.0" jsc-safe-url "^0.2.2" lodash.throttle "^4.1.1" - metro-babel-transformer "0.82.3" - metro-cache "0.82.3" - metro-cache-key "0.82.3" - metro-config "0.82.3" - metro-core "0.82.3" - metro-file-map "0.82.3" - metro-resolver "0.82.3" - metro-runtime "0.82.3" - metro-source-map "0.82.3" - metro-symbolicate "0.82.3" - metro-transform-plugins "0.82.3" - metro-transform-worker "0.82.3" + metro-babel-transformer "0.82.4" + metro-cache "0.82.4" + metro-cache-key "0.82.4" + metro-config "0.82.4" + metro-core "0.82.4" + metro-file-map "0.82.4" + metro-resolver "0.82.4" + metro-runtime "0.82.4" + metro-source-map "0.82.4" + metro-symbolicate "0.82.4" + metro-transform-plugins "0.82.4" + metro-transform-worker "0.82.4" mime-types "^2.1.27" nullthrows "^1.1.1" serialize-error "^2.1.0" @@ -7474,13 +7365,6 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" -node-fetch@^2.6.7: - version "2.7.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d" - integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A== - dependencies: - whatwg-url "^5.0.0" - node-int64@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" @@ -7520,10 +7404,10 @@ nullthrows@^1.1.1: resolved "https://registry.yarnpkg.com/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== -ob1@0.82.3: - version "0.82.3" - resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.82.3.tgz#89ed7314eaaf1578f128cd56adc7d5653bb4792a" - integrity sha512-8/SeymYlPMVODpCATHqm+X8eiuvD1GsKVa11n688V4GGgjrM3CRvrbtrYBs4t89LJDkv5CwGYPdqayuY0DmTTA== +ob1@0.82.4: + version "0.82.4" + resolved "https://registry.yarnpkg.com/ob1/-/ob1-0.82.4.tgz#60f04f61b8ab96e1f818eb856b35c97bbef44726" + integrity sha512-n9S8e4l5TvkrequEAMDidl4yXesruWTNTzVkeaHSGywoTOIwTzZzKw7Z670H3eaXDZui5MJXjWGNzYowVZIxCA== dependencies: flow-enums-runtime "^0.0.6" @@ -7964,11 +7848,6 @@ pretty-format@^29.0.0, pretty-format@^29.7.0: ansi-styles "^5.0.0" react-is "^18.0.0" -progress@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - promise@^8.3.0: version "8.3.0" resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" @@ -8117,7 +7996,7 @@ react-is@^18.0.0: resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== -react-is@^19.0.0, react-is@^19.1.0: +react-is@^19.1.0: version "19.1.0" resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.1.0.tgz#805bce321546b7e14c084989c77022351bbdd11b" integrity sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg== @@ -8182,10 +8061,10 @@ react-native-fs@^2.20.0: base-64 "^0.1.0" utf8 "^3.0.0" -react-native-gesture-handler@^2.25.0: - version "2.25.0" - resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.25.0.tgz#3a5a8912ea4f5e68ab211a9fa5a191c08ad50883" - integrity sha512-NPjJi6mislXxvjxQPU9IYwBjb1Uejp8GvAbE1Lhh+xMIMEvmgAvVIp5cz1P+xAbV6uYcRRArm278+tEInGOqWg== +react-native-gesture-handler@^2.26.0: + version "2.26.0" + resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.26.0.tgz#e8774c8cd90f7e72c0ecade0ac1b4f7160fcbd5f" + integrity sha512-pfE1j9Vzu0qpWj/Aq1IK+cYnougN69mCKvWuq1rdNjH2zs1WIszF0Mum9/oGQTemgjyc/JgiqOOTgwcleAMAGg== dependencies: "@egjs/hammerjs" "^2.0.17" hoist-non-react-statics "^3.3.0" @@ -8219,10 +8098,10 @@ react-native-pager-view@^6.7.1: resolved "https://registry.yarnpkg.com/react-native-pager-view/-/react-native-pager-view-6.7.1.tgz#60d52dedbcc92ee7037a13287ebeed5f74e49df7" integrity sha512-cBSr6xw4g5N7Kd3VGWcf+kmaH7iBWb0DXAf2bVo3bXkzBcBbTOmYSvc0LVLHhUPW8nEq5WjT9LCIYAzgF++EXw== -react-native-reanimated@^3.17.5: - version "3.17.5" - resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.17.5.tgz#09ebe3c9e3379c5c0c588b7ab30c131ea29b60f0" - integrity sha512-SxBK7wQfJ4UoWoJqQnmIC7ZjuNgVb9rcY5Xc67upXAFKftWg0rnkknTw6vgwnjRcvYThrjzUVti66XoZdDJGtw== +react-native-reanimated@^3.18.0: + version "3.18.0" + resolved "https://registry.yarnpkg.com/react-native-reanimated/-/react-native-reanimated-3.18.0.tgz#0a246eab38a9e807887fe561a2868cfe85351f3c" + integrity sha512-eVcNcqeOkMW+BUWAHdtvN3FKgC8J8wiEJkX6bNGGQaLS7m7e4amTfjIcqf/Ta+lerZLurmDaQ0lICI1CKPrb1Q== dependencies: "@babel/plugin-transform-arrow-functions" "^7.0.0-0" "@babel/plugin-transform-class-properties" "^7.0.0-0" @@ -8299,42 +8178,41 @@ react-native-vector-icons@^10.2.0: prop-types "^15.7.2" yargs "^16.1.1" -react-native@0.79.2: - version "0.79.2" - resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.79.2.tgz#f1a53099701c1736d09e441eb79f97cfc90dd202" - integrity sha512-AnGzb56JvU5YCL7cAwg10+ewDquzvmgrMddiBM0GAWLwQM/6DJfGd2ZKrMuKKehHerpDDZgG+EY64gk3x3dEkw== +react-native@0.80.0: + version "0.80.0" + resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.80.0.tgz#574bf976c1e03d27191100179a8e9ec0f19d42ef" + integrity sha512-b9K1ygb2MWCBtKAodKmE3UsbUuC29Pt4CrJMR0ocTA8k+8HJQTPleBPDNKL4/p0P01QO9aL/gZUddoxHempLow== dependencies: "@jest/create-cache-key-function" "^29.7.0" - "@react-native/assets-registry" "0.79.2" - "@react-native/codegen" "0.79.2" - "@react-native/community-cli-plugin" "0.79.2" - "@react-native/gradle-plugin" "0.79.2" - "@react-native/js-polyfills" "0.79.2" - "@react-native/normalize-colors" "0.79.2" - "@react-native/virtualized-lists" "0.79.2" + "@react-native/assets-registry" "0.80.0" + "@react-native/codegen" "0.80.0" + "@react-native/community-cli-plugin" "0.80.0" + "@react-native/gradle-plugin" "0.80.0" + "@react-native/js-polyfills" "0.80.0" + "@react-native/normalize-colors" "0.80.0" + "@react-native/virtualized-lists" "0.80.0" abort-controller "^3.0.0" anser "^1.4.9" ansi-regex "^5.0.0" babel-jest "^29.7.0" - babel-plugin-syntax-hermes-parser "0.25.1" + babel-plugin-syntax-hermes-parser "0.28.1" base64-js "^1.5.1" chalk "^4.0.0" commander "^12.0.0" - event-target-shim "^5.0.1" flow-enums-runtime "^0.0.6" glob "^7.1.1" invariant "^2.2.4" jest-environment-node "^29.7.0" memoize-one "^5.0.0" - metro-runtime "^0.82.0" - metro-source-map "^0.82.0" + metro-runtime "^0.82.2" + metro-source-map "^0.82.2" nullthrows "^1.1.1" pretty-format "^29.7.0" promise "^8.3.0" react-devtools-core "^6.1.1" react-refresh "^0.14.0" regenerator-runtime "^0.13.2" - scheduler "0.25.0" + scheduler "0.26.0" semver "^7.1.3" stacktrace-parser "^0.1.10" whatwg-fetch "^3.0.0" @@ -8373,18 +8251,18 @@ react-style-singleton@^2.2.2, react-style-singleton@^2.2.3: get-nonce "^1.0.0" tslib "^2.0.0" -react-test-renderer@19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.0.0.tgz#ca6fa322c58d4bfa34635788fe242a8c3daa4c7d" - integrity sha512-oX5u9rOQlHzqrE/64CNr0HB0uWxkCQmZNSfozlYvwE71TLVgeZxVf0IjouGEr1v7r1kcDifdAJBeOhdhxsG/DA== +react-test-renderer@19.1.0: + version "19.1.0" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-19.1.0.tgz#89e1baa9e45a6da064b9760f92251d5b8e1f34ab" + integrity sha512-jXkSl3CpvPYEF+p/eGDLB4sPoDX8pKkYvRl9+rR8HxLY0X04vW7hCm1/0zHoUSjPZ3bDa+wXWNTDVIw/R8aDVw== dependencies: - react-is "^19.0.0" - scheduler "^0.25.0" + react-is "^19.1.0" + scheduler "^0.26.0" -react@19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd" - integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ== +react@19.1.0: + version "19.1.0" + resolved "https://registry.yarnpkg.com/react/-/react-19.1.0.tgz#926864b6c48da7627f004795d6cce50e90793b75" + integrity sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg== readable-stream@^3.4.0: version "3.6.2" @@ -8660,12 +8538,7 @@ safe-regex-test@^1.1.0: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -scheduler@0.25.0, scheduler@^0.25.0: - version "0.25.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015" - integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA== - -scheduler@^0.26.0: +scheduler@0.26.0, scheduler@^0.26.0: version "0.26.0" resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.26.0.tgz#4ce8a8c2a2095f13ea11bf9a445be50c555d6337" integrity sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA== @@ -9344,11 +9217,6 @@ toidentifier@1.0.1: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - "trimArguments@https://github.com/fresheneesz/trimArguments/archive/c9c023c9ff1e0aec4b67370a80a92dacadcf8b11.tar.gz": version "1.0.1" resolved "https://github.com/fresheneesz/trimArguments/archive/c9c023c9ff1e0aec4b67370a80a92dacadcf8b11.tar.gz#c4d002edfcf799bdc993170f1f809f79e3257386" @@ -9630,11 +9498,6 @@ wcwidth@^1.0.1: dependencies: defaults "^1.0.3" -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - webidl-conversions@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" @@ -9654,14 +9517,6 @@ whatwg-url-without-unicode@8.0.0-3: punycode "^2.1.1" webidl-conversions "^5.0.0" -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e" @@ -9720,7 +9575,7 @@ which-typed-array@^1.1.16, which-typed-array@^1.1.18: gopd "^1.2.0" has-tostringtag "^1.0.2" -which@^2.0.1, which@^2.0.2: +which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==