Monday, June 20, 2016

GQL Parser 1.0.1

The first release of GQL Parser was compiled with Java 8 which made it impossible to include in Android projects unless the project was using buildToolsVersion 24.

A version 1.0.1 is now available on github and bintray.  It is compiled with Java 7 and does not require buildToolsVersion 24 when included in Android projects.

Including in Gradle build file

buildscript {
    repositories {
        jcenter()
    }
}

dependencies {
    compile 'mobi.tjorn.parsers:gql:1.0.1'
}

Sunday, June 19, 2016

GQL Parser is available

First release of GQL Parser library is available on github and bintray.


Including in Gradle build file


buildscript {
    repositories {
        jcenter()
    }
}

dependencies {
    compile 'mobi.tjorn.parsers:gql:1.0.0'
}

The above will include classes, sources and API docs.  For more details visit the project's github page.