File tree Expand file tree Collapse file tree 5 files changed +20
-24
lines changed
app/src/test/java/net/sjava/filteredintent/app Expand file tree Collapse file tree 5 files changed +20
-24
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ This library helps to select apps when you want to share text or file to other a
1313Gradle
1414``` groovy
1515 dependencies {
16- compile 'net.sjava:filteredintent:1.0.0 '
16+ compile 'net.sjava:filteredintent:1.0.2 '
1717 }
1818```
1919
@@ -22,13 +22,13 @@ Maven
2222 <dependency >
2323 <groupId >net.sjava</groupId >
2424 <artifactId >filteredintent</artifactId >
25- <version >1.0.0 </version >
25+ <version >1.0.2 </version >
2626 </dependency >
2727```
2828
2929Ivy
3030```
31- <dependency org='net.sjava' name='filteredintent' rev='1.0.0 '>
31+ <dependency org='net.sjava' name='filteredintent' rev='1.0.2 '>
3232 <artifact name='$AID' ext='pom'></artifact>
3333</dependency>
3434```
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
66 }
77
88 dependencies {
9- classpath ' com.android.tools.build:gradle:2.1.2 '
9+ classpath ' com.android.tools.build:gradle:2.1.3 '
1010
1111 // NOTE: Do not place your application dependencies here; they belong
1212 // in the individual module build.gradle files
Original file line number Diff line number Diff line change 1- # Mon Dec 28 10:00:20 PST 2015
1+ # Tue Aug 16 19:59:41 PDT 2016
22distributionBase =GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-2.10 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-2.14.1 -all.zip
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ publish {
55 userOrg = ' mcsong'
66 groupId = ' net.sjava'
77 artifactId = ' filteredintent'
8- publishVersion = ' 1.0.0 '
8+ publishVersion = ' 1.0.2 '
99 desc = ' Android intent filter library'
1010 website = ' https://github.com/mcsong/FilteredIntent'
1111 issueTracker = " ${ website} /issues"
@@ -29,7 +29,7 @@ android {
2929 minSdkVersion 16
3030 targetSdkVersion 24
3131 versionCode 1
32- versionName " 1.0.0 "
32+ versionName " 1.0.2 "
3333 }
3434
3535 buildTypes {
@@ -43,10 +43,21 @@ android {
4343 abortOnError false
4444 }
4545
46+ allprojects {
47+ tasks. withType(Javadoc ). all { enabled = false }
48+ }
49+
50+ if (JavaVersion . current(). isJava8Compatible()) {
51+ allprojects {
52+ tasks. withType(Javadoc ) {
53+ options. addStringOption(' Xdoclint:none' , ' -quiet' )
54+ }
55+ }
56+ }
4657}
4758
4859dependencies {
49- compile ' com.android.support:appcompat-v7:24.1.1'
5060 compile fileTree(dir : ' libs' , include : [' *.jar' ])
5161 testCompile ' junit:junit:4.12'
62+ compile ' com.android.support:appcompat-v7:24.2.0'
5263}
You can’t perform that action at this time.
0 commit comments