Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
Signed-off-by: hedex <hedexmail@gmail.com>
  • Loading branch information
hedex committed May 4, 2017
1 parent 1ff1695 commit 0f7a33e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

手机系统版本:如:Android 5.0 (如是编译异常,则可以不填)

Robust版本:如:0.3.3
Robust版本:如:0.3.7

Gradle版本:如:2.10

Expand Down
6 changes: 3 additions & 3 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
apply plugin: 'robust'
compile 'com.meituan.robust:robust:0.3.6'
compile 'com.meituan.robust:robust:0.3.7'
```
2. 在整个项目的build.gradle加入classpath
Expand All @@ -37,8 +37,8 @@
jcenter()
}
dependencies {
classpath 'com.meituan.robust:gradle-plugin:0.3.6'
classpath 'com.meituan.robust:auto-patch-plugin:0.3.6'
classpath 'com.meituan.robust:gradle-plugin:0.3.7'
classpath 'com.meituan.robust:auto-patch-plugin:0.3.7'
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Robust is an Android HotFix solution with high compatibility and high stability.
//please uncomment fellow line before you build a patch
//apply plugin: 'auto-patch-plugin'
apply plugin: 'robust'
compile 'com.meituan.robust:robust:0.3.6'
compile 'com.meituan.robust:robust:0.3.7'
```
2. Add below codes in the outest project's build.gradle file.

Expand All @@ -34,8 +34,8 @@ Robust is an Android HotFix solution with high compatibility and high stability.
jcenter()
}
dependencies {
classpath 'com.meituan.robust:gradle-plugin:0.3.6'
classpath 'com.meituan.robust:auto-patch-plugin:0.3.6'
classpath 'com.meituan.robust:gradle-plugin:0.3.7'
classpath 'com.meituan.robust:auto-patch-plugin:0.3.7'
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class RobustApkHashZipUtils {
return;
}

zos.putNextEntry(new ZipEntry(buildPath(path, file.getAbsolutePath().replace(File.separatorChar,'_'))));
zos.putNextEntry(new ZipEntry(buildPath(path, file.getAbsolutePath())));

FileInputStream fis = new FileInputStream(file);

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=0.3.6
VERSION_NAME=0.3.7
GROUP=com.meituan.robust

0 comments on commit 0f7a33e

Please sign in to comment.