Generates Retrofit interfaces and related models from Google Cloud Endpoint (GCE) discovery files.
Put the configuration files for each GCE server in a directory under src/main/gce2retrofit.
discovery.json (required)
The discovery doc from GCE. e.g. https://2-dot-test-pont.appspot.com/_ah/api/discovery/v1/apis/helloworld/v1/rest
methods.csv (optional)
Valid values are sync, async and reactive. If omitted, both synchronous and asynchronous
interfaces will be generated.
classmap.tsv (optional)
Map fields with the specified names to the specified types.
room.json (optional)
Map classes/fields with specific room annotations and attributes.
Format:
{
"class_name" : [
{
"annotation1" : "annotation_name1",
"attributes" : {
"attribute_name" : "value",
"attribute_name_2" : "value_2"
}
}
],
"class_name.field_name" : [
{
"annotation1" : "annotation_name1"
},
{
"annotation2" : "annotation_name2"
}
]
}
See gce2retrofit/src/test/resources/room/room.json for an example.
Code will be generated in build/generated/source/gce2retrofit/
See sample-java/src/main/gce2retrofit/helloworld
for an example.
Apply the plugin in your build.gradle:
buildscript {
repositories {
jcenter()
maven {
url 'http://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
classpath 'com.sqisland:gce2retrofit:2.0.0-SNAPSHOT'
}
}
apply plugin: 'com.sqisland.gce2retrofit'
Migrate your project to AndroidX
Room.json file has been updated so each type(class/field) takes a list of annotations.
Primitives have been replaced by Objects e.g. Integer instead of int. Please go through your
code and make sure that you check for null before using the value of any Boolean, Integer,
Float and Double.
Please see CONTRIBUTING.md.