Skip to content

Commit e57dab9

Browse files
committed
upgrade react native permissions
1 parent b3da4f2 commit e57dab9

File tree

212 files changed

+40144
-501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+40144
-501
lines changed

build/builddev.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
22
#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
3+
cd ./dev
54
cd ./android
6-
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=~/Android/Sdk/ ./gradlew -x lint assembleDev
5+
#ANDROID_SDK_ROOT=/home/skullquake/Android/cmdline-tools/tools/bin/sdkmanager
6+
#ANDROID_SDK_ROOT=~/Android/Sdk/
7+
#JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=/home/skullquake/Android/ gradle -x lint assembleDev
8+
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=/home/skullquake/Android/ ./gradlew clean
9+
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=/home/skullquake/Android/ ./gradlew -x lint assembleDev
710
../../arc.sh
8-
cd ../../arc
9-
darkhttpd ./ --port 4321

build/buildrel.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/bash
2-
cd ./src
3-
npm install --legacy-peer-deps
2+
cd ./dev
43
cd ./android
54
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 ANDROID_SDK_ROOT=~/Android/Sdk/ ./gradlew -x lint build

build/dev.zip

3.66 MB
Binary file not shown.

build/dev/.dependencies

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"react-native-twilio-video-webrtc": "2.1.0",
3+
"react-native-normalize": "1.0.1"
4+
}

build/dev/.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
project.xcworkspace
24+
25+
# Android/IntelliJ
26+
#
27+
build/
28+
android/app/.settings
29+
.idea
30+
.gradle
31+
local.properties
32+
*.iml
33+
.classpath
34+
35+
# iOS
36+
#
37+
ios/Pods/
38+
ios/MendixAppDelegate.m
39+
40+
# node.js
41+
#
42+
# Use / before node_modules because iOS assets folder has a node_modules folder that should not be excluded.
43+
/node_modules/
44+
npm-debug.log
45+
yarn-error.log
46+
47+
# BUCK
48+
buck-out/
49+
\.buckd/
50+
*.keystore
51+
52+
# fastlane
53+
#
54+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
55+
# screenshots whenever they are needed.
56+
# For more information about the recommended setup visit:
57+
# https://docs.fastlane.tools/best-practices/source-control/
58+
59+
*/fastlane/report.xml
60+
*/fastlane/Preview.html
61+
*/fastlane/screenshots
62+
63+
# Bundle artifact
64+
*.jsbundle
65+
66+
android/\.project
67+
68+
android/app/\.project
69+
70+
android/app/bin
71+
72+
android/\.settings/org\.eclipse\.buildship\.core\.prefs
73+
74+
android/mendixnative-release/\.project
75+
76+
android/mendixnative-release/\.settings/org\.eclipse\.buildship\.core\.prefs

build/dev/.mx/releases_list.json

Lines changed: 842 additions & 0 deletions
Large diffs are not rendered by default.

build/dev/.native_dependencies

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"react-native-twilio-video-webrtc": "2.1.0",
3+
"react-native-normalize": "1.0.1",
4+
"react-native-permissions": "3.3.1"
5+
}

build/dev/.template_version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v6.2.28

build/dev/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Mendix
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build/dev/README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Native Template
2+
3+
Native Template is the starting point for any Mendix Native App project.
4+
5+
This repo is used as the baseline for Mendix Native Mobile Builder, a GUI tool that automates the process of building your Native Apps with Mendix and is provided with Mendix Studio Pro.
6+
7+
Please refer to the [official how-to section](https://docs.mendix.com/howto/mobile/native-mobile) for Mendix Native Mobile.
8+
9+
Contact [Mendix support](https://support.mendix.com/hc/en-us) if assistance is required.
10+
11+
### Branching policy
12+
13+
#### Master branch
14+
15+
**Please avoid using master directly.**
16+
17+
Master is considered an active development branch. What is on master is actively worked on and might:
18+
- Not support your current version of Mendix Studio Pro
19+
- Include experimental features
20+
- Be in a possible broken state for your usage
21+
22+
#### Release branches
23+
24+
Official releases are done via the `release/x.x.x` branches. If you need a particular version, checkout the appropriate branch; latest should reflect the latest patch version released.
25+
26+
Otherwise the GitHub releases also include a zipped version of the branch state they were created from. You can download and unzip that for further use.
27+
28+
To deduct which version of Native Template fits to your current Mendix Studio Pro version, please use the [mendix version json file](https://github.com/mendix/native-template/blob/master/mendix_version.json). It include a map of studio pro version ranges to Native template version ranges.
29+
30+
Example usage:
31+
```
32+
If you are using 8.15.x version of Studio Pro.
33+
Then use 5.1.x of Native Template.
34+
```
35+
36+
#### Developer branches
37+
38+
Any other branches are considered developer branches.
39+
Simply avoid using developer branches for private use. These are actively worked on branches and are definitely not available for public consumption.
40+

0 commit comments

Comments
 (0)