Skip to content

Commit 39ad538

Browse files
author
Patrick Jackson
committed
updated version number and README
1 parent a7a00c7 commit 39ad538

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,19 @@ __Quick Facts__
1818
* Conversation Components & Transaction Sample ported
1919
* Supports v2 of Actions on Google API (if v1 is needed, make an issue please)
2020

21-
2221
## V2 Support
2322

2423
The V2 release is available by using:
2524

26-
compile 'com.tmsdurham.actions:actions-on-google:2.0.1'
27-
25+
compile 'com.tmsdurham.actions:actions-on-google:2.0.2'
26+
2827
The V2 is mostly complete, but may have a few bugs and missing features. All Conversation components and Transaction API are working. Dialogflow & ActionSDK has been tested and working. The API matches the official node.js API very closely. The sample in this repo is a good place to get started. The setup and samples in this readme have not been updated yet. There are a few differerences and additions:
2928

3029
* use action name from Dialogflow instead of intent name. The official library changed from using the action field, to using the intent name. There is a PR open on the official SDK for support for action. If/when this is merged, this library will be updated to match.
3130
* middleware not supported. Same functionality can be implemented without lib support by wrapping handlers in fuctions.
3231

32+
33+
3334
__V2 notes__:
3435
A common module was used with the intent on targeting multiple platforms (JS & possibly native). These other platforms are purely experimental at this time. A single code base for JVM and JS would be more efficient.
3536

build.gradle

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
12
allprojects {
23
group 'com.ticketmaster.actions'
3-
version '1-SNAPSHOT'
4+
version '2.0.2'
45

56
apply plugin: 'idea'
67
idea {
@@ -45,8 +46,17 @@ buildscript {
4546
}
4647
}
4748

49+
<<<<<<< Updated upstream
4850
ext {
4951
sdkVersion = '2.0.2-alpha' //version of deployed artifacts
52+
=======
53+
<<<<<<< Updated upstream
54+
repositories {
55+
mavenCentral()
56+
=======
57+
ext {
58+
sdkVersion = '2.0.2' //version of deployed artifacts
59+
>>>>>>> Stashed changes
5060
nodeVersion = '8.11.1'
5161
qunitVersion = '2.6.0'
5262
libraries = [
@@ -59,6 +69,13 @@ ext {
5969
kotlin_test_js : "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion",
6070
kotlin_test_junit : "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion",
6171
]
72+
<<<<<<< Updated upstream
73+
=======
74+
>>>>>>> Stashed changes
75+
}
76+
dependencies {
77+
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
78+
>>>>>>> Stashed changes
6279
}
6380

6481
subprojects {

settings.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
include ':sdk', ':sdk-gson-servlet', ':dialogflow-samples', ':action-sdk-samples'
12
rootProject.name = 'actions-on-google-kotlin'
23

34
include ':common'
@@ -6,4 +7,5 @@ include ':jvm'
67
include ':jvm-app'
78
include ':js'
89
include ':js-app'
9-
include ':sample-gae-jvm'
10+
//include ':sample-gae-jvm'
11+

0 commit comments

Comments
 (0)