Skip to content

Commit

Permalink
upgrade library version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
medyo committed Feb 19, 2017
1 parent c72f756 commit 72d095a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ View aboutPage = new AboutPage(this)
Available on Jcenter, Maven and JitPack

```groovy
compile 'com.github.medyo:android-about-page:1.1.1'
compile 'com.github.medyo:android-about-page:1.2'
```


Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "mehdi.sakout.aboutpage.sample"
minSdkVersion 10
targetSdkVersion 25
versionCode 12
versionName "1.1.1"
versionCode 13
versionName "1.2"
}
buildTypes {
release {
Expand Down
10 changes: 8 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildToolsVersion '25.0.2'
defaultConfig {
minSdkVersion 10
targetSdkVersion 25
versionCode 12
versionName "1.1.1"
versionCode 13
versionName "1.2"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
Expand All @@ -21,6 +21,12 @@ buildToolsVersion '25.0.2'
resourcePrefix 'about_'
}

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

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
Expand Down

0 comments on commit 72d095a

Please sign in to comment.