Julien Cayzac
Julien Cayzac
Chrome 72 for Android has shipped, so trusted web activities are no longer experimental.
The documentation above looks outdated. You can now simply launch a custom tab intent as a trusted web activity using [TrustedWebUtils#launchAsTrustedWebActivity(Context, CustomTabsIntent, Uri)](https://developer.android.com/reference/android/support/customtabs/TrustedWebUtils.html#launchAsTrustedWebActivity%28android.content.Context,%20android.support.customtabs.CustomTabsIntent,%20android.net.Uri%29).
@iainmcgin actually the utils class takes care of launching the intent, which seems to imply a bit of refactoring in this library's source code. On the other hand, all that...
Actually… is there anything to be done in AppAuth? It seems to me the app can simply use the normal custom tabs support and add the extras by itself…? It's...
It looks like the `///` route is hard-coded at https://github.com/phenomic/phenomic/blob/master/packages/plugin-rss-feed/src/index.js#L63-L67
I tried specifying the `feeds..map` option, which would allow me to override this behavior, but neither a function nor a copy of [defaultMap](https://github.com/phenomic/phenomic/blob/master/packages/plugin-rss-feed/src/index.js#L33-L42) works ーI get an unhandled rejected promise...
> does not check path in markdown ast as it will be expensive But shouldn't those resources be in the page's bundle? 🤔
It's probably because https://github.com/phenomic/phenomic/blob/master/packages/plugin-public-assets/src/index.js#L35 does `path.join(config.path, options.path)` and thus doesn't support absolute paths. Changing to `{ path: 'public' }` fixed my problem. Also worth mentioning that not specifying the `path`...
Not sure how to add it to the package without refactoring exports. I added that into my project and it fixed a few things: ```ts /* eslint-disable @typescript-eslint/no-explicit-any */ /*...
Same thing here. Rewrites works perfectly except when the URL points to `index.html`, when it starts generating weird redirects. I would say rewrites are really broken right now. ### Directory...