Erik Ziegler

Results 98 comments of Erik Ziegler

Could you try this file: https://drive.google.com/file/d/1H6rBHUKQPypepjfqzdclLIqPhwPmhdAg/view?usp=sharing ``` $ bin/build_binary trie lm_sigseg_2.arpa out.bin Reading .../lm_sigseg_2.arpa ----5---10---15---20---25---30---35---40---45---50---55---60---65---70---75---80---85---90---95--100 Segmentation fault (core dumped) ``` ``` $ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=20.04 DISTRIB_CODENAME=focal DISTRIB_DESCRIPTION="Ubuntu 20.04 LTS"...

Hey girls and guys, I think we can stop posting our versions, the maintainers probably get the gist. The RN 0.70.0 compatible `react-native-reanimated` versions are not compatible with current `react-native-vision-camera`....

Maybe I could help with this, as I have used this library for a while and already integrated the android part over the react native bridge into our react native...

@LirryPinter I could make a Gist for the android native module. For iOS please contact @nshmyrev per mail.

@LirryPinter Here is the Gist for the module: https://gist.github.com/erksch/f3d46b478b3912a00a4dc25726d0260c Things to note: - Don't forget to write an appropriate package file (refer to the native module docs for that) -...

```kotlin package import com.facebook.react.ReactPackage import com.facebook.react.bridge.NativeModule import com.facebook.react.bridge.ReactApplicationContext import com.facebook.react.uimanager.ViewManager class KaldiRNPackage : ReactPackage { override fun createNativeModules(reactContext: ReactApplicationContext): List { return listOf(KaldiRNModule(reactContext)) } override fun createViewManagers(reactContext: ReactApplicationContext): List {...

Sorry there is an error in the gist. Just remove the version parameter in the createModel call in the initialize method. Edit: Fixed the error in the Gist.

A yeah the variable is named wrong use the one that is the method parameter. (Fixed it in the code snippet now)

Have you registered the package in your MainApplication file?

Side note: Java is fine and will not make any problems. But the Android world is moving towards Kotlin so make sure to get it in your vocabulary. Seems good....