我遇到了Flutter开发和IntelliJ IDEA的奇怪问题。我正在使用IntelliJ IDEA 2017 1.4 Build编号IC-171.4694.23开发一个颤动的应用程序,我无法在连接的Android设备上运行应用程序,当我运行应用程序时,它显示运行的后台进程"运行gradle assembleDebug ......"然后进程停止,没有任何反应,尽管我之前能够运行和调试它。 尝试解决方案,
我也试过Android模拟器,同样的事情发生了。所以我认为问题不在于设备。任何帮助表示赞赏。
更新
当我将image_picker插件添加到pubspec.yaml时会发生此问题。
dependencies:
flutter:
sdk: flutter
image_picker:
答案 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
}
}