forked from KasperskyLab/Kaspresso
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6018f56
commit e9e28cb
Showing
141 changed files
with
371 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apply plugin: 'com.android.library' | ||
apply plugin: 'kotlin-android' | ||
|
||
apply from: 'dependencies.gradle' | ||
|
||
android { | ||
compileSdkVersion 28 | ||
|
||
defaultConfig { | ||
minSdkVersion 14 | ||
targetSdkVersion 28 | ||
versionCode 2 | ||
versionName kakao.version | ||
|
||
sourceSets { | ||
main.java.srcDirs += 'src/main/kotlin' | ||
main.res.srcDirs += 'src/main/res' | ||
} | ||
} | ||
} | ||
|
||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
|
||
dependencies { | ||
implementation libraries.kotlin_stdlib | ||
implementation libraries.design | ||
implementation libraries.espresso_core | ||
implementation libraries.espresso_web | ||
implementation libraries.espresso_intents | ||
implementation libraries.espresso_contrib | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
ext.versions = [ | ||
kotlin : '1.3.21', | ||
dokka : '0.9.17', | ||
android_gradle : '3.3.1', | ||
bintray : '1.7.3', | ||
maven : '1.5', | ||
oss : '4.5.4', | ||
androidSupport : "27.1.1", | ||
espresso : '3.0.2', | ||
espresso_rules : '1.0.2', | ||
espresso_runner: '1.0.2', | ||
junit : '4.12' | ||
] | ||
|
||
ext.libraries = [ | ||
kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin", | ||
kotlin_stdlib : "org.jetbrains.kotlin:kotlin-stdlib:$versions.kotlin", | ||
dokka : "org.jetbrains.dokka:dokka-android-gradle-plugin:$versions.dokka", | ||
android_gradle : "com.android.tools.build:gradle:$versions.android_gradle", | ||
bintray : "com.jfrog.bintray.gradle:gradle-bintray-plugin:$versions.bintray", | ||
maven : "com.github.dcendents:android-maven-gradle-plugin:$versions.maven", | ||
oss : "org.jfrog.buildinfo:build-info-extractor-gradle:$versions.oss", | ||
design : "com.android.support:design:$versions.androidSupport", | ||
espresso_runner : "com.android.support.test:runner:$versions.espresso_runner", | ||
espresso_rules : "com.android.support.test:rules:$versions.espresso_rules", | ||
espresso_core : "com.android.support.test.espresso:espresso-core:$versions.espresso", | ||
espresso_web : "com.android.support.test.espresso:espresso-web:$versions.espresso", | ||
espresso_contrib: "com.android.support.test.espresso:espresso-contrib:$versions.espresso", | ||
espresso_intents: "com.android.support.test.espresso:espresso-intents:$versions.espresso", | ||
junit : "junit:junit:$versions.junit" | ||
] | ||
|
||
def alias = System.getenv('BINTRAY_ALIAS') | ||
|
||
if (alias == null) { | ||
alias = '' | ||
} | ||
|
||
ext.kakao = [ | ||
group : 'com.agoda.kakao', | ||
artifact : 'kakao', | ||
name : 'kakao', | ||
description : 'Kotlin based DSL for fluent AT with Espresso', | ||
version : "2.0.0$alias", | ||
version_desc: "Kakao 2.0.0$alias", | ||
site : 'https://github.com/agoda-com/Kakao', | ||
github : 'https://github.com/agoda-com/Kakao.git' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="com.agoda.kakao"> | ||
<application /> | ||
</manifest> |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
3 changes: 1 addition & 2 deletions
3
...akao/delegates/DataInteractionDelegate.kt → ...akao/delegates/DataInteractionDelegate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
...akao/delegates/ViewInteractionDelegate.kt → ...akao/delegates/ViewInteractionDelegate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../impl/DataInteractionDelegateEmptyImpl.kt → .../impl/DataInteractionDelegateEmptyImpl.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../impl/ViewInteractionDelegateEmptyImpl.kt → .../impl/ViewInteractionDelegateEmptyImpl.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.