无法将 Gradle 依赖项添加到我的代号 One 项目
Cannot add Gradle dependencies to my Codename One Project
我正在使用 Codename One 使用 Netbeans 构建一个简单的在线应用程序,我想使用 Ably 进行互联网通信,但我在导入 Ably API.
时遇到了问题
Ably's site tells me that I need to add the line compile 'io.ably:ably-java:1.0.0'
to the build.gradle dependencies section, but there is no build.gradle in my project. After seeing ,我添加了一个新的构建提示,其中 gradleDependencies
作为键,compile 'io.ably:ably-java:1.0.0'
作为值。
当我尝试 运行 项目时,它仍然失败并告诉我 error: package io.ably.lib.types does not exist
import io.ably.lib.types.*;
。
我做了更多的研究,但一切似乎都在说我做对了,比如 this and 。我也尝试将构建提示键更改为 android.gradleDep
,但没有任何改变。
这是它在 Netbeans 上的样子:
这里是构建提示 window:
如果您需要更多信息,请告诉我。谢谢!
构建提示应该是 android.gradleDep
而不是 gradleDep
,因为它是一个 Android 特定标志。
我也建议在依赖项的末尾添加一个分号,例如:compile 'io.ably:ably-java:1.0.0';
我正在使用 Codename One 使用 Netbeans 构建一个简单的在线应用程序,我想使用 Ably 进行互联网通信,但我在导入 Ably API.
时遇到了问题Ably's site tells me that I need to add the line compile 'io.ably:ably-java:1.0.0'
to the build.gradle dependencies section, but there is no build.gradle in my project. After seeing gradleDependencies
作为键,compile 'io.ably:ably-java:1.0.0'
作为值。
当我尝试 运行 项目时,它仍然失败并告诉我 error: package io.ably.lib.types does not exist
import io.ably.lib.types.*;
。
我做了更多的研究,但一切似乎都在说我做对了,比如 this and android.gradleDep
,但没有任何改变。
这是它在 Netbeans 上的样子:
这里是构建提示 window:
如果您需要更多信息,请告诉我。谢谢!
构建提示应该是 android.gradleDep
而不是 gradleDep
,因为它是一个 Android 特定标志。
我也建议在依赖项的末尾添加一个分号,例如:compile 'io.ably:ably-java:1.0.0';