Skip to content

Commit

Permalink
update v1.3.3 readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lizixian committed May 17, 2018
1 parent 93928fe commit e4763fa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
17 changes: 17 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ buildscript {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
Expand All @@ -18,9 +23,21 @@ allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}

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

task clean(type: Delete) {
delete rootProject.buildDir
}


4 changes: 3 additions & 1 deletion musiclibrary/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'

apply plugin: 'maven'

android {
compileSdkVersion 26
Expand Down Expand Up @@ -34,6 +34,8 @@ android {

}



dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
Expand Down

0 comments on commit e4763fa

Please sign in to comment.