Skip to content
This repository has been archived by the owner on May 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #68 from Alviere/1.2.0_release
Browse files Browse the repository at this point in the history
1.2.0 version release
  • Loading branch information
cdsap committed Dec 19, 2017
2 parents 6e83ad4 + b51b5ab commit 0e33c97
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
9 changes: 5 additions & 4 deletions README.md
@@ -1,6 +1,7 @@
# Kakao
[![Github tag version](https://img.shields.io/github/tag/agoda-com/kakao.svg?label=version)](https://bintray.com/agoda/maven/kakao)
[![CircleCI](https://circleci.com/gh/agoda-com/Kakao/tree/master.svg?style=shield&circle-token=0d0ed659625be4efe54fe706c16894cd54213690)](https://circleci.com/gh/agoda-com/Kakao/tree/master)
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.2.0-blue.svg)](http://kotlinlang.org/)
[![Kotlin version badge](https://img.shields.io/badge/kotlin-1.2.10-blue.svg)](http://kotlinlang.org/)
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-Kakao-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/6314)

Nice and simple DSL for Espresso in Kotlin
Expand Down Expand Up @@ -198,7 +199,7 @@ Maven
<dependency>
<groupId>com.agoda.kakao</groupId>
<artifactId>kakao</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -209,10 +210,10 @@ repositories {
}
dependencies {
// For Gradle Version below 3.0.0
androidTestCompile 'com.agoda.kakao:kakao:1.1.0'
androidTestCompile 'com.agoda.kakao:kakao:1.2.0'
// For Gradle Version 3.0.0 or above
androidTestImplementation 'com.agoda.kakao:kakao:1.1.0'
androidTestImplementation 'com.agoda.kakao:kakao:1.2.0'
}
```

Expand Down
10 changes: 5 additions & 5 deletions buildsystem/dependencies.gradle
@@ -1,11 +1,11 @@
ext.versions = [
kotlin : '1.2.0',
kotlin : '1.2.10',
dokka : '0.9.15',
android_gradle : '3.0.0',
android_gradle : '3.0.1',
bintray : '1.7.3',
maven : '1.5',
oss : '4.5.4',
support_library: '26.1.0',
support_library: '27.0.2',
espresso : '3.0.1',
espresso_rules : '1.0.1',
espresso_runner: '1.0.1',
Expand Down Expand Up @@ -44,8 +44,8 @@ ext.kakao = [
artifact : 'kakao',
name : 'kakao',
description : 'Kotlin based DSL for fluent AT with Espresso',
version : "1.1.0$alias",
version_desc : "Kakao 1.1.0$alias",
version : "1.2.0$alias",
version_desc : "Kakao 1.2.0$alias",
site : 'https://github.com/agoda-com/Kakao',
github : 'https://github.com/agoda-com/Kakao.git'
]
5 changes: 2 additions & 3 deletions kakao/build.gradle
Expand Up @@ -5,12 +5,11 @@ apply from: "$rootDir/buildsystem/dependencies.gradle"
apply from: "$rootDir/buildsystem/dokka.gradle"

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 27

defaultConfig {
minSdkVersion 16
targetSdkVersion 26
targetSdkVersion 27
versionCode 1
versionName kakao.version
}
Expand Down
5 changes: 2 additions & 3 deletions sample/build.gradle
Expand Up @@ -3,12 +3,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 27

defaultConfig {
minSdkVersion 16
targetSdkVersion 26
targetSdkVersion 27
versionCode 1
versionName '1.0.0'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit 0e33c97

Please sign in to comment.