gpt4 book ai didi

gradle - 评估项目 ':app' 时出现问题。 > 路径不能为 null 或空字符串。路径 ='null'

转载 作者:IT王子 更新时间:2023-10-29 06:47:22 25 4
gpt4 key购买 nike

我在尝试运行 flutter 时遇到错误。

 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!

我在这里添加了 repo 协议(protocol)。我已经使用示例代码来制作发布应用程序版本但无法生成它们。 keystore 已创建并添加到代码库中

https://github.com/bhanu888/buildapk

最佳答案

对我来说这是一个路径问题。

我正在关注 flutter 指南 https://flutter.io/docs/deployment/android

Create a file named <app dir>/android/key.properties that contains a reference to your keystore:

出于某种原因,我(错误地)将我的“key.properties”放在了 app_dir/android/app 文件夹中,这给了我错误。

* What went wrong:
A problem occurred evaluating project ':app'.
> path may not be null or empty string. path='null'

所以检查你的路径,以及你的文件所在的位置:)

奖金信息:对 med 有帮助的是检查具有不同设置的“gradle.build”文件,而它总是给我带来问题的 storeFile 文件(keystoreProperties['storeFile'])。尝试将其注释掉,或将其更改为:

storeFile file("key.jks")  

如果这有效,您就知道您拥有“key.jks”文件的正确路径。然后尝试引入 poperties 文件(keystoreProperties)喜欢

storeFile file(keystoreProperties['storeFile']) 

一开始没有用,但现在可以了:)

因此请再次检查您的“key.jks”和“key.properties”文件是否位于“正确”位置,以及您如何指向它们。

关于gradle - 评估项目 ':app' 时出现问题。 > 路径不能为 null 或空字符串。路径 ='null',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54457245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com