IAMがフラッターを実行しようとしているときにエラーに直面しています。
D:\fluttapp\testbuild>flutter run
Launching lib/main.Dart on Google Pixel 2 XL in debug mode...
Initializing gradle... 2.1s
Resolving dependencies...
* Error running Gradle:
ProcessException: Process "D:\fluttapp\testbuild\Android\gradlew.bat" exited abnormally:
FAILURE: Build failed with an exception.
* Where:
Build file 'D:\fluttapp\testbuild\Android\app\build.gradle' line: 57
* What went wrong:
A problem occurred evaluating project ':app'.
> path may not be null or empty string. path='null'
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to
get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 6s
Command: D:\fluttapp\testbuild\Android\gradlew.bat app:properties
Please review your Gradle project setup in the Android/ folder.
D:\fluttapp\testbuild>flutter doctor -v
[√] Flutter (Channel beta, v1.1.8, on Microsoft Windows [Version 10.0.17134.556], locale
en-IN)
• Flutter version 1.1.8 at D:\flutter
• Framework revision 985ccb6d14 (3 weeks ago), 2019-01-08 13:45:55 -0800
• Engine revision 7112b72cc2
• Dart version 2.1.1 (build 2.1.1-dev.0.1 ec86471ccc)
[√] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
• Android SDK at D:\Users\Bhanu\AppData\Local
• Android NDK location not configured (optional; useful for native profiling support)
• Platform Android-28, build-tools 28.0.3
• Android_HOME = D:\Users\Bhanu\AppData\Local
• Java binary at: D:\Program Files\Android\Android Studio\jre\bin\Java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
• All Android licenses accepted.
[√] Android Studio (version 3.1)
• Android Studio at D:\Program Files\Android\Android Studio
• Flutter plugin version 29.0.1
• Dart plugin version 173.4700
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b02)
[√] Connected device (1 available)
• Google Pixel 2 XL • 192.168.50.101:5555 • Android-x86 • Android 9 (API 28)
• No issues found!
ここにレポを追加しました。私はリリースアプリバージョンを作成するためにサンプルコードを取得しましたが、それらを生成できません。キーストアが作成され、コードリポジトリに追加されます
テストまたはデバッグのみを行い、リリースを行わない場合は、ビルドタイプをリリースではなくデバッグに変更することを検討してください。
In <APP_FOLDER>/Android/app/build.gradle
buildTypes {
release {
signingConfig signingConfigs.debug
}
}
1)このプロジェクトのキーを確認してください "key.jks"
「gradle.build」に移動します
そしてそれを交換してください
storeFile file("key.jks")
と
storeFile file(keystoreProperties['storeFile'])