Google Cloud Endpoint包myApi不存在 - Android Studio

时间:2017-09-12 19:02:51

标签: android google-cloud-endpoints

我正在尝试将Google Cloud Endpoint添加到我的Android应用程序中。在我的EndpointAsyncTask课程中,我使用MyApi导入它,如下所示:

import com.example.adamzarn.myapplication.backend.myApi.MyApi;

当我运行我的项目时,我收到此错误:

  

错误:(8,56)错误:包   com.example.adamzarn.myapplication.backend.myApi不存在

然而,确实存在:

enter image description here

为什么我收到此错误?

1 个答案:

答案 0 :(得分:1)

检查build.gradle班级所在模块中的EndpointAsyncTask文件。确保对backend模块的依赖性是正确的,并确保没有冲突或重复。它应该是这样的:

dependencies {
    compile project(path: 'backend', configuration: 'android-endpoints')
}

这可确保您的模块可以看到backend模块。

请参阅https://github.com/GoogleCloudPlatform/gradle-appengine-plugin