profile
viewpoint

nodejs-mobile/nodejs-mobile 167

Full-fledged Node.js on Android and iOS

nodejs-mobile/nodejs-mobile-react-native 66

Node.js for Mobile Apps React Native plugin

nodejs-mobile/nodejs-mobile-cordova 11

Node.js for Mobile Apps Cordova plugin

nodejs-mobile/nodejs-mobile-samples 4

Repository for demo applications that use Node.js on Mobile

nodejs-mobile/nodejs-mobile-gyp 3

Fork of https://github.com/nodejs/node-gyp

nodejs-mobile/node-gyp-build-mobile 0

nodejs-mobile fork of node-gyp-build

nodejs-mobile/nodejs-mobile-module-compat 0

Repo to open issues, discuss and share workarounds about node modules compatibility with nodejs-mobile

issue commentnodejs-mobile/nodejs-mobile-react-native

Task :nodejs-mobile-react-native:buildCMakeDebug[x86] FAILED

@Sailoshi

На свежайшей версии RN ( 71 ) мне помогло следующее:

android->app->build.gradle В конец defautlConfig дописать

ndk {
    abiFilters reactNativeArchitectures()
}

На более старых, у которых не определён метод reactNativeArchitectures:

ndk {
    abiFilters "armeabi-v7a", "x86_64", "arm64-v8a"
}

Разумеется, перед этим убрав все упоминания x86 из этого файла Но почему даже для случаев когда сборка проекта не делается для x86, гениальный NDK пытается это делать пока явно не указать обратного - не совсем очевидно

makibibo

comment created time in 4 days

created tagnodejs-mobile/nodejs-mobile-react-native

tagv16.17.10

Node.js for Mobile Apps React Native plugin

created time in 5 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha 452c72477979ddff663b6515883d6e5776e51a3c

ios: fix bash mistake in build native mods script

view details

Andre Staltz

commit sha a3059ccb94b6d4d87784db8dd2c844c5685462ef

Release v16.17.10

view details

push time in 5 days

startednodejs-mobile/nodejs-mobile

started time in 8 days

startednodejs-mobile/nodejs-mobile

started time in 9 days

startednodejs-mobile/nodejs-mobile

started time in 10 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha d33efaa62e0a1d0443c3e5edde895c351ccc70ac

ios: hotfix for mistake in 16.17.8

view details

Andre Staltz

commit sha d3469bf3afb7c28248d641c77fd5364d1b969b85

Release v16.17.9

view details

push time in 11 days

created tagnodejs-mobile/nodejs-mobile-react-native

tagv16.17.8

Node.js for Mobile Apps React Native plugin

created time in 11 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha dfa83aa4e2d49a3e5ff77c42ea2547ad8421431f

plugin: support prebuilt native modules and skip their compilation

view details

Andre Staltz

commit sha d0ed19dfed840d9ab6050727ba8e2aa552a0d1ff

Release v16.17.8

view details

push time in 11 days

created tagnodejs-mobile/nodejs-mobile-react-native

tagv16.17.7

Node.js for Mobile Apps React Native plugin

created time in 13 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha 4c89c026c7bead561c5ede7c64a3562d918ec505

Release v16.17.7

view details

push time in 13 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha 21e7d4f81f0bdd5cc463aabf9d1fc6fa181a8f9c

ios: improve Xcode scripts, less verbose outputs

view details

push time in 13 days

issue commentnodejs-mobile/nodejs-mobile-react-native

Task :nodejs-mobile-react-native:buildCMakeDebug[x86] FAILED

When removing x86 from my abiFilter, the compiler is still using x86 ....... do you have any idea?

makibibo

comment created time in 15 days

push eventnodejs-mobile/node-gyp-build-mobile

Andre Staltz

commit sha 0c83fd67c6a2420f3645f518b54f0467690f49dc

in build-test, support env var for namespaced packages

view details

Andre Staltz

commit sha 2eac94523f35935fdb89db117938d5d0251b914c

release 4.6.0-3

view details

push time in 15 days

startednodejs-mobile/nodejs-mobile-react-native

started time in 15 days

created tagnodejs-mobile/nodejs-mobile-react-native

tagv16.17.6

Node.js for Mobile Apps React Native plugin

created time in 22 days

push eventnodejs-mobile/nodejs-mobile-react-native

Andre Staltz

commit sha 3ea229dac04bda80ca559bcc99964c77ae5fff84

android: require NDK 24.x or higher

view details

Andre Staltz

commit sha 96d9224d4db4554f4bcdf4670aecf898ddf29852

Release v16.17.6

view details

push time in 22 days

issue openednodejs-mobile/nodejs-mobile

jscvt

Hi!

Is nodejs-mobile on ios still ahve the jscvt issue? I can PR a fix if needed.

Thanks!

created time in 23 days

startednodejs-mobile/nodejs-mobile

started time in 25 days

startednodejs-mobile/nodejs-mobile

started time in a month

startednodejs-mobile/nodejs-mobile

started time in a month

issue commentnodejs-mobile/nodejs-mobile-react-native

Task :nodejs-mobile-react-native:buildCMakeDebug[x86] FAILED

try disable abiFilter x86 in build.gradle of ./node_modules/nodejs-mobile-react-native

makibibo

comment created time in a month

issue commentnodejs-mobile/nodejs-mobile-react-native

Task :nodejs-mobile-react-native:buildCMakeDebug[x86] FAILED

Hi. please update the readme with the instructions to drop x86 from reactNativeArchitectures .

makibibo

comment created time in a month

issue commentnodejs-mobile/nodejs-mobile-react-native

Task :nodejs-mobile-react-native:buildCMakeDebug[x86] FAILED

I ran into this too, and downgrading to 0.8.2 worked well for my needs.

@staltz since React Native builds x86 by default, maybe it would be worth adding a note to the readme so people know they should disable it when using this package? In my case, I only noticed when doing my final play store build (since there's no reason for me to build x86 otherwise), and I didn't find the info in this issue until I already knew how to fix it.

Thanks for maintaining this package, by the way!

makibibo

comment created time in a month

issue closednodejs-mobile/nodejs-mobile-react-native

After npm install, there's no module in Android studio

And then include it manually, get this:

  • What went wrong: Task 'GenerateNodeNativeAssetsListsarmeabi-v7a' not found in project ':nodejs-mobile-react-native'.

Env: "nodejs-mobile-react-native": "^16.17.5", "react-native": "0.71.3",

Android Studio Electric Eel | 2022.1.1 Patch 1

closed time in a month

Lonmee

issue commentnodejs-mobile/nodejs-mobile-react-native

After npm install, there's no module in Android studio

Forgotten abifilter config

Lonmee

comment created time in a month

pull request commentnodejs-mobile/nodejs-mobile-react-native

fix: NodeJS build for M1 iOS simulator

Yes, some plans. But we have to update it for Node.js 16.x

dejakob

comment created time in a month

pull request commentnodejs-mobile/nodejs-mobile-react-native

fix: NodeJS build for M1 iOS simulator

This fix works for me on Apple Silicons. Any plans to merge this PR?

dejakob

comment created time in a month

startednodejs-mobile/nodejs-mobile

started time in a month

more