IntelliJ IDEA不会运行Flutter应用程序

时间:2017-06-29 09:23:40

标签: intellij-idea flutter

我遇到了Flutter开发和IntelliJ IDEA的奇怪问题。我正在使用IntelliJ IDEA 2017 1.4 Build编号IC-171.4694.23开发一个颤动的应用程序,我无法在连接的Android设备上运行应用程序,当我运行应用程序时,它显示运行的后台进程"运行gradle assembleDebug ......"然后进程停止,没有任何反应,尽管我之前能够运行和调试它。 尝试解决方案,

  1. 禁用/启用adb插件。
  2. 禁用/启用开发人员选项和USB调试。
  3. 重新安装颤振。
  4. 我也试过Android模拟器,同样的事情发生了。所以我认为问题不在于设备。任何帮助表示赞赏。

    更新

    当我将image_picker插件添加到pubspec.yaml时会发生此问题。

      dependencies:
        flutter:
          sdk: flutter
       image_picker:
    

1 个答案:

答案 0 :(得分:1)

flutter run是否因以下错误而失败?

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app'.
> Failed to notify project evaluation listener.
   > Could not resolve all dependencies for configuration ':app:_debugApkCopy'.
      > Could not find com.github.esafirm.android-image-picker:imagepicker:1.5.0.
        Required by:
            project :app > project :image_picker
   > Could not get unknown property 'compileDebugJavaWithJavac' for project ':app' of type org.gradle.api.Project.

如果是这样,您可以按照image_picker文档中的说明修改build.gradle来解决此问题。

allprojects {
   repositories {
       jcenter()
       maven { url "https://maven.google.com" }
       maven { url "https://jitpack.io" }    // add this line
   }
}