You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+46Lines changed: 46 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,52 @@ jobs:
74
74
|`artifact-url`| URL of the build artifact |
75
75
|`artifact-id`| ID of the build artifact |
76
76
77
+
## Code Signing
78
+
79
+
When `sign: true` is enabled, this action configures Android code signing by setting Gradle properties. It supports **two property conventions** for maximum compatibility:
80
+
81
+
### Android injected properties
82
+
83
+
(this is an undocumented feature used by Fastlane and AGP)
84
+
85
+
The action automatically sets `android.injected.signing.*` properties which are natively recognized by the Android Gradle Plugin. These properties work with any standard `build.gradle` configuration without modifications:
86
+
87
+
```gradle
88
+
signingConfigs {
89
+
release {
90
+
// These hardcoded values will be automatically overridden
91
+
storeFile file('path/to/keystore.jks')
92
+
keyAlias 'placeholder'
93
+
storePassword 'placeholder'
94
+
keyPassword 'placeholder'
95
+
}
96
+
}
97
+
```
98
+
99
+
### Custom ROCK Properties
100
+
101
+
For apps that explicitly read custom properties in their `build.gradle`, the action also sets `ROCK_UPLOAD_*` properties:
0 commit comments