-
Notifications
You must be signed in to change notification settings - Fork 8
Conversation
example/android/build.gradle
Outdated
@@ -21,8 +21,11 @@ buildscript { | |||
dependencies { | |||
classpath("com.android.tools.build:gradle") | |||
classpath('com.facebook.react:react-native-gradle-plugin') | |||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") | |||
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deleted
example/babel.config.js
Outdated
@@ -2,7 +2,7 @@ const path = require('path'); | |||
module.exports = function (api) { | |||
api.cache(true); | |||
return { | |||
presets: ['babel-preset-expo'], | |||
presets: ['module:@react-native/babel-preset'], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because of upgrading RN to 0.73
example/ios/Podfile
Outdated
@@ -66,7 +66,7 @@ target 'reactnativemembranewebrtcexample' do | |||
# necessary for Mac Catalyst builds | |||
:mac_catalyst_enabled => false | |||
) | |||
__apply_Xcode_12_5_M1_post_install_workaround(installer) | |||
# __apply_Xcode_12_5_M1_post_install_workaround(installer) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove comments
example/tsconfig.json
Outdated
@@ -1,5 +1,5 @@ | |||
{ | |||
"extends": "expo/tsconfig.base", | |||
"extends": "@react-native/typescript-config/tsconfig.json", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this config instead of expo's?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
react native upgrade helper showed to chage that
package.json
Outdated
"@babel/core": "7.23.9", | ||
"@babel/eslint-parser": "7.23.10", | ||
"@babel/plugin-proposal-private-property-in-object": "7.21.11", | ||
"@babel/preset-env": "7.23.9", | ||
"@react-native/babel-preset": "0.73.21", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need all of this? shouldn't those packages be added by other packages?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
No description provided.