Jhen-Jie Hong

Results 90 comments of Jhen-Jie Hong

I've removed the `--expo` flag due to the `packager-info` is no longer supported. You can use `--port 19000` instead. (Depends on your Expo packager used port)

Hey @FezVrasta, the current boilerplate is indeed complex... :\ I will simplify it (#21) in the next few days, then npm package will change to a CLI tool, you can...

Yes it doesn't, if you want background scripts to support Hot reload, you have to make more extra works, like [glenjamin/ultimate-hot-reloading-example](https://github.com/glenjamin/ultimate-hot-reloading-example) made Express server hot reload. Also, a correctly behavior...

[Official guide](https://developer.chrome.com/extensions/devtools_panels) can be help you. Also, you can reference to [redux-devtools-extension](https://github.com/zalmoxisus/redux-devtools-extension/tree/master/src/browser/extension), it would can be as a better example.

This is why I already [removed HMR](https://github.com/jhen0409/react-chrome-extension-boilerplate/pull/41) in the injectpage (but todoapp iframe not).

Thanks for sharing solution! Also, I've found I need to use `compileOnly("io.github.react-native-tvos:react-android")` in `android/app/build.gradle` for release build to made it works. (for https://github.com/leonchabbey/test-rn-android-source-build/commit/80a7d103fb9990311c28d3c4940dc1c348774d00, it also works in debug mode)

Here's an simple way to check the libwhisper libraries are actually bundled in apk: ```bash $ANDROID_HOME/cmdline-tools/latest/bin/apkanalyzer files list /android/app/build/outputs/apk/debug/app-deubg.apk | grep libwhisper ``` Expected result: ``` /lib/x86_64/libwhisper.so /lib/x86/libwhisper.so /lib/armeabi-v7a/libwhisper_vfpv4.so /lib/armeabi-v7a/libwhisper.so...

Fixed in 1421c55 and d1541ae.

Due to recent whisper.cpp changes, the abort callback is not used in ggml_graph_compute_helper anymore. The abort_callback only used in whisper_encode_internal / whisper_decode_internal now. I'll look at the reasons for this...

Thanks for the report, I'l investigate later. I just put the error logs here for easier tracking: ``` 10-04 18:05:16.734 6482 6482 F DEBUG : signal 6 (SIGABRT), code -1...