mirror of
https://github.com/samsonjs/media.git
synced 2026-04-05 11:15:46 +00:00
Fix the build
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=133120924
This commit is contained in:
parent
bf0d398ba8
commit
80d08a6e25
1 changed files with 3 additions and 1 deletions
|
|
@ -55,9 +55,11 @@ public final class RawResourceDataSource implements DataSource {
|
|||
* @return The corresponding {@link Uri}.
|
||||
*/
|
||||
public static final Uri buildRawResourceUri(int rawResourceId) {
|
||||
return Uri.parse("rawresource:///" + rawResourceId);
|
||||
return Uri.parse(RAW_RESOURCE_SCHEME + ":///" + rawResourceId);
|
||||
}
|
||||
|
||||
private static final String RAW_RESOURCE_SCHEME = "rawresource";
|
||||
|
||||
private final Resources resources;
|
||||
private final TransferListener<? super RawResourceDataSource> listener;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue