forked from bytedance/AabResGuard
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. OUTPUT.md 2. CHANGELOG.md 3. CONTRIBUTOR.md 4. COMMAND.md
- Loading branch information
Showing
6 changed files
with
78 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
[English]() | ||
**[English](CHANGELOG.md)** | [简体中文](../zh-cn/CHANGELOG.md) | ||
|
||
# Change log | ||
|
||
## 0.1.0(2019/10/16) | ||
- Add support for resources obfuscation | ||
- Add support for merge duplicated resources | ||
- Add support for files filtering | ||
- Added support for `gradle plugin` | ||
- Add support for `command line` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,41 @@ | ||
**[English](CONTRIBUTOR.md)** | [简体中文](../zh-cn/CONTRIBUTOR.md) | ||
|
||
# Contribute guide | ||
|
||
This guide will show you how to contribute to **AabResGuard**. Please ask for an issue or pull request. | ||
Take a few minutes to read this guide before. | ||
|
||
## #Contributing | ||
We are always very happy to have contributions, whether for typo fix, bug fix or big new features. Please do not ever hesitate to ask a question or send a pull request. | ||
|
||
## [#Code of Conduct](CODE_OF_CONDUCT.md) | ||
Please make sure to read and observe our **[Code of Conduct](CODE_OF_CONDUCT.md)** . | ||
|
||
## #GitHub workflow | ||
All work on **AabResGuard** happens directly on GitHub. Both core team members and external contributors send pull requests which go through the same review process. | ||
|
||
We use the `develop` branch as our development branch, and this code is an unstable branch. Each version will create a `release` branch (such as `release/0.1.1`) as a stable release branch. | ||
Each time a new version is released, it will be merged into the corresponding branch and the corresponding `tag` will be applied. | ||
|
||
Here are the workflow for contributors: | ||
|
||
- Fork to your own. | ||
- Clone fork to local repository. | ||
- Create a new branch and work on it. | ||
- Keep your branch in sync. | ||
- Commit your changes (make sure your commit message concise). | ||
- Push your commits to your forked repository. | ||
- Create a pull request. | ||
|
||
Please follow the pull request template. Please make sure the PR has a corresponding issue. | ||
|
||
After creating a PR, one or more reviewers will be assigned to the pull request. The reviewers will review the code. | ||
|
||
Before merging a PR, squash any fix review feedback, typo, merged, and rebased sorts of commits. The final commit message should be clear and concise. | ||
|
||
## #Open an issue / PR | ||
### ##Where to Find Known Issues | ||
We will be using GitHub Issues for our public bugs. We will keep a close eye on this and try to make it clear when we have an internal fix in progress. Before filing a new issue, try to make sure your problem doesn't already exist. | ||
|
||
### ##Reporting New Issues | ||
The best way to get your bug fixed is to provide a reduced test case. Please provide a public repository with a runnable example. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,5 @@ | |
- 添加资源混淆功能 | ||
- 添加资源去重功能 | ||
- 添加文件过滤功能 | ||
- 添加 `gradle plugin` 的支持 | ||
- 添加 `gradle plugin` 的支持 | ||
- 添加命令行支持 |