Commit 1dfa16a
authored
Use String.format in cases where firebase-vendor plugin transforms hardcoded strings (#8155)
Starting with `16.0.0-beta18`, the vendor plugin is renaming strings in
the app distro SDK:
```
> Task :firebase-appdistribution:releaseVendorTransform
...
Changed ".FirebaseAppDistributionFileProvider" -> "com.google.firebase.appdistribution.impl..FirebaseAppDistributionFileProvider"
Changed ".apk" -> "com.google.firebase.appdistribution.impl..apk"
...
```
This is causing the SDK functionality to fail due to malformed strings:
#8136
I don't know the root cause, but this does fix the issue.1 parent 0807bfb commit 1dfa16a
3 files changed
Lines changed: 6 additions & 2 deletions
File tree
- firebase-appdistribution
- src/main/java/com/google/firebase/appdistribution/impl
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
3 | 5 | | |
4 | 6 | | |
5 | 7 | | |
| |||
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
227 | 227 | | |
228 | 228 | | |
229 | 229 | | |
230 | | - | |
| 230 | + | |
231 | 231 | | |
232 | 232 | | |
233 | 233 | | |
| |||
Lines changed: 3 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
148 | 148 | | |
149 | 149 | | |
150 | 150 | | |
151 | | - | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
152 | 154 | | |
153 | 155 | | |
154 | 156 | | |
| |||
0 commit comments