Kotlin Android Apollo 客户端未生成 Schema 类

Posted

技术标签:

【中文标题】Kotlin Android Apollo 客户端未生成 Schema 类【英文标题】:Kotlin Android Apollo client is not generating Schema classes 【发布时间】:2020-01-16 06:45:12 【问题描述】:

我正在开发一个 android 应用程序。在我的应用程序中,我使用 Apollo 客户端来使用 GraphQL API。当我构建项目时,它不会基于 schema.json 文件生成类。这是我到目前为止所做的。

这是我的应用程序

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'com.apollographql.android'

android 
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig 
        applicationId "com.example.memento"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        
    


dependencies 
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.core:core-ktx:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.apollographql.apollo:apollo-runtime:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    compileOnly 'org.jetbrains:annotations:13.0'
    testCompileOnly 'org.jetbrains:annotations:13.0'

这是我的大项目

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript 
    ext.kotlin_version = '1.3.41'
    repositories 
        google()
        jcenter()
        maven  url 'https://oss.sonatype.org/content/repositories/snapshots/' 

    
    dependencies 
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.apollographql.apollo:apollo-gradle-plugin:1.1.3'
        classpath 'com.apollographql.apollo:apollo-gradle-plugin:1.2.0-SNAPSHOT'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    


allprojects 
    repositories 
        google()
        jcenter()

    


task clean(type: Delete) 
    delete rootProject.buildDir

我有 schema.json,这是项目结构

当我构建项目时,会在此文件夹中生成类

但我不能在我的代码中调用这些类。它显示此错误。

如何在我的代码中使用这些类?

【问题讨论】:

您可以在哪里解决这个问题。我在 Kotlin 模型中看到了同样的情况? 【参考方案1】:

您需要在与您的 Schema.json 位于同一位置的具有.graphql 扩展名的文件中进行查询。然后重建您的项目,它将生成类。

【讨论】:

以上是关于Kotlin Android Apollo 客户端未生成 Schema 类的主要内容,如果未能解决你的问题,请参考以下文章

使用带有 Kotlin 和流的 Android 上的 Apollo 订阅 GraphQL 时处理网络错误

如何在 Kotlin Android 中读取 Apollo Client 响应/GraphQL 响应的响应数据

从子包访问生成的 Apollo 类 - Kotlin

apollo-android可以用作java客户端吗?

apollo-android可以用作java客户端吗?

如何在 GraphQL apollo-android 客户端中获取 HTTP 状态码