├── quickstart-with-apollo ├── ApolloDemo │ ├── app │ │ ├── .gitignore │ │ ├── src │ │ │ ├── main │ │ │ │ ├── graphql │ │ │ │ │ └── com │ │ │ │ │ │ ├── AllPosts.graphql │ │ │ │ │ │ ├── CreatePost.graphql │ │ │ │ │ │ └── schema.json │ │ │ │ ├── res │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── menu │ │ │ │ │ │ └── new_post.xml │ │ │ │ │ └── layout │ │ │ │ │ │ ├── post_item_entry.xml │ │ │ │ │ │ ├── dialog_create_post.xml │ │ │ │ │ │ └── activity_main.xml │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── nburk │ │ │ │ │ └── apollodemo │ │ │ │ │ ├── dummy │ │ │ │ │ └── DummyContent.java │ │ │ │ │ ├── ApolloDemoApplication.java │ │ │ │ │ ├── MainRecyclerViewAdapter.java │ │ │ │ │ └── MainActivity.java │ │ │ ├── test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── nburk │ │ │ │ │ └── apollodemo │ │ │ │ │ └── ExampleUnitTest.java │ │ │ └── androidTest │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── nburk │ │ │ │ └── apollodemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ ├── proguard-rules.pro │ │ └── build.gradle │ ├── settings.gradle │ ├── .idea │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── vcs.xml │ │ ├── libraries │ │ │ ├── javax_inject_1.xml │ │ │ ├── jsr305_1_3_9.xml │ │ │ ├── javawriter_2_1_1.xml │ │ │ ├── hamcrest_library_1_3.xml │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ ├── javax_annotation_api_1_2.xml │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ ├── junit_4_12.xml │ │ │ ├── okio_1_13_0.xml │ │ │ ├── cache_2_0_2.xml │ │ │ ├── jsr250_api_1_0.xml │ │ │ ├── okhttp_3_8_1.xml │ │ │ ├── picasso_2_5_2.xml │ │ │ ├── hamcrest_core_1_3.xml │ │ │ ├── apollo_api_0_4_2.xml │ │ │ ├── rules_0_5.xml │ │ │ ├── runner_0_5.xml │ │ │ ├── apollo_runtime_0_4_2.xml │ │ │ ├── support_annotations_26_0_0_alpha1.xml │ │ │ ├── design_26_0_0_alpha1.xml │ │ │ ├── espresso_core_2_2_2.xml │ │ │ ├── support_v4_26_0_0_alpha1.xml │ │ │ ├── transition_26_0_0_alpha1.xml │ │ │ ├── appcompat_v7_26_0_0_alpha1.xml │ │ │ ├── support_compat_26_0_0_alpha1.xml │ │ │ ├── recyclerview_v7_26_0_0_alpha1.xml │ │ │ ├── support_core_ui_26_0_0_alpha1.xml │ │ │ ├── support_fragment_26_0_0_alpha1.xml │ │ │ ├── support_core_utils_26_0_0_alpha1.xml │ │ │ ├── espresso_idling_resource_2_2_2.xml │ │ │ ├── support_media_compat_26_0_0_alpha1.xml │ │ │ ├── support_vector_drawable_26_0_0_alpha1.xml │ │ │ ├── animated_vector_drawable_26_0_0_alpha1.xml │ │ │ └── exposed_instrumentation_api_publish_0_5.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ ├── gradle.xml │ │ ├── compiler.xml │ │ └── misc.xml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── build.gradle │ ├── gradle.properties │ ├── gradlew.bat │ ├── README.md │ └── gradlew └── README.md ├── README.md └── .gitignore /quickstart-with-apollo/ApolloDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/graphql/com/AllPosts.graphql: -------------------------------------------------------------------------------- 1 | query AllPosts { 2 | allPosts { 3 | id 4 | description 5 | imageUrl 6 | } 7 | } -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/graphql/com/CreatePost.graphql: -------------------------------------------------------------------------------- 1 | mutation CreatePost($description: String!, $imageUrl: String!) { 2 | createPost(description: $description, imageUrl: $imageUrl) { 3 | id 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graphcool-examples/android-graphql/HEAD/quickstart-with-apollo/ApolloDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android & GraphQL 2 | 3 | This repository contains a variety of sample projects demonstrating how to get started with Android & GraphQL in different use cases. 4 | 5 | Setup instructions for each sample project can be found in the corresponding README. 6 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ApolloDemo 3 | Posts 4 | Post Detail 5 | 6 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #27AE60 4 | #0E9C4A 5 | #E00097 6 | 7 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 25 11:38:54 CEST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 200dp 5 | 200dp 6 | 16dp 7 | 8 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/menu/new_post.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | android:id="@+id/action_favorite" 5 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/javax_inject_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/jsr305_1_3_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/javawriter_2_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/hamcrest_library_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/hamcrest_integration_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/javax_annotation_api_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/constraint_layout_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/test/java/com/example/nburk/apollodemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.example.nburk.apollodemo; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.3' 9 | classpath 'com.apollographql.apollo:apollo-gradle-plugin:0.4.2' 10 | } 11 | } 12 | 13 | allprojects { 14 | repositories { 15 | jcenter() 16 | } 17 | } 18 | 19 | task clean(type: Delete) { 20 | delete rootProject.buildDir 21 | } 22 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/okio_1_13_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/cache_2_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/jsr250_api_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/okhttp_3_8_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/picasso_2_5_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/apollo_api_0_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/rules_0_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/runner_0_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/apollo_runtime_0_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_annotations_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/design_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/espresso_core_2_2_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_v4_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/transition_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/appcompat_v7_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_compat_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/recyclerview_v7_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_core_ui_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_fragment_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_core_utils_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/espresso_idling_resource_2_2_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_media_compat_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/support_vector_drawable_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/animated_vector_drawable_26_0_0_alpha1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/libraries/exposed_instrumentation_api_publish_0_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | -------------------------------------------------------------------------------- /quickstart-with-apollo/ApolloDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |