Skip to content

Commit 45340e0

Browse files
committed
For 0.1.3
1 parent efe693d commit 45340e0

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

ARE/are/build.gradle

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@ apply plugin: 'com.android.library'
33
ext {
44
PUBLISH_GROUP_ID = 'com.github.chinalwb'
55
PUBLISH_ARTIFACT_ID = 'are'
6-
PUBLISH_VERSION = '1.0'
6+
PUBLISH_VERSION = '0.1.3'
7+
}
8+
9+
10+
tasks.withType(Javadoc) {
11+
options.addStringOption('Xdoclint:none', '-quiet')
12+
options.addStringOption('encoding', 'UTF-8')
13+
options.addStringOption('charSet', 'UTF-8')
714
}
815

916
android {
@@ -41,11 +48,11 @@ dependencies {
4148
androidTestImplementation 'com.android.support.test:runner:1.0.1'
4249
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
4350

44-
compile files('libs/tagsoup-1.2.1.jar')
51+
implementation files('libs/tagsoup-1.2.1.jar')
4552

4653
implementation 'com.github.bumptech.glide:glide:4.3.1'
4754
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
48-
4955
}
5056

5157
// apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
58+
// ./gradlew clean build generateRelease

ARE/are/src/main/res/drawable/cursor.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<size android:width="2dp" />
66

7-
<solid android:color="@color/colorAccent" />
7+
<!--<solid android:color="@color/colorAccent" />-->
88

99
<!-- <padding
1010
android:top="0sp"

ARE/are/src/main/res/values/styles.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
<!-- Base application theme. -->
44
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
5-
<!-- Customize your theme here. -->
6-
<item name="colorPrimary">@color/colorPrimary</item>
7-
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
8-
<item name="colorAccent">@color/colorAccent</item>
95
<item name="android:textCursorDrawable">@drawable/cursor</item>
106
</style>
117

0 commit comments

Comments
 (0)