diff --git a/android/app/build.gradle b/android/app/build.gradle index 5275b51..b6a2ddd 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -77,7 +77,7 @@ project.ext.react = [ ] apply from: "../../node_modules/react-native/react.gradle" -apply from: "../../node_modules/react-native-sentry/sentry.gradle" +// apply from: "../../node_modules/react-native-sentry/sentry.gradle" // TODO getting bad sentry url // See https://github.com/luggit/react-native-config#setup apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle" @@ -173,8 +173,6 @@ dependencies { } implementation project(':react-native-version-number') implementation project(':react-native-splash-screen') - implementation project(':react-native-audio') - implementation project(':react-native-video') implementation project(':react-native-config') implementation project(':react-native-i18n') implementation project(':react-native-vector-icons') diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index ea7c899..4cad30f 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ - @@ -9,10 +9,7 @@ - - - - + getPackages() { new RNFirebaseNotificationsPackage(), new RNVersionNumberPackage(), new SplashScreenReactPackage(), - new ReactNativeAudioPackage(), - new ReactVideoPackage(), new ReactNativeConfigPackage(), new ReactNativeI18n(), new VectorIconsPackage(), diff --git a/android/settings.gradle b/android/settings.gradle index 017699c..2cf665c 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -11,10 +11,6 @@ include ':react-native-version-number' project(':react-native-version-number').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-version-number/android') include ':react-native-splash-screen' project(':react-native-splash-screen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-splash-screen/android') -include ':react-native-audio' -project(':react-native-audio').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-audio/android') -include ':react-native-video' -project(':react-native-video').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-video/android-exoplayer') include ':react-native-config' project(':react-native-config').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-config/android') include ':react-native-i18n'