正在显示
1 个修改的文件
包含
15 行增加
和
0 行删除
| @@ -8,3 +8,18 @@ Requires `protocol` repo to exist at the same level as this repo to generate pro | @@ -8,3 +8,18 @@ Requires `protocol` repo to exist at the same level as this repo to generate pro | ||
| 8 | 8 | ||
| 9 | 1. Download webrtc sources from https://webrtc.googlesource.com/src | 9 | 1. Download webrtc sources from https://webrtc.googlesource.com/src |
| 10 | 2. Add sources to Android Studio by pointing at the `webrtc/sdk/android` folder. | 10 | 2. Add sources to Android Studio by pointing at the `webrtc/sdk/android` folder. |
| 11 | + | ||
| 12 | +## Publishing releases | ||
| 13 | + | ||
| 14 | +1. Ensure you have your `.gradle/gradle.properties` filled with the requisite credentials: | ||
| 15 | + | ||
| 16 | +```` | ||
| 17 | +nexusUsername=<sonatype username> | ||
| 18 | +nexusPassword=<sonatype password> | ||
| 19 | +signing.keyId=<signing key id> | ||
| 20 | +signing.password=<signing key password> | ||
| 21 | +signing.secretKeyRingFile=<signing pgp key path> | ||
| 22 | +```` | ||
| 23 | + | ||
| 24 | +2. Update `VERSION_NAME` in `gradle.properties` to reflect the release version. | ||
| 25 | +3. Run `gradle publish closeAndReleaseRepository` to upload to maven. |
-
请 注册 或 登录 后发表评论