1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

Fix CI: Duplicate platform classes issue caused by emoji-java library (#357)

This commit is contained in:
Evgenii Kozlov 2020-04-07 12:42:34 +02:00 committed by GitHub
parent d38d490430
commit 43826d6e34
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 4 deletions

View file

@ -12,7 +12,7 @@
### Fixes & tech 🚒
*
* Duplicate-platform-classes issue caused by `emoji-java` library breaks Github Actions CI (#357)
### Middleware ⚙️

View file

@ -42,5 +42,7 @@ android {
dependencies {
implementation project(':domain')
def lib = rootProject.ext.libraryPageIconPicker
implementation lib.emojiJava
implementation(lib.emojiJava) {
exclude group: 'org.json', module: 'json'
}
}

View file

@ -44,7 +44,9 @@ dependencies {
def unitTestDependencies = rootProject.ext.unitTesting
def lib = rootProject.ext.libraryPageIconPicker
implementation lib.emojiJava
implementation(lib.emojiJava) {
exclude group: 'org.json', module: 'json'
}
implementation project(':core-utils')
implementation project(':core-ui')

View file

@ -32,7 +32,9 @@ dependencies {
def unitTestDependencies = rootProject.ext.unitTesting
def lib = rootProject.ext.libraryPageIconPicker
implementation lib.emojiJava
implementation(lib.emojiJava) {
exclude group: 'org.json', module: 'json'
}
implementation applicationDependencies.kotlin
implementation applicationDependencies.coroutines