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
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,43 @@ 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
+
### Standard Android Properties (Recommended)
82
+
83
+
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:
84
+
85
+
```gradle
86
+
signingConfigs {
87
+
release {
88
+
// These hardcoded values will be automatically overridden
89
+
storeFile file('path/to/keystore.jks')
90
+
keyAlias 'placeholder'
91
+
storePassword 'placeholder'
92
+
keyPassword 'placeholder'
93
+
}
94
+
}
95
+
```
96
+
97
+
### Custom RNEF Properties (Legacy)
98
+
99
+
For apps that explicitly read custom properties in their `build.gradle`, the action also sets `RNEF_UPLOAD_*` properties:
0 commit comments