You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found following Problem:
After Installation I always get a message like: "The path Variable is expecting String, undefined is given."
So I found out following and fixed it too:
In the folder "nodejs-mobile-cordova\install\hooks\both" there are 2 files:
after-prepare-native-modules-preference
after-prepare-patch-npm-packages
Both of them have a Code-Line with this:
var platformAPIInstance = new platformAPI();
==> It has to be changed to:
var platformAPIInstance = new platformAPI(platform,platformPath);
==> After doing this change, it will work correctly!
I have found following Problem:
After Installation I always get a message like: "The path Variable is expecting String, undefined is given."
So I found out following and fixed it too:
In the folder "nodejs-mobile-cordova\install\hooks\both" there are 2 files:
Both of them have a Code-Line with this:
==> It has to be changed to:
==> After doing this change, it will work correctly!
📗 API Reference Docs Problem
Location
Section of the site where the content exists
Affected URL(s):
Description
Concise explanation of the problem
✍️
submit a pull request.
The text was updated successfully, but these errors were encountered: