File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ publish {
55 userOrg = ' mcsong'
66 groupId = ' net.sjava'
77 artifactId = ' appstore'
8- publishVersion = ' 1.0.3 '
8+ publishVersion = ' 1.0.5 '
99 desc = ' Android AppStore Library'
1010 website = ' https://github.com/mcsong/AppStoreLibrary'
1111 issueTracker = " ${ website} /issues"
@@ -30,7 +30,7 @@ android {
3030 minSdkVersion 9
3131 targetSdkVersion 24
3232 versionCode 1
33- versionName " 1.0.3 "
33+ versionName " 1.0.5 "
3434 }
3535
3636 buildTypes {
@@ -43,6 +43,21 @@ android {
4343 lintOptions {
4444 abortOnError false
4545 }
46+
47+
48+ allprojects {
49+ tasks. withType(Javadoc ). all { enabled = false }
50+ }
51+
52+ if (JavaVersion . current(). isJava8Compatible()) {
53+ allprojects {
54+ tasks. withType(Javadoc ) {
55+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
56+ }
57+ }
58+ }
59+
60+
4661}
4762
4863dependencies {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ This library make easy to use AppStore app's features.
2121Gradle
2222``` groovy
2323 dependencies {
24- compile 'net.sjava:appstore:1.0.3 '
24+ compile 'net.sjava:appstore:1.0.5 '
2525 }
2626```
2727
3030 <dependency >
3131 <groupId >net.sjava</groupId >
3232 <artifactId >appstore</artifactId >
33- <version >1.0.3 </version >
33+ <version >1.0.5 </version >
3434 </dependency >
3535```
3636## Usage
You can’t perform that action at this time.
0 commit comments