Skip to content

Commit

Permalink
Gradle wrapper v2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Mantas Palaima committed Oct 24, 2015
1 parent e7737f0 commit 6e05827
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,11 @@ allprojects {
jcenter()
}
}

if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}

This file was deleted.

3 changes: 2 additions & 1 deletion debugdrawer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "0.4.0"
versionName "1.0"
}
buildTypes {
release {
Expand All @@ -21,6 +21,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:support-annotations:23.1.0'
}

apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ public void post(NetworkChangeEvent event) {
* <p/>
*/
public static class NetworkReceiver extends BroadcastReceiver {

@Nullable
private final Listener mListener;

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip

0 comments on commit 6e05827

Please sign in to comment.