dankito / RichTextEditor

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

Getting illigal char in resource issue #75

Open gulabsagevadiya opened 1 year ago

gulabsagevadiya commented 1 year ago

Illegal char <:> at index 65: journal.app-mergeDebugResources-51:/values/values.xml I can't build files after implementing this lib. Anyone knows how to fix this issue?

gulabsagevadiya commented 1 year ago

from my guess problem is coming from this dependency Please Help me to resolve this issue your lib is awesome to work with I have checked your apk file

implementation "net.dankito.utils:android-utils:1.1.1", { exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7' exclude group: 'com.android.support', module: 'appcompat-v7' exclude group: 'com.android.support', module: 'design' }

implementation "net.dankito.utils:java-utils:1.0.16", { exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk7' }

implementation "net.dankito.filechooserdialog:filechooserdialog-android:1.3.1" , { exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib' exclude group: 'com.android.support', module: 'appcompat-v7' exclude group: 'com.android.support', module: 'design' exclude group: 'com.android.support.constraint', module: 'constraint-layout' exclude module: 'recyclerview-v7' }

Clement-Cauet commented 1 year ago

Hello, I have the same problem with implementation 'net.dankito.richtexteditor:richtexteditor-android:2.0.20', all dependencies have the last update. This is maybe a conflict problem with another dependencies.

My dependencies :

dependencies { implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.8.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.navigation:navigation-fragment:2.5.3' implementation 'androidx.navigation:navigation-ui:2.5.3' implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' implementation 'jp.wasabeef:richeditor-android:2.0.0' implementation 'net.dankito.richtexteditor:richtexteditor-android:2.0.20' implementation 'com.google.code.gson:gson:2.8.9' implementation 'com.google.android.gms:play-services-maps:18.1.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

}

Please help me.

Thank you in advance