plugins { id 'com.android.library' } android { compileSdkVersion 30 buildToolsVersion "30.0.3" defaultConfig { minSdkVersion 22 targetSdkVersion 30 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } compileOptions { coreLibraryDesugaringEnabled true sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } testOptions { unitTests { includeAndroidResources true } } } dependencies { implementation 'com.github.nextcloud:Android-SingleSignOn:0.5.6' implementation 'com.github.stefan-niedermann:android-commons:0.2.0' implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'androidx.lifecycle:lifecycle-livedata:2.3.1' implementation 'org.jsoup:jsoup:1.14.3' def markwonVersion = '4.6.2' implementation "io.noties.markwon:core:$markwonVersion" implementation "io.noties.markwon:editor:$markwonVersion" implementation "io.noties.markwon:ext-strikethrough:$markwonVersion" implementation "io.noties.markwon:ext-tables:$markwonVersion" implementation "io.noties.markwon:ext-tasklist:$markwonVersion" implementation "io.noties.markwon:html:$markwonVersion" implementation "io.noties.markwon:image:$markwonVersion" implementation "io.noties.markwon:image-glide:$markwonVersion" implementation "io.noties.markwon:linkify:$markwonVersion" implementation "io.noties.markwon:simple-ext:$markwonVersion" implementation "io.noties.markwon:inline-parser:$markwonVersion" implementation("io.noties.markwon:syntax-highlight:$markwonVersion") { exclude group: 'org.jetbrains', module: 'annotations-java5' } implementation('io.noties:prism4j:2.0.0') { exclude group: 'org.jetbrains', module: 'annotations-java5' } annotationProcessor 'io.noties:prism4j-bundler:2.0.0' implementation 'org.jetbrains:annotations:22.0.0' coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5' testImplementation 'androidx.test:core:1.4.0' testImplementation 'androidx.arch.core:core-testing:2.1.0' testImplementation 'junit:junit:4.13.2' testImplementation 'org.mockito:mockito-core:3.12.4' testImplementation 'org.robolectric:robolectric:4.6.1' }