Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISSUE-541: add kakao-ext-clicks dependency #542

Merged
merged 1 commit into from Jul 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions gradle/libs.versions.toml
Expand Up @@ -2,8 +2,9 @@
kotlin = "1.7.10"
detekt = "1.21.0"
espresso = "3.5.1"
kakao = "3.3.0"
kakao = "3.4.1"
kakaoCompose = "0.2.3"
kakaoExtClicks = "1.0.0"
allure = "2.4.0"
compose = "1.3.1"
composeCompiler = "1.3.1"
Expand Down Expand Up @@ -50,6 +51,7 @@ uiAutomator = "androidx.test.uiautomator:uiautomator:2.2.0"
robolectric = "org.robolectric:robolectric:4.8.2"
kakao = { module = "io.github.kakaocup:kakao", version.ref = "kakao" }
kakaoCompose = { module = "io.github.kakaocup:compose", version.ref = "kakaoCompose" }
kakaoExtClicks = { module = "io.github.kakaocup:kakao-ext-clicks", version.ref = "kakaoExtClicks" }
junit = "junit:junit:4.13.2"
junitJupiter = "org.junit.jupiter:junit-jupiter:5.9.0"
truth = "com.google.truth:truth:1.1.3"
Expand All @@ -63,7 +65,7 @@ androidXTestExtJunit = "androidx.test.ext:junit:1.1.4"
androidXTestExtJunitKtx = "androidx.test.ext:junit-ktx:1.1.4"
androidXLifecycleRuntimeKtx = "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"

composeCompiler = { module = "androidx.compose.compiler:compiler", version.ref="composeCompiler" }
composeCompiler = { module = "androidx.compose.compiler:compiler", version.ref = "composeCompiler" }
composeActivity = "androidx.activity:activity-compose:1.5.1"
composeUiTooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
composeMaterial = { module = "androidx.compose.material:material", version.ref = "compose" }
Expand Down
10 changes: 5 additions & 5 deletions kaspresso/NOTICE.txt
Expand Up @@ -462,7 +462,7 @@ Distributed under the terms of the Apache License Version 2.0
-----------------------------------------------------------------------


io.github.kakaocup:kakao 3.2.3
io.github.kakaocup:kakao 3.4.1
https://github.com/KakaoCup/Kakao
-----------------------------------------------------------------------
Distributed under the terms of the Apache License Version 2.0
Expand Down Expand Up @@ -589,7 +589,7 @@ Sun License

Developed at SunSoft, a Sun Microsystems, Inc. business.
Permission to use, copy, modify, and distribute this
software is freely granted, provided that this notice
software is freely granted, provided that this notice
is preserved.

org.jetbrains.kotlin:kotlin-stdlib-common 1.7.21
Expand Down Expand Up @@ -620,7 +620,7 @@ Distributed under the terms of the Apache License Version 2.0

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
Expand Down Expand Up @@ -697,7 +697,7 @@ Distributed under the terms of the BSD License (three-clause)


==
the BSD License (three-clause)
the BSD License (three-clause)
==
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Expand Down Expand Up @@ -810,4 +810,4 @@ the MIT License
==
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1 change: 1 addition & 0 deletions kaspresso/build.gradle.kts
Expand Up @@ -22,6 +22,7 @@ publish {
dependencies {
api(projects.kautomator)
api(libs.kakao)
api(libs.kakaoExtClicks)
api(libs.bundles.espresso)
api(libs.uiAutomator)
api(libs.androidXCore)
Expand Down