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:
parent
d38d490430
commit
43826d6e34
4 changed files with 10 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
|||
|
||||
### Fixes & tech 🚒
|
||||
|
||||
*
|
||||
* Duplicate-platform-classes issue caused by `emoji-java` library breaks Github Actions CI (#357)
|
||||
|
||||
### Middleware ⚙️
|
||||
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
}
|
|
@ -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')
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue