-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
49d56eb
commit 155b861
Showing
3 changed files
with
29 additions
and
14 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,18 +1,25 @@ | ||
# Contributing | ||
|
||
- Code Style | ||
[Google Java Style Guide][https://google.github.io/styleguide/javaguide.html] | ||
wird beim Build geprüft und mit `./build.sh format` formatiert | ||
- Release erstellen mit `./build.sh` | ||
- Build for macOS Intel and M1 | ||
Build with `./build.sh`. Other useful tasks: | ||
|
||
- `./build clean` - Remove build artifacts. | ||
- `./build format` - Format the source code according to the code style. | ||
|
||
Used code style: | ||
[Google Java Style Guide](https://google.github.io/styleguide/javaguide.html) | ||
|
||
Build for macOS Intel and M1. | ||
|
||
### Distribute for macOS | ||
|
||
Im Folgenden müssen `$MAC_SIGNING_USERNAME`, `$MAC_SIGNING_PASSWORD` | ||
und `{RequestUUID}` passend ersetzt werden. | ||
Replace `$MAC_SIGNING_USERNAME`, `$MAC_SIGNING_PASSWORD` and `{RequestUUID}` | ||
with appropriate values. | ||
|
||
xcrun notarytool submit \ | ||
--team-id QC6EN37P56 \ | ||
--apple-id $MAC_SIGNING_USERNAME \ | ||
--password $MAC_SIGNING_PASSWORD \ | ||
activity-sampling-1.2.0-m1.dmg --wait | ||
```bash | ||
xcrun notarytool submit \ | ||
--team-id QC6EN37P56 \ | ||
--apple-id $MAC_SIGNING_USERNAME \ | ||
--password $MAC_SIGNING_PASSWORD \ | ||
--wait \ | ||
activity-sampling-1.0.0-m1.dmg | ||
``` |
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