Skip to content

Commit d4b5286

Browse files
author
jinzhenguo
committed
add travis config
1 parent da01a60 commit d4b5286

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## Android工具类库 [![Build Status](https://travis-ci.org/kibotu/android-utils.svg?branch=master)](https://travis-ci.org/kibotu/android-utils) [![](https://jitpack.io/v/kibotu/android-utils.svg)](https://jitpack.io/#kibotu/android-utils) [![API](https://img.shields.io/badge/API-3%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=3) [![Gradle Version](https://img.shields.io/badge/gradle-2.13-green.svg)](https://docs.gradle.org/current/release-notes) [![Licence](https://img.shields.io/badge/licence-Apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
1+
## Android工具类库 [![Build Status](https://travis-ci.org/jingle1267/android-utils.svg?branch=master)](https://travis-ci.org/jingle1267/android-utils)
2+
[ ![Download](https://api.bintray.com/packages/ihongqiqu/maven/android-utils/images/download.svg) ](https://bintray.com/ihongqiqu/maven/android-utils/_latestVersion)
3+
[![API](https://img.shields.io/badge/API-15%2B-brightgreen.svg?style=flat)](https://android-arsenal.com/api?level=15) [![Gradle Version](https://img.shields.io/badge/gradle-3.3-green.svg)](https://docs.gradle.org/current/release-notes) [![Licence](https://img.shields.io/badge/licence-Apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)
4+
25

36
囊括了一大部分Android应用开发过程当中常用的工具类。工具类来源整理自网络和自己编写。
47

@@ -124,15 +127,16 @@ allprojects {
124127
repositories {
125128
// other repositories
126129
maven {
127-
url "http://hongqiqu.bintray.com/maven"
130+
url "http://dl.bintray.com/ihongqiqu/maven"
128131
}
129132
}
130133
}
131134
```
132135

136+
133137
```xml
134138
dependencies {
135-
compile 'com.ihongqiqu.util:android-utils:1.0.0'
139+
compile 'com.ihongqiqu:android-utils:1.0.2'
136140
}
137141
```
138142

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
})
3030
compile 'com.android.support:appcompat-v7:25.1.0'
3131
//compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
32-
compile 'com.ihongqiqu.util:android-utils:1.0.1'
32+
compile 'com.ihongqiqu:android-utils:1.0.2'
3333
// testCompile 'junit:junit:4.12'
3434
// compile project(path: ':util')
3535
}

build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ allprojects {
1616
repositories {
1717
jcenter()
1818
maven {
19-
url "http://hongqiqu.bintray.com/maven"
19+
//url "http://hongqiqu.bintray.com/maven"
20+
url "http://dl.bintray.com/ihongqiqu/maven"
2021
}
2122
}
2223
tasks.getByPath(":util:mavenAndroidJavadocs").enabled = false

util/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 25
1111
versionCode 1
12-
versionName "1.0"
12+
versionName "1.0.2"
1313

1414
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1515

@@ -34,10 +34,10 @@ dependencies {
3434
}
3535

3636
publish {
37-
userOrg = 'hongqiqu'
38-
groupId = 'com.ihongqiqu.util'
37+
userOrg = 'ihongqiqu'
38+
groupId = 'com.ihongqiqu'
3939
artifactId = 'android-utils'
40-
publishVersion = '1.0.1'
40+
publishVersion = '1.0.2'
4141
desc = 'android utils'
4242
website = 'https://github.com/jingle1267/android-utils'
4343
}

0 commit comments

Comments
 (0)