diff --git a/.github/workflows/release_dapp_android.yml b/.github/workflows/release_dapp_android.yml new file mode 100644 index 00000000..ba6c58f0 --- /dev/null +++ b/.github/workflows/release_dapp_android.yml @@ -0,0 +1,75 @@ +name: Android Web3Dapp deploy + +on: + workflow_dispatch: + push: + tags: + - v[0-9]+.[0-9]+.[0-9]+ + +jobs: + build: + runs-on: macos-latest-xlarge + + steps: + # Checkout the repo + - name: Checkout repository + uses: actions/checkout@v4 + + # Create temp firebase key + # - name: Create temp firebase key + # env: + # FIREBASE_KEY_BASE64: ${{ secrets.FIREBASE_KEY_BASE64 }} + # run: | + # # create variables + # FIREBASE_KEY_PATH=$RUNNER_TEMP/flutter-c7c2c-6df892fe6ddb.json + + # # import certificate and provisioning profile from secrets + # echo -n "$FIREBASE_KEY_BASE64" | base64 --decode -o $FIREBASE_KEY_PATH + + # Install Java 17 + - name: Install Java 17 + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '17' + architecture: x86_64 + cache: 'gradle' + + # Cache Gradle + - name: Cache Gradle + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + # # Install Fastlane + # - name: Install Fastlane + # run: gem install fastlane + + # Install Flutter and Dependencies + - uses: ./.github/actions/dependencies + + # Fastlane + - name: Fastlane + working-directory: example/dapp/android + env: + PROJECT_ID: ${{ secrets.DAPP_PROJECT_ID }} + SLACK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} + FIREBASE_DAPP_ID: ${{ secrets.FIREBASE_DAPP_ID }} + run: | + PUBSPEC_FILE=../../../pubspec.yaml + FILE_VALUE=$(echo | grep "^version: " $PUBSPEC_FILE) + PARTS=(${FILE_VALUE//:/ }) + FULL_VERSION=${PARTS[1]} + VERSION_NUMBER=(${FULL_VERSION//-/ }) + + fastlane add_plugin firebase_app_distribution + fastlane release_firebase project_id:$PROJECT_ID app_version:$VERSION_NUMBER + +# Launch locally +# act -j build --container-architecture linux/amd64 -P macos-latest-xlarge=-self-hosted --secret-file .github/workflows/.env.secret -W .github/workflows/release_dapp_android.yml diff --git a/.github/workflows/release_wallet_android.yml b/.github/workflows/release_wallet_android.yml new file mode 100644 index 00000000..4250acdd --- /dev/null +++ b/.github/workflows/release_wallet_android.yml @@ -0,0 +1,75 @@ +name: Android Web3Wallet deploy + +on: + workflow_dispatch: + push: + tags: + - v[0-9]+.[0-9]+.[0-9]+ + +jobs: + build: + runs-on: macos-latest-xlarge + + steps: + # Checkout the repo + - name: Checkout repository + uses: actions/checkout@v4 + + # Create temp firebase key + # - name: Create temp firebase key + # env: + # FIREBASE_KEY_BASE64: ${{ secrets.FIREBASE_KEY_BASE64 }} + # run: | + # # create variables + # FIREBASE_KEY_PATH=$RUNNER_TEMP/flutter-c7c2c-6df892fe6ddb.json + + # # import certificate and provisioning profile from secrets + # echo -n "$FIREBASE_KEY_BASE64" | base64 --decode -o $FIREBASE_KEY_PATH + + # Install Java 17 + - name: Install Java 17 + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '17' + architecture: x86_64 + cache: 'gradle' + + # Cache Gradle + - name: Cache Gradle + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} + restore-keys: | + ${{ runner.os }}-gradle- + + # # Install Fastlane + # - name: Install Fastlane + # run: gem install fastlane + + # Install Flutter and Dependencies + - uses: ./.github/actions/dependencies + + # Fastlane + - name: Fastlane + working-directory: example/wallet/android + env: + PROJECT_ID: ${{ secrets.WALLET_PROJECT_ID }} + SLACK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} + FIREBASE_WALLET_ID: ${{ secrets.FIREBASE_WALLET_ID }} + run: | + PUBSPEC_FILE=../../../pubspec.yaml + FILE_VALUE=$(echo | grep "^version: " $PUBSPEC_FILE) + PARTS=(${FILE_VALUE//:/ }) + FULL_VERSION=${PARTS[1]} + VERSION_NUMBER=(${FULL_VERSION//-/ }) + + fastlane add_plugin firebase_app_distribution + fastlane release_firebase project_id:$PROJECT_ID app_version:$VERSION_NUMBER + +# Launch locally +# act -j build --container-architecture linux/amd64 -P macos-latest-xlarge=-self-hosted --secret-file .github/workflows/.env.secret -W .github/workflows/release_wallet_android.yml diff --git a/example/dapp/android/Gemfile b/example/dapp/android/Gemfile index 7a118b49..cdd3a6b3 100644 --- a/example/dapp/android/Gemfile +++ b/example/dapp/android/Gemfile @@ -1,3 +1,6 @@ source "https://rubygems.org" gem "fastlane" + +plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') +eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/example/dapp/android/Gemfile.lock b/example/dapp/android/Gemfile.lock index 550231d9..1d021b00 100644 --- a/example/dapp/android/Gemfile.lock +++ b/example/dapp/android/Gemfile.lock @@ -109,6 +109,9 @@ GEM xcodeproj (>= 1.13.0, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) + fastlane-plugin-firebase_app_distribution (0.9.1) + google-apis-firebaseappdistribution_v1 (~> 0.3.0) + google-apis-firebaseappdistribution_v1alpha (~> 0.2.0) gh_inspector (1.1.3) google-apis-androidpublisher_v3 (0.54.0) google-apis-core (>= 0.11.0, < 2.a) @@ -120,6 +123,10 @@ GEM representable (~> 3.0) retriable (>= 2.0, < 4.a) rexml + google-apis-firebaseappdistribution_v1 (0.3.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-firebaseappdistribution_v1alpha (0.2.0) + google-apis-core (>= 0.11.0, < 2.a) google-apis-iamcredentials_v1 (0.17.0) google-apis-core (>= 0.11.0, < 2.a) google-apis-playcustomapp_v1 (0.13.0) @@ -215,6 +222,7 @@ PLATFORMS DEPENDENCIES fastlane + fastlane-plugin-firebase_app_distribution BUNDLED WITH 2.5.14 diff --git a/example/dapp/android/fastlane/Fastfile b/example/dapp/android/fastlane/Fastfile index 19c557cc..538496c2 100644 --- a/example/dapp/android/fastlane/Fastfile +++ b/example/dapp/android/fastlane/Fastfile @@ -16,23 +16,78 @@ default_platform(:android) platform :android do - desc "Runs all the tests" - lane :test do - gradle(task: "test") - end - - desc "Submit a new Beta Build to Crashlytics Beta" - lane :beta do - gradle(task: "clean assembleRelease") - crashlytics - # sh "your_script.sh" - # You can also use other beta testing services here + # Helper method to read the changelog + def read_changelog + changelog_file = '../../../../CHANGELOG.md' + changelog = "" + + if File.exist?(changelog_file) + File.open(changelog_file, 'r') do |file| + changelog = file.read + end + + # Split the changelog into entries based on the version header pattern + entries = changelog.split(/^##\s/) + + # Get the latest entry, which is the first one after splitting + latest_entry = entries[1] + + # Re-add the '##' header to the latest entry and remove empty lines + changelog = latest_entry.strip if latest_entry + changelog = changelog.gsub /^$\n/, '' + else + UI.user_error!("CHANGELOG.md file not found") + end + + changelog end - desc "Deploy a new version to the Google Play" - lane :deploy do - gradle(task: "clean assembleRelease") - upload_to_play_store + + lane :release_firebase do |options| + + slack_url = ENV['SLACK_URL'] + firebase_token = ENV['FIREBASE_TOKEN'] + firebase_dapp_id = ENV['FIREBASE_DAPP_ID'] + + _latest_release = firebase_app_distribution_get_latest_release( + app: "#{firebase_dapp_id}", + ) + _new_build_number = _latest_release[:buildVersion].to_i + 1 + _app_version = "#{options[:app_version]}" + _project_id = "#{options[:project_id]}" + + # gradle(task: 'assemble', build_type: 'Release') + sh "flutter build apk --build-name #{_app_version} --build-number #{_new_build_number} --dart-define='PROJECT_ID=#{_project_id}' --release" + + changelog = read_changelog + + firebase_app_distribution( + app: "#{firebase_dapp_id}", + groups: "flutter-team, javascript-team, kotlin-team, rust-team, unity, wc-testers", + android_artifact_path: '../build/app/outputs/flutter-apk/app-release.apk', + release_notes: changelog, + android_artifact_type: "APK", + ) + + slack( + message: "📱 Web3Dapp Flutter #{_app_version} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", + default_payloads: [], + attachment_properties: { + fields: [ + { + title: "CHANGELOG", + value: changelog, + # short: true + }, + { + title: "LINK", + value: "https://appdistribution.firebase.dev/i/2c6573f6956fa7b5", + # short: true + }, + ] + } + ) + end end diff --git a/example/dapp/android/fastlane/Pluginfile b/example/dapp/android/fastlane/Pluginfile new file mode 100644 index 00000000..b18539bc --- /dev/null +++ b/example/dapp/android/fastlane/Pluginfile @@ -0,0 +1,5 @@ +# Autogenerated by fastlane +# +# Ensure this file is checked in to source control! + +gem 'fastlane-plugin-firebase_app_distribution' diff --git a/example/dapp/ios/fastlane/Fastfile b/example/dapp/ios/fastlane/Fastfile index 47e17ebd..dfaf1985 100644 --- a/example/dapp/ios/fastlane/Fastfile +++ b/example/dapp/ios/fastlane/Fastfile @@ -112,7 +112,7 @@ platform :ios do ) slack( - message: "📱 Web3Dapp Flutter #{options[:app_version]} (#{new_build_number}) successfully released!\n\n", + message: "📱 Web3Dapp Flutter #{options[:app_version]} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [ diff --git a/example/wallet/android/Gemfile b/example/wallet/android/Gemfile new file mode 100644 index 00000000..cdd3a6b3 --- /dev/null +++ b/example/wallet/android/Gemfile @@ -0,0 +1,6 @@ +source "https://rubygems.org" + +gem "fastlane" + +plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') +eval_gemfile(plugins_path) if File.exist?(plugins_path) diff --git a/example/wallet/android/Gemfile.lock b/example/wallet/android/Gemfile.lock new file mode 100644 index 00000000..1d021b00 --- /dev/null +++ b/example/wallet/android/Gemfile.lock @@ -0,0 +1,228 @@ +GEM + remote: https://rubygems.org/ + specs: + CFPropertyList (3.0.7) + base64 + nkf + rexml + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + artifactory (3.0.17) + atomos (0.1.3) + aws-eventstream (1.3.0) + aws-partitions (1.956.0) + aws-sdk-core (3.201.1) + aws-eventstream (~> 1, >= 1.3.0) + aws-partitions (~> 1, >= 1.651.0) + aws-sigv4 (~> 1.8) + jmespath (~> 1, >= 1.6.1) + aws-sdk-kms (1.88.0) + aws-sdk-core (~> 3, >= 3.201.0) + aws-sigv4 (~> 1.5) + aws-sdk-s3 (1.156.0) + aws-sdk-core (~> 3, >= 3.201.0) + aws-sdk-kms (~> 1) + aws-sigv4 (~> 1.5) + aws-sigv4 (1.8.0) + aws-eventstream (~> 1, >= 1.0.2) + babosa (1.0.4) + base64 (0.2.0) + claide (1.1.0) + colored (1.2) + colored2 (3.1.2) + commander (4.6.0) + highline (~> 2.0.0) + declarative (0.0.20) + digest-crc (0.6.5) + rake (>= 12.0.0, < 14.0.0) + domain_name (0.6.20240107) + dotenv (2.8.1) + emoji_regex (3.2.3) + excon (0.111.0) + faraday (1.10.3) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0) + faraday-multipart (~> 1.0) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.0) + faraday-patron (~> 1.0) + faraday-rack (~> 1.0) + faraday-retry (~> 1.0) + ruby2_keywords (>= 0.0.4) + faraday-cookie_jar (0.0.7) + faraday (>= 0.8.0) + http-cookie (~> 1.0.0) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-multipart (1.0.4) + multipart-post (~> 2) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) + faraday-rack (1.0.0) + faraday-retry (1.0.3) + faraday_middleware (1.2.0) + faraday (~> 1.0) + fastimage (2.3.1) + fastlane (2.221.1) + CFPropertyList (>= 2.3, < 4.0.0) + addressable (>= 2.8, < 3.0.0) + artifactory (~> 3.0) + aws-sdk-s3 (~> 1.0) + babosa (>= 1.0.3, < 2.0.0) + bundler (>= 1.12.0, < 3.0.0) + colored (~> 1.2) + commander (~> 4.6) + dotenv (>= 2.1.1, < 3.0.0) + emoji_regex (>= 0.1, < 4.0) + excon (>= 0.71.0, < 1.0.0) + faraday (~> 1.0) + faraday-cookie_jar (~> 0.0.6) + faraday_middleware (~> 1.0) + fastimage (>= 2.1.0, < 3.0.0) + gh_inspector (>= 1.1.2, < 2.0.0) + google-apis-androidpublisher_v3 (~> 0.3) + google-apis-playcustomapp_v1 (~> 0.1) + google-cloud-env (>= 1.6.0, < 2.0.0) + google-cloud-storage (~> 1.31) + highline (~> 2.0) + http-cookie (~> 1.0.5) + json (< 3.0.0) + jwt (>= 2.1.0, < 3) + mini_magick (>= 4.9.4, < 5.0.0) + multipart-post (>= 2.0.0, < 3.0.0) + naturally (~> 2.2) + optparse (>= 0.1.1, < 1.0.0) + plist (>= 3.1.0, < 4.0.0) + rubyzip (>= 2.0.0, < 3.0.0) + security (= 0.1.5) + simctl (~> 1.6.3) + terminal-notifier (>= 2.0.0, < 3.0.0) + terminal-table (~> 3) + tty-screen (>= 0.6.3, < 1.0.0) + tty-spinner (>= 0.8.0, < 1.0.0) + word_wrap (~> 1.0.0) + xcodeproj (>= 1.13.0, < 2.0.0) + xcpretty (~> 0.3.0) + xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) + fastlane-plugin-firebase_app_distribution (0.9.1) + google-apis-firebaseappdistribution_v1 (~> 0.3.0) + google-apis-firebaseappdistribution_v1alpha (~> 0.2.0) + gh_inspector (1.1.3) + google-apis-androidpublisher_v3 (0.54.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-core (0.11.3) + addressable (~> 2.5, >= 2.5.1) + googleauth (>= 0.16.2, < 2.a) + httpclient (>= 2.8.1, < 3.a) + mini_mime (~> 1.0) + representable (~> 3.0) + retriable (>= 2.0, < 4.a) + rexml + google-apis-firebaseappdistribution_v1 (0.3.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-firebaseappdistribution_v1alpha (0.2.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-iamcredentials_v1 (0.17.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-playcustomapp_v1 (0.13.0) + google-apis-core (>= 0.11.0, < 2.a) + google-apis-storage_v1 (0.31.0) + google-apis-core (>= 0.11.0, < 2.a) + google-cloud-core (1.7.0) + google-cloud-env (>= 1.0, < 3.a) + google-cloud-errors (~> 1.0) + google-cloud-env (1.6.0) + faraday (>= 0.17.3, < 3.0) + google-cloud-errors (1.4.0) + google-cloud-storage (1.47.0) + addressable (~> 2.8) + digest-crc (~> 0.4) + google-apis-iamcredentials_v1 (~> 0.1) + google-apis-storage_v1 (~> 0.31.0) + google-cloud-core (~> 1.6) + googleauth (>= 0.16.2, < 2.a) + mini_mime (~> 1.0) + googleauth (1.8.1) + faraday (>= 0.17.3, < 3.a) + jwt (>= 1.4, < 3.0) + multi_json (~> 1.11) + os (>= 0.9, < 2.0) + signet (>= 0.16, < 2.a) + highline (2.0.3) + http-cookie (1.0.6) + domain_name (~> 0.5) + httpclient (2.8.3) + jmespath (1.6.2) + json (2.7.2) + jwt (2.8.2) + base64 + mini_magick (4.13.2) + mini_mime (1.1.5) + multi_json (1.15.0) + multipart-post (2.4.1) + nanaimo (0.3.0) + naturally (2.2.1) + nkf (0.2.0) + optparse (0.5.0) + os (1.1.4) + plist (3.7.1) + public_suffix (6.0.0) + rake (13.2.1) + representable (3.2.0) + declarative (< 0.1.0) + trailblazer-option (>= 0.1.1, < 0.2.0) + uber (< 0.2.0) + retriable (3.1.2) + rexml (3.2.9) + strscan + rouge (2.0.7) + ruby2_keywords (0.0.5) + rubyzip (2.3.2) + security (0.1.5) + signet (0.19.0) + addressable (~> 2.8) + faraday (>= 0.17.5, < 3.a) + jwt (>= 1.5, < 3.0) + multi_json (~> 1.10) + simctl (1.6.10) + CFPropertyList + naturally + strscan (3.1.0) + terminal-notifier (2.0.0) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + trailblazer-option (0.1.2) + tty-cursor (0.7.1) + tty-screen (0.8.2) + tty-spinner (0.9.3) + tty-cursor (~> 0.7) + uber (0.1.0) + unicode-display_width (2.5.0) + word_wrap (1.0.0) + xcodeproj (1.24.0) + CFPropertyList (>= 2.3.3, < 4.0) + atomos (~> 0.1.3) + claide (>= 1.0.2, < 2.0) + colored2 (~> 3.1) + nanaimo (~> 0.3.0) + rexml (~> 3.2.4) + xcpretty (0.3.0) + rouge (~> 2.0.7) + xcpretty-travis-formatter (1.0.1) + xcpretty (~> 0.2, >= 0.0.7) + +PLATFORMS + arm64-darwin-23 + ruby + +DEPENDENCIES + fastlane + fastlane-plugin-firebase_app_distribution + +BUNDLED WITH + 2.5.14 diff --git a/example/wallet/android/app/build.gradle b/example/wallet/android/app/build.gradle index 0e171649..185b5606 100644 --- a/example/wallet/android/app/build.gradle +++ b/example/wallet/android/app/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 33 + compileSdkVersion flutter.compileSdkVersion ndkVersion flutter.ndkVersion compileOptions { diff --git a/example/wallet/android/fastlane/Appfile b/example/wallet/android/fastlane/Appfile new file mode 100644 index 00000000..0270cf93 --- /dev/null +++ b/example/wallet/android/fastlane/Appfile @@ -0,0 +1,2 @@ +json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one +package_name("com.walletconnect.flutterwallet") # e.g. com.krausefx.app diff --git a/example/wallet/android/fastlane/Fastfile b/example/wallet/android/fastlane/Fastfile new file mode 100644 index 00000000..8cd0f9a2 --- /dev/null +++ b/example/wallet/android/fastlane/Fastfile @@ -0,0 +1,93 @@ +# This file contains the fastlane.tools configuration +# You can find the documentation at https://docs.fastlane.tools +# +# For a list of all available actions, check out +# +# https://docs.fastlane.tools/actions +# +# For a list of all available plugins, check out +# +# https://docs.fastlane.tools/plugins/available-plugins +# + +# Uncomment the line if you want fastlane to automatically update itself +# update_fastlane + +default_platform(:android) + +platform :android do + + # Helper method to read the changelog + def read_changelog + changelog_file = '../../../../CHANGELOG.md' + changelog = "" + + if File.exist?(changelog_file) + File.open(changelog_file, 'r') do |file| + changelog = file.read + end + + # Split the changelog into entries based on the version header pattern + entries = changelog.split(/^##\s/) + + # Get the latest entry, which is the first one after splitting + latest_entry = entries[1] + + # Re-add the '##' header to the latest entry and remove empty lines + changelog = latest_entry.strip if latest_entry + changelog = changelog.gsub /^$\n/, '' + else + UI.user_error!("CHANGELOG.md file not found") + end + + changelog + end + + + lane :release_firebase do |options| + + slack_url = ENV['SLACK_URL'] + firebase_token = ENV['FIREBASE_TOKEN'] + firebase_wallet_id = ENV['FIREBASE_WALLET_ID'] + + _latest_release = firebase_app_distribution_get_latest_release( + app: "#{firebase_wallet_id}", + ) + _new_build_number = _latest_release[:buildVersion].to_i + 1 + _app_version = "#{options[:app_version]}" + _project_id = "#{options[:project_id]}" + + # gradle(task: 'assemble', build_type: 'Release') + sh "flutter build apk --build-name #{_app_version} --build-number #{_new_build_number} --dart-define='PROJECT_ID=#{_project_id}' --release" + + changelog = read_changelog + + firebase_app_distribution( + app: "#{firebase_wallet_id}", + groups: "flutter-team, javascript-team, kotlin-team, rust-team, unity, wc-testers", + android_artifact_path: '../build/app/outputs/flutter-apk/app-release.apk', + release_notes: changelog, + android_artifact_type: "APK", + ) + + slack( + message: "🔐 Web3Wallet Flutter #{_app_version} (#{_new_build_number}) for 🤖 Android successfully released!\n\n", + default_payloads: [], + attachment_properties: { + fields: [ + { + title: "CHANGELOG", + value: changelog, + # short: true + }, + { + title: "LINK", + value: "https://appdistribution.firebase.dev/i/2b8b3dce9e2831cd", + # short: true + }, + ] + } + ) + + end +end diff --git a/example/wallet/android/fastlane/Pluginfile b/example/wallet/android/fastlane/Pluginfile new file mode 100644 index 00000000..b18539bc --- /dev/null +++ b/example/wallet/android/fastlane/Pluginfile @@ -0,0 +1,5 @@ +# Autogenerated by fastlane +# +# Ensure this file is checked in to source control! + +gem 'fastlane-plugin-firebase_app_distribution' diff --git a/example/wallet/ios/fastlane/Fastfile b/example/wallet/ios/fastlane/Fastfile index 6507a297..d1506775 100644 --- a/example/wallet/ios/fastlane/Fastfile +++ b/example/wallet/ios/fastlane/Fastfile @@ -112,7 +112,7 @@ platform :ios do ) slack( - message: "🔐 Web3Wallet Flutter #{options[:app_version]} (#{new_build_number}) successfully released!\n\n", + message: "🔐 Web3Wallet Flutter #{options[:app_version]} (#{new_build_number}) for 🍎 iOS successfully released!\n\n", default_payloads: [], attachment_properties: { fields: [