Skip to content

Commit

Permalink
rename package name in AndroidManifest, update library version
Browse files Browse the repository at this point in the history
  • Loading branch information
javayhu committed May 31, 2016
1 parent e4030d4 commit 4c67d6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ allprojects {

```
dependencies {
compile 'com.github.hujiaweibujidao:yava:1.0'
compile 'com.github.hujiaweibujidao:yava:1.0.0'
}
```

Expand Down Expand Up @@ -154,7 +154,6 @@ public abstract class AbstractFunction implements IFunction, Interpolator, TypeE
* 工具类,将自定义的函数快速封装成AbstractFunction
*/
class Functions {
private static IFunction function;

public static AbstractFunction with(final IFunction function) {
return new AbstractFunction() {
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ allprojects {

```
dependencies {
compile 'com.github.hujiaweibujidao:yava:1.0'
compile 'com.github.hujiaweibujidao:yava:1.0.0'
}
```

Expand Down Expand Up @@ -160,7 +160,6 @@ public abstract class AbstractFunction implements IFunction, Interpolator, TypeE
* convert any function curve to ready-to-use AbstractFunction
*/
class Functions {
private static IFunction function;

public static AbstractFunction with(final IFunction function) {
return new AbstractFunction() {
Expand Down
2 changes: 1 addition & 1 deletion yava/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.1"
versionName "1.0.0"
}
buildTypes {
release {
Expand Down
2 changes: 1 addition & 1 deletion yava/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<manifest package="com.github.hujiaweibujidao.library"
<manifest package="com.github.hujiaweibujidao.yava"
xmlns:android="http://schemas.android.com/apk/res/android">

<application
Expand Down

0 comments on commit 4c67d6b

Please sign in to comment.