Matt Hamil
Matt Hamil
You should also be able add this at the top of that `custom.d.ts` and it should work, insofar as you are referencing `custom.d.ts` inside your `tsconfig.json`. ```typescript /// /// ```
This is an old issue but commenting in case it helps someone in the future: The resolution does not always guarantee the orientation. You will want to use `MediaMetadataRetriever.METADATA_KEY_VIDEO_ROTATION` to...
It should be storing your auth token automatically when you login. From `login()` in the source code: ``` function storageChanged (e) { if (e.key === 'spotify-token') { if (authWindow) {...
Commenting to say that I resolved this issue by removing the `runtimes` section of my `project.json` completely. Perhaps this should be noted in the README as a fix to this...
I don't think this is actionable in this repo since the `on` service links are not handled here.
I got this exact problem while working on https://guide.elm-lang.org/architecture/effects/random.html. A note should be added to this page in particular to signal to new Elm developers this potential name collision issue....
@lucasvieceli I wrote a patch that includes the following method: ### iOS ```objective-c RCT_EXPORT_METHOD(getCachePathForKey:(nonnull NSString *)key resolver:(RCTPromiseResolveBlock)resolve rejecter:(RCTPromiseRejectBlock)reject) { SDDiskCache *diskCache = [[SDImageCache sharedImageCache] diskCache]; if (diskCache == nil) {...
@babyrusa I can't really give a helpful answer without access to your code. My code snippets will likely need to be adjusted to your specific needs, but the APIs they...
Hey @devwang103, it's currently not an executable file that is saved to your `.bin` directory. You need to follow the installation instructions explicitly and reference `./node_modules/majorajs`. I'll flag this as...
Right now Majora only works on Android. I'll work on improving the documentation when I roll out support for iOS.