dankito / RichTextEditor

Rich text WYSIWYG editor for Android and JavaFX
Apache License 2.0
92 stars 36 forks source link

having older kotlin stdlib version #67

Open babbar01 opened 3 years ago

babbar01 commented 3 years ago

jetified-kotlin-stdlib-jdk7-1.3.72.jar found and is not compatible with my application -> change to latest

dankito commented 3 years ago

For a quick workaround you could do something like this:

    implementation "net.dankito.readability4j:readability4j:$readability4JVersion", {
        exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7'
    }

Does it help?

babbar01 commented 3 years ago

image

It is getting compiled but showing warnings Is it okay to use that with warning ?

For a quick workaround you could do something like this:

    implementation "net.dankito.readability4j:readability4j:$readability4JVersion", {
        exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7'
    }

Does it help?