Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhenguo committed Jun 1, 2017
1 parent 5c14bc5 commit 50f320b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 24 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,19 @@ AOSP 源码中包含Util关键字的类,整理出的列表如下:
### 如何使用 (How to install)

```xml
repositories {
maven {
url "https://jitpack.io"
allprojects {
repositories {
// other repositories
maven {
url "http://hongqiqu.bintray.com/maven"
}
}
}

```

```xml
dependencies {
compile 'com.github.kibotu:android-utils:1.0.0'
compile 'com.ihongqiqu.util:android-utils:1.0.0'
}
```

Expand Down
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ dependencies {
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'com.ihongqiqu.util:android-utils:1.0.0'
// testCompile 'junit:junit:4.12'
compile project(path: ':util')
// compile project(path: ':util')
}
18 changes: 0 additions & 18 deletions app/src/test/java/com/ihongqiqu/demo/ExampleUnitTest.java

This file was deleted.

4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ buildscript {
// jcenter bintray-release插件
classpath 'com.novoda:bintray-release:0.3.4'
}

}

allprojects {
repositories {
jcenter()
maven {
url "http://hongqiqu.bintray.com/maven"
}
}
tasks.getByPath(":util:mavenAndroidJavadocs").enabled = false
}
Expand Down

0 comments on commit 50f320b

Please sign in to comment.