diff --git a/README.md b/README.md index 50088fd399..c2ad922824 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@

- StreamChat React Native iOS - StreamChat React Native Android + StreamChat React Native iOS + StreamChat React Native Android

> The official React Native and Expo components for Stream Chat, a service for diff --git a/examples/SampleApp/Gemfile.lock b/examples/SampleApp/Gemfile.lock index e0342c3fd9..fcaac4dff2 100644 --- a/examples/SampleApp/Gemfile.lock +++ b/examples/SampleApp/Gemfile.lock @@ -163,7 +163,7 @@ GEM google-apis-firebaseappdistribution_v1 (~> 0.3.0) google-apis-firebaseappdistribution_v1alpha (~> 0.2.0) fastlane-plugin-load_json (0.0.1) - fastlane-plugin-stream_actions (0.3.57) + fastlane-plugin-stream_actions (0.3.59) xctest_list (= 1.2.1) ffi (1.17.0) fourflusher (2.3.1) @@ -320,7 +320,7 @@ DEPENDENCIES fastlane fastlane-plugin-firebase_app_distribution fastlane-plugin-load_json - fastlane-plugin-stream_actions (= 0.3.57) + fastlane-plugin-stream_actions (= 0.3.59) rubocop-performance rubocop-require_tools diff --git a/examples/SampleApp/fastlane/Fastfile b/examples/SampleApp/fastlane/Fastfile index 6081c422e9..823d161e3c 100644 --- a/examples/SampleApp/fastlane/Fastfile +++ b/examples/SampleApp/fastlane/Fastfile @@ -153,7 +153,7 @@ end ########################## lane :file_size do |options| - File.size(options[:path]).to_f / 1024 + File.size(options[:path]) / 1024.0 end lane :directory_size do |options| @@ -161,7 +161,7 @@ lane :directory_size do |options| Find.find(options[:path]) do |file| total_size += File.size(file) if File.file?(file) end - total_size.to_f / 1024 + total_size / 1024.0 end lane :create_template_project do @@ -219,8 +219,8 @@ lane :frameworks_sizes do ios_app_size_with_sdk = ios_app_size(rn_project_dir: rn_project_dir, skip_match: true) { - Android: android_app_size_with_sdk - android_app_size_without_sdk, - iOS: ios_app_size_with_sdk - ios_app_size_without_sdk + Android: (android_app_size_with_sdk - android_app_size_without_sdk).round(0), + iOS: (ios_app_size_with_sdk - ios_app_size_without_sdk).round(0) } end diff --git a/examples/SampleApp/fastlane/Pluginfile b/examples/SampleApp/fastlane/Pluginfile index 4d311ed18e..7e83a01b3e 100644 --- a/examples/SampleApp/fastlane/Pluginfile +++ b/examples/SampleApp/fastlane/Pluginfile @@ -4,4 +4,4 @@ gem 'fastlane-plugin-firebase_app_distribution' gem 'fastlane-plugin-load_json' -gem 'fastlane-plugin-stream_actions', '0.3.57' +gem 'fastlane-plugin-stream_actions', '0.3.59'