You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 26, 2022. It is now read-only.
I was trying to compile for Android -4.4 and I got a DMX File Conflict for the Java Annotations for CheckNotNull file class.
Error on running app:
:app:transformClassesWithDexForDebug Ljavax/annotation/CheckForNull;
I had to add the following to compile successfully:
compile ('com.github.andriydruk:rxdnssd:0.9.1') {
exclude group : 'com.android.support', module: 'support-annotations'
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
The text was updated successfully, but these errors were encountered:
I was trying to compile for Android -4.4 and I got a DMX File Conflict for the Java Annotations for CheckNotNull file class.
Error on running app:
:app:transformClassesWithDexForDebug Ljavax/annotation/CheckForNull;
I had to add the following to compile successfully:
compile ('com.github.andriydruk:rxdnssd:0.9.1') {
exclude group : 'com.android.support', module: 'support-annotations'
exclude group: 'com.google.code.findbugs', module: 'annotations'
}
The text was updated successfully, but these errors were encountered: