Skip to content

Commit

Permalink
For 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chinalwb committed Nov 29, 2018
1 parent efe693d commit 45340e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
13 changes: 10 additions & 3 deletions ARE/are/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.github.chinalwb'
PUBLISH_ARTIFACT_ID = 'are'
PUBLISH_VERSION = '1.0'
PUBLISH_VERSION = '0.1.3'
}


tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
options.addStringOption('charSet', 'UTF-8')
}

android {
Expand Down Expand Up @@ -41,11 +48,11 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

compile files('libs/tagsoup-1.2.1.jar')
implementation files('libs/tagsoup-1.2.1.jar')

implementation 'com.github.bumptech.glide:glide:4.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'

}

// apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
// ./gradlew clean build generateRelease
2 changes: 1 addition & 1 deletion ARE/are/src/main/res/drawable/cursor.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

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

<!-- <padding
android:top="0sp"
Expand Down
4 changes: 0 additions & 4 deletions ARE/are/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:textCursorDrawable">@drawable/cursor</item>
</style>

Expand Down

0 comments on commit 45340e0

Please sign in to comment.