Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug]: flutterfire configure throws ProcessException #350

Closed
1 task done
yamashita-room-335 opened this issue Jan 4, 2025 · 1 comment
Closed
1 task done

[bug]: flutterfire configure throws ProcessException #350

yamashita-room-335 opened this issue Jan 4, 2025 · 1 comment
Labels
bug Something isn't working Needs Attention OP created or responded to issue and it needs attention. triage

Comments

@yamashita-room-335
Copy link

yamashita-room-335 commented Jan 4, 2025

Is there an existing issue for this?

  • I have searched the existing issues.

CLI Version

1.0.0

Firebase Tools version

13.29.1

Flutter Doctor Output

flutter doctor -v
[!] Flutter (Channel [user-branch], 3.24.5, on Microsoft Windows [Version 10.0.22631.4602], locale ja-JP)
    ! Flutter version 3.24.5 on channel [user-branch] at C:\dev\flutter
      Currently on an unknown channel. Run `flutter channel` to switch to an official channel.
      If that doesn't fix the issue, reinstall Flutter by following instructions at https://flutter.dev/setup.
    ! Upstream repository unknown source is not a standard remote.
      Set environment variable "FLUTTER_GIT_URL" to unknown source to dismiss this error.
    • Framework revision dec2ee5c1f (7 weeks ago), 2024-11-13 11:13:06 -0800
    • Engine revision a18df97ca5
    • Dart version 3.5.4
    • DevTools version 2.37.3
    • If those were intentional, you can disregard the above warnings; however it is recommended to use "git" directly to perform update checks and upgrades.

[√] Windows Version (Installed version of Windows is version 10 or higher)

[√] Android toolchain - develop for Android devices (Android SDK version 35.0.0)
    • Android SDK at C:\Users\sugur\AppData\Local\Android\sdk
    • Platform android-35, build-tools 35.0.0
    • Java binary at: C:\Program Files\Android\Android Studio\jbr\bin\java
    • Java version OpenJDK Runtime Environment (build 21.0.3+-12282718-b509.11)
    • All Android licenses accepted.

[√] Chrome - develop for the web
    • Chrome at C:\Program Files\Google\Chrome\Application\chrome.exe

[√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.10.1)
    • Visual Studio at C:\Program Files\Microsoft Visual Studio\2022\Community
    • Visual Studio Community 2022 version 17.10.34928.147
    • Windows 10 SDK version 10.0.22621.0

[√] Android Studio (version 2024.1)
    • Android Studio at C:\Program Files\Android\Android Studio Koala Feature Drop
    • Flutter plugin can be installed from:
       https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
       https://plugins.jetbrains.com/plugin/6351-dart
    • Java version openjdk version "17.0.11" 2024-04-16

[√] Android Studio (version 2024.2)
    • Android Studio at C:\Program Files\Android\Android Studio
    • Flutter plugin can be installed from:
       https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
       https://plugins.jetbrains.com/plugin/6351-dart
    • Java version openjdk version "21.0.3" 2024-04-16

[√] VS Code (version 1.96.2)
    • VS Code at C:\Users\sugur\AppData\Local\Programs\Microsoft VS Code
    • Flutter extension version 3.102.0

[√] Connected device (4 available)
    • SH M25 (mobile)   • adb-SX3LHMB420105423-rrDg4j._adb-tls-connect._tcp • android-arm64  • Android 14 (API 34)
    • Windows (desktop) • windows                                           • windows-x64    • Microsoft Windows [Version 10.0.22631.4602]
    • Chrome (web)      • chrome                                            • web-javascript • Google Chrome 131.0.6778.205
    • Edge (web)        • edge                                              • web-javascript • Microsoft Edge 131.0.2903.112

[√] Network resources
    • All expected network resources are available.

! Doctor found issues in 1 category.

Description

Running flutterfire configure will throw a ProcessException.

Steps to reproduce

  1. Run command 'flutterfire configure'
  2. Input Yes ? You have an existing firebase.jsonfile and possibly already configured your project for Firebase. Would you prefer to reuse the values in your existingfirebase.json file to configure your project? (y/n) › yes

Expected behavior

Throwed Error.

flutterfire configure
? You have an existing `firebase.json` file and possibly already configured your project for Firebase. Would you prefer to reuse the values in your existing `firebase✔ You have an existing `firebase.json` file and possibly already configured your project for Firebase. Would you prefer to reuse the values in your existing `firebase.json` file to configure your project? · yes 
ProcessException: 指定されたファイルが見つかりません。

  Command: ruby -e "require 'xcodeproj'
xcodeFile='C:\src\bed_wetting_calendar\ios\Runner.xcodeproj'
runScriptName='FlutterFire: \"flutterfire upload-crashlytics-symbols\"'
project = Xcodeproj::Project.open(xcodeFile)


# multi line argument for bash script
bashScript = %q(
#!/bin/bash
PATH=${PATH}:$FLUTTER_ROOT/bin:$HOME/.pub-cache/bin
flutterfire upload-crashlytics-symbols --upload-symbols-script-path=$PODS_ROOT/FirebaseCrashlytics/upload-symbols --platform=ios --apple-project-path=${SRCROOT} --env
-platform-name=${PLATFORM_NAME} --env-configuration=${CONFIGURATION} --env-project-dir=${PROJECT_DIR} --env-built-products-dir=${BUILT_PRODUCTS_DIR} --env-dwarf-dsym-folder-path=${DWARF_DSYM_FOLDER_PATH} --env-dwarf-dsym-file-name=${DWARF_DSYM_FILE_NAME} --env-infoplist-path=${INFOPLIST_PATH} --default-config=default
)

for target in project.targets
  if (target.name == 'Runner')
    phase = target.shell_script_build_phases().find do |item|
      if defined? item && item.name
        item.name == runScriptName
      end
    end

    if (!phase.nil?)
      phase.remove_from_project()
    end

    phase = target.new_shell_script_build_phase(runScriptName)
    phase.shell_script = bashScript
    project.save()
  end
end
"

Screenshots

No response

Additional context and comments

Since it is running in a Japanese environment, the logs are also pasted in Japanese as they are.

The version of Flutter is a bit old because of another Issue to address.
flutter/flutter#160342

I think it is similar to this issue, but it is closed, so I created a new one.
#252

@yamashita-room-335 yamashita-room-335 added bug Something isn't working triage labels Jan 4, 2025
@russellwheatley
Copy link
Member

I've reopened this issue as it shouldn't have been closed: #252

@github-actions github-actions bot added the Needs Attention OP created or responded to issue and it needs attention. label Jan 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Needs Attention OP created or responded to issue and it needs attention. triage
Projects
None yet
Development

No branches or pull requests

2 participants