installing libs
This commit is contained in:
parent
80b544f270
commit
7157c984aa
@ -81,8 +81,12 @@ project.ext.react = [
|
||||
enableHermes: true, // clean and rebuild if changing
|
||||
]
|
||||
|
||||
apply from: "../../node_modules/react-native/react.gradle"
|
||||
project.ext.vectoricons = [
|
||||
iconFontNames: [ 'MaterialIcons.ttf', 'EvilIcons.ttf' ] // Name of the font files you want to copy
|
||||
]
|
||||
|
||||
apply from: "../../node_modules/react-native/react.gradle"
|
||||
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
|
||||
/**
|
||||
* Set this to true to create two separate APKs instead of one:
|
||||
* - An APK that only works on ARM devices
|
||||
|
@ -4,6 +4,7 @@ import android.app.Application;
|
||||
import android.content.Context;
|
||||
import com.facebook.react.PackageList;
|
||||
import com.facebook.react.ReactApplication;
|
||||
import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;
|
||||
import com.swmansion.gesturehandler.react.RNGestureHandlerPackage;
|
||||
import com.facebook.react.ReactInstanceManager;
|
||||
import com.facebook.react.ReactNativeHost;
|
||||
|
@ -1,4 +1,6 @@
|
||||
rootProject.name = 'BigBlueButton'
|
||||
include ':@react-native-async-storage_async-storage'
|
||||
project(':@react-native-async-storage_async-storage').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-async-storage/async-storage/android')
|
||||
include ':react-native-gesture-handler'
|
||||
project(':react-native-gesture-handler').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-gesture-handler/android')
|
||||
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
|
||||
|
@ -18,6 +18,8 @@ target 'BigBlueButton' do
|
||||
|
||||
pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
|
||||
|
||||
pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-async-storage/async-storage'
|
||||
|
||||
target 'BigBlueButtonTests' do
|
||||
inherit! :complete
|
||||
# Pods for testing
|
||||
|
667
package-lock.json
generated
667
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@ -10,17 +10,23 @@
|
||||
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-native-async-storage/async-storage": "^1.16.1",
|
||||
"@react-native-community/masked-view": "^0.1.11",
|
||||
"@react-navigation/drawer": "^6.3.1",
|
||||
"@react-navigation/native": "^6.0.8",
|
||||
"@react-navigation/native-stack": "^6.5.0",
|
||||
"@types/styled-components-react-native": "^5.1.3",
|
||||
"bigbluebutton-mobile-sdk": "^0.1.6",
|
||||
"react": "17.0.2",
|
||||
"react-native": "0.67.2",
|
||||
"react-native-gesture-handler": "2.1.1",
|
||||
"react-native-gesture-handler": "^2.2.0",
|
||||
"react-native-modalize": "^2.0.13",
|
||||
"react-native-reanimated": "^2.4.1",
|
||||
"react-native-safe-area-context": "^3.4.0",
|
||||
"react-native-screens": "^3.11.1",
|
||||
"react-native-webview": "^11.17.2"
|
||||
"react-native-swipe-list-view": "^3.2.9",
|
||||
"react-native-vector-icons": "^9.1.0",
|
||||
"react-native-webview": "^11.17.2",
|
||||
"styled-components": "^5.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.9",
|
||||
@ -28,7 +34,9 @@
|
||||
"@react-native-community/eslint-config": "^2.0.0",
|
||||
"@types/jest": "^26.0.23",
|
||||
"@types/react-native": "^0.66.15",
|
||||
"@types/react-native-vector-icons": "^6.4.10",
|
||||
"@types/react-test-renderer": "^17.0.1",
|
||||
"@types/styled-components": "^5.1.22",
|
||||
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
||||
"@typescript-eslint/parser": "^5.7.0",
|
||||
"babel-jest": "^26.6.3",
|
||||
|
Loading…
Reference in New Issue
Block a user