feat(Strava): Add Add media download patch (#6449)

Co-authored-by: oSumAtrIX <johan.melkonyan1@web.de>
This commit is contained in:
xehpuk 2026-01-12 23:28:15 +01:00 committed by GitHub
parent 19f146c01d
commit 778d13ce8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 781 additions and 0 deletions

View file

@ -311,6 +311,10 @@ public class Utils {
return resourceId;
}
public static String getResourceString(int id) throws Resources.NotFoundException {
return getContext().getResources().getString(id);
}
public static int getResourceInteger(String resourceIdentifierName) throws Resources.NotFoundException {
return getContext().getResources().getInteger(getResourceIdentifierOrThrow(resourceIdentifierName, "integer"));
}