Skip to content

Commit 2b001cf

Browse files
committed
.
1 parent 03ef49a commit 2b001cf

File tree

15 files changed

+299
-216
lines changed

15 files changed

+299
-216
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ nvm use --lts
3333
npm install
3434
```
3535

36+
Depending on your version of node, you might need to use the following
37+
38+
```
39+
nvm use --lts
40+
npm install --legacy-peer-deps
41+
```
42+
43+
This procedure works on node `v16.14.2`
44+
3645
For building from command line, disable linting by ammending `./android/build.gradle` as follows
3746

3847
```
@@ -73,6 +82,8 @@ nvm use --lts
7382
npm install
7483
```
7584

85+
This procedure works on node `v16.14.2`
86+
7687
Edit the `./ios/Podfile` and change the platform as follows:
7788

7889
```

build/src.zip

-2.91 MB
Binary file not shown.

test/RNV.mpr

0 Bytes
Binary file not shown.

test/RNV.mpr.lock

Whitespace-only changes.

test/nativemobile/.config

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"main": "RNV",
2222
"dev": "RNVDev"
2323
},
24-
"buildNumber": "2",
24+
"buildNumber": "4",
2525
"appcenter": {
2626
"iosAppName": "myapp.rnv-ios",
2727
"androidAppName": "myapp.rnv-android"
@@ -107,7 +107,15 @@
107107
"capabilities": {
108108
"deepLink": {
109109
"value": "",
110-
"enabled": false
110+
"enabled": false,
111+
"android": {
112+
"webLinks": [
113+
{
114+
"host": "",
115+
"path": ""
116+
}
117+
]
118+
}
111119
},
112120
"maps": {
113121
"value": "",

test/test.launch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
</listAttribute>
99
<mapAttribute key="org.eclipse.debug.core.environmentVariables">
1010
<mapEntry key="M2EE_ADMIN_PASS" value="1"/>
11-
<mapEntry key="M2EE_ADMIN_PORT" value="8091"/>
11+
<mapEntry key="M2EE_ADMIN_PORT" value="8090"/>
1212
<mapEntry key="M2EE_ADMIN_LISTEN_ADDRESSES" value="*"/>
1313
<mapEntry key="M2EE_CONSOLE_PATH" value="C:/Program Files/Mendix/9.6.2.30227/modeler/MendixConsoleLog.exe"/>
1414
<mapEntry key="MX_INSTALL_PATH" value="C:/Program Files/Mendix/9.6.2.30227"/>
1515
<mapEntry key="MXCONSOLE_BASE_PATH" value="C:/Users/ockert/src/entidad/mendix-react-native-twilio-video-webrtc/test/deployment"/>
1616
<mapEntry key="MXCONSOLE_RUNTIME_PATH" value="C:/Program Files/Mendix/9.6.2.30227/runtime"/>
17-
<mapEntry key="MXCONSOLE_RUNTIME_PORT" value="8081"/>
17+
<mapEntry key="MXCONSOLE_RUNTIME_PORT" value="8080"/>
1818
<mapEntry key="MXCONSOLE_RUNTIME_LISTEN_ADDRESSES" value="*"/>
19-
<mapEntry key="MXCONSOLE_SERVER_URL" value="http://127.0.0.1:8091/"/>
19+
<mapEntry key="MXCONSOLE_SERVER_URL" value="http://127.0.0.1:8090/"/>
2020
</mapAttribute>
2121
<stringAttribute key="org.eclipse.debug.core.source_locator_id" value="org.eclipse.jdt.launching.sourceLocator.JavaSourceLookupDirector"/>
2222
<stringAttribute key="org.eclipse.debug.core.source_locator_memento" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;sourceLookupDirector&gt;&#13;&#10;&lt;sourceContainers duplicates=&quot;false&quot;&gt;&#13;&#10;&lt;container memento=&quot;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;#13;&amp;#10;&amp;lt;javaProject name=&amp;quot;test&amp;quot;/&amp;gt;&amp;#13;&amp;#10;&quot; typeId=&quot;org.eclipse.jdt.launching.sourceContainer.javaProject&quot;/&gt;&#13;&#10;&lt;container memento=&quot;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;#13;&amp;#10;&amp;lt;default/&amp;gt;&amp;#13;&amp;#10;&quot; typeId=&quot;org.eclipse.debug.core.containerType.default&quot;/&gt;&#13;&#10;&lt;/sourceContainers&gt;&#13;&#10;&lt;/sourceLookupDirector&gt;&#13;&#10;"/>
-2.57 KB
Binary file not shown.

widget/build/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
src/
2+
arc/

widget/build/arc.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
DIRNAM=$(date +"%Y_%m_%d_%H_%M_%S")
3+
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)
4+
ARCDIR=$CURDIR/arc/$DIRNAM
5+
DEVDIR=$CURDIR/src/android
6+
mkdir -p $ARCDIR
7+
find $DEVDIR|grep "\.apk$"|while read APK;do
8+
APKNAM=$(filename $APK)
9+
echo archiving $APKNAM
10+
cp $APK $ARCDIR
11+
done

widget/build/builddev.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
#JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=~/Android/Sdk/ ./gradlew assembleRelease
3+
cd ./src
4+
npm install --legacy-peer-deps
5+
cd ./android
6+
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=~/Android/Sdk/ ./gradlew -x lint assembleDev
7+
../../arc.sh
8+
cd ../../arc
9+
ifconfig|grep inet
10+
darkhttpd ./ --port 4321

0 commit comments

Comments
 (0)