-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (31 loc) · 1.16 KB
/
build.gradle
File metadata and controls
36 lines (31 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
plugins {
id 'com.android.library'
}
android {
compileSdkVersion 32
defaultConfig {
minSdkVersion 16
targetSdkVersion 27
}
namespace 'br.tiagohm.markdownview'
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.7.0'
//Flexmark
implementation 'com.vladsch.flexmark:flexmark:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-tables:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-gfm-strikethrough:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-gfm-tasklist:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-autolink:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-abbreviation:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-superscript:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-footnotes:0.28.32'
implementation 'com.vladsch.flexmark:flexmark-ext-attributes:0.28.32'
}