From a9c90ccd9f6b4ef91662767d4dc0bc68e1010103 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Mur=C3=ADn?= Date: Fri, 4 Aug 2017 14:04:05 +0200 Subject: [PATCH] Update to v1.0.1 - link to API docs updated, links to Android docs updated. Gradle update 3.0.0-alpha9. --- README.md | 8 ++++---- build.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8558984d..29562b34 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Sygic Travel Android SDK is a framework for embedding a rich set of Sygic Travel data within your application. It gives you an access to millions of places covering the whole world. -For further details see [Full SDK documentation](http://docs.sygictravelapi.com/android-sdk/1.0.0). +For further details see [Full SDK documentation](http://docs.sygictravelapi.com/android-sdk/1.0.1). ## Requirements @@ -36,7 +36,7 @@ repositories { Add dependency to your application module `build.gradle` file: ```gradle dependencies { - compile ('com.sygic.travel:sdk:1.0.0@aar'){ + compile ('com.sygic.travel:sdk:1.0.1@aar'){ transitive=true; } } @@ -70,7 +70,7 @@ To obtain your *API key* contact us at https://travel.sygic.com/b2b/api-key. ## Usage Introduction This example shows how to use the SDK to fetch a representative set of data. To define a set of places -you need to create a [placeQuery](http://docs.sygictravelapi.com/android-sdk/1.0.0/com/sygic/travel/sdk/model/placeQuery/Query.html) +you need to create a [placeQuery](http://docs.sygictravelapi.com/android-sdk/1.0.1/com/sygic/travel/sdk/model/placeQuery/Query.html) which describes the places which will be fetched - see [API documentation](http://docs.sygictravelapi.com/1.0/#section-places). @@ -156,7 +156,7 @@ override fun onPause() { ``` ## Basic Classes -For more details check our [documentation](http://docs.sygictravelapi.com/android-sdk/1.0.0). +For more details check our [documentation](http://docs.sygictravelapi.com/android-sdk/1.0.1). Class | Description :-------------------|:--------------------- diff --git a/build.gradle b/build.gradle index 3495f61b..b2001de0 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ buildscript { ext.gradle_plugin_version = properties.getProperty("gradle.plugin.version") dependencies { - classpath "com.android.tools.build:gradle:${gradle_plugin_version}" + classpath 'com.android.tools.build:gradle:3.0.0-alpha9' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"