Search code examples
androidgraphqlapolloandroid-studio-2.3graphql-java

Using the Apollo GraphQL client for Android


I am using from the below sample, but it gets me an error when I add libraries:

Using the Apollo GraphQL client for Android

Below is my build.gradle file (project):

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

buildscript {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.1'
        classpath 'com.apollographql.android:gradle-plugin:0.1.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        mavenCentral()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Below is my build.gradle file (Module):

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.admin.apollotest"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.1'
    testCompile 'junit:junit:4.12'

    compile 'com.apollographql.android:api:0.1.0' // the apollo runtime classes needed by auto-generated code
    compile 'com.squareup.retrofit2:retrofit:2.1.0' // retrofit2
    compile 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0' // rxjava2 to use the Observables stuff
    compile 'com.apollographql.android:converter-pojo:0.1.0' // converts retrofit responses to pojos (ApolloConverterFactory)
}
apply plugin: 'com.apollographql.android'

apollo {
    // This tells the Apollo compiler to generate actual static classes instead of just interfaces (more on that later)
    generateClasses = true
}

Get me the below error:

Enter image description here


Solution

  • The error is "Couldn't find a schema file. Please ensure a valid schema.json file exists in the sourceSet directory".

    Use the apollo-codegen download-schema command to create this JSON. This takes the URL of the GraphQL endpoint as a parameter, followed by --output and the path to where the JSON should be stored. The JSON should go src/main/graphql/ of your project, and in there into subdirectories representing the Java package that you want your code to go into (e.g., --output src/main/graphql/com/commonsware/graphql/trips/api/schema.json).

    So, overall, you might have:

    apollo-codegen download-schema https://graphql-demo.commonsware.com/0.1/graphql --output src/main/graphql/com/commonsware/graphql/trips/api/schema.json