forked from SufficientlySecure/html-textview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (21 loc) · 674 Bytes
/
build.gradle
File metadata and controls
25 lines (21 loc) · 674 Bytes
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
apply plugin: 'com.android.library'
apply plugin: 'bintray-release'
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
versionName '3.9'
}
}
publish {
userOrg = 'sufficientlysecure'
groupId = 'org.sufficientlysecure'
artifactId = 'html-textview'
publishVersion = android.defaultConfig.versionName
website = 'https://github.com/SufficientlySecure/html-textview'
desc = 'HtmlTextView is an extended TextView component for Android, which can load HTML and converts it into Spannable for displaying it.'
}
dependencies {
implementation 'androidx.annotation:annotation:1.1.0'
}