vidit-me / react-native-jitsi-meet

MIT License
6 stars 2 forks source link

Android app crash #12

Open shahedzaman-web opened 1 year ago

shahedzaman-web commented 1 year ago

After building the app when I go to the meet screen app crashes. It works on the development process. Here is my pachage json file `

{ "name": "xxx", "version": "0.0.1", "private": true, "scripts": { "android": "react-native run-android", "ios": "react-native run-ios", "start": "react-native start", "test": "jest", "lint": "eslint ." }, "dependencies": { "@react-native-community/checkbox": "^0.5.14", "@react-navigation/bottom-tabs": "^6.5.5", "@react-navigation/native": "^6.1.3", "@react-navigation/native-stack": "^6.9.9", "@reduxjs/toolkit": "^1.9.3", "@rneui/base": "^4.0.0-rc.7", "@rneui/themed": "^4.0.0-rc.7", "add": "^2.0.6", "axios": "^1.3.4", "formik": "^2.2.9", "react": "16.11.0", "react-native": "0.62.2", "react-native-dotenv": "^3.4.8", "react-native-mmkv": "^2.8.0", "react-native-network-logger": "^1.14.0", "react-native-safe-area-context": "^4.5.0", "react-native-screens": "^3.20.0", "react-native-star-rating": "^1.1.0", "react-native-vector-icons": "^9.2.0", "react-redux": "^8.0.5", "redux-persist": "^6.0.0", "yarn": "^1.22.19" }, "devDependencies": { "@babel/core": "^7.6.2", "@babel/runtime": "^7.6.2", "@react-native-community/eslint-config": "^0.0.5", "babel-jest": "^24.9.0", "eslint": "^6.5.1", "jest": "^24.9.0", "metro-react-native-babel-preset": "^0.58.0", "react-test-renderer": "16.11.0" }, "jest": { "preset": "react-native" } }

and build.gradle file // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript { ext { buildToolsVersion = "28.0.3" minSdkVersion = 16 compileSdkVersion = 28 targetSdkVersion = 28 } repositories { google() jcenter() } dependencies { classpath("com.android.tools.build:gradle:3.5.2") // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } }

allprojects { repositories { exclusiveContent { filter { includeGroup "com.facebook.react" } forRepository { maven { url "$rootDir/../node_modules/react-native/android" } } }

    mavenLocal()
    maven {
        // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
        url("$rootDir/../node_modules/react-native/android")
    }
    maven {
        // Android JSC is installed from npm
        url("$rootDir/../node_modules/jsc-android/dist")
    }

    google()
    jcenter()
    maven { url 'https://www.jitpack.io' }

}

} `