-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
25 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ Android Studio + Gradle已经是大部分安卓开发者的开发环境,为了 | |
keystoreProperties "debug.keystore.properties" | ||
overwrite true | ||
resPackages = [ | ||
dummylibrary: 'com.github.piasy.okbuck.example.dummylibrary', | ||
app: 'com.github.piasy.okbuck.example', | ||
'dummylibrary': 'com.github.piasy.okbuck.example.dummylibrary', | ||
'app': 'com.github.piasy.okbuck.example', | ||
] | ||
} | ||
``` | ||
|
@@ -46,9 +46,9 @@ Android Studio + Gradle已经是大部分安卓开发者的开发环境,为了 | |
signConfigName "release" | ||
overwrite true | ||
resPackages = [ | ||
dummylibrary: 'com.github.piasy.okbuck.example.dummylibrary', | ||
app: 'com.github.piasy.okbuck.example', | ||
common: 'com.github.piasy.okbuck.example.common', | ||
'dummylibrary': 'com.github.piasy.okbuck.example.dummylibrary', | ||
'app': 'com.github.piasy.okbuck.example', | ||
'common': 'com.github.piasy.okbuck.example.common', | ||
] | ||
} | ||
``` | ||
|
@@ -152,4 +152,11 @@ Android Studio + Gradle已经是大部分安卓开发者的开发环境,为了 | |
## 致谢 | ||
+ 首先感谢Facebook开源的[buck](https://github.com/facebook/buck)构建系统 | ||
+ 感谢[promeG](https://github.com/promeG/)在开发过程中的讨论与指导 | ||
+ 感谢[promeG](https://github.com/promeG/)在开发过程中的讨论与指导 | ||
## 谁用了OkBuck? | ||
User | Repo | ||
--- | --- | ||
[Piasy](https://github.com/Piasy) | [AndroidTDDBootStrap](https://github.com/Piasy/AndroidTDDBootStrap),[手把手应用教程](http://blog.piasy.com/AndroidTDDBootStrap-Use-OkBuck/) | ||
如果你也在开源项目中使用了OkBuck,可以把repo的链接[发邮件给我](mailto:[email protected]),我会把你的repo加入到这个列表中。 |
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 |
---|---|---|
|
@@ -32,8 +32,8 @@ Further more, you can still use OkBuck to maintain your BUCK build system when y | |
target "android-23" | ||
overwrite true | ||
resPackages = [ | ||
dummylibrary: 'com.github.piasy.okbuck.example.dummylibrary', | ||
app: 'com.github.piasy.okbuck.example', | ||
'dummylibrary': 'com.github.piasy.okbuck.example.dummylibrary', | ||
'app': 'com.github.piasy.okbuck.example', | ||
] | ||
} | ||
``` | ||
|
@@ -51,9 +51,9 @@ Further more, you can still use OkBuck to maintain your BUCK build system when y | |
signConfigName "release" | ||
overwrite true | ||
resPackages = [ | ||
dummylibrary: 'com.github.piasy.okbuck.example.dummylibrary', | ||
app: 'com.github.piasy.okbuck.example', | ||
common: 'com.github.piasy.okbuck.example.common', | ||
'dummylibrary': 'com.github.piasy.okbuck.example.dummylibrary', | ||
'app': 'com.github.piasy.okbuck.example', | ||
'common': 'com.github.piasy.okbuck.example.common', | ||
] | ||
} | ||
``` | ||
|
@@ -146,3 +146,10 @@ If you come with bugs of OkBuck, please [open an issue](https://github.com/Piasy | |
## Acknowledgement | ||
+ Thanks for Facebook open source [buck](https://github.com/facebook/buck) build system. | ||
+ Thanks for the discussion and help from [promeG](https://github.com/promeG/) during my development. | ||
## Who is using OkBuck? | ||
User | Repo | ||
--- | --- | ||
[Piasy](https://github.com/Piasy) | [AndroidTDDBootStrap](https://github.com/Piasy/AndroidTDDBootStrap) | ||
If you are using OkBuck in your open source project, [send me a e-mail](mailto:[email protected]) with your repo url, I'll add your repo in this list. |