Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实现了一个包'apollo-android'并从'schema.json'生成'FeedQuery'java文件。但我无法将该“FeedQuery”java 文件导入我的项目。
apollo android 插件确实依赖于 android gradle 插件。因此,如果您生成的类在java-library模块中,您将无法导入它们。
java-library
假设您将您的 graphql 查询放在一个 android 模块中,请确保您创建了一个与您的模块源目录结构相同的目录结构/graphql
/graphql
例如如果你的模块目录结构如下
src/main/java/com/example/
然后创建graphql目录结构如下。
src/main/graphql/com/example/
完成此操作后,清理并重建并再次尝试导入类。