🔧 refactor(MainActivity.java, MainApplication.java): wrap ReactActivityDelegate and ReactNativeHost with Expo wrappers for better Expo compatibility 🔧 refactor(MyAwesomeProject.xcodeproj): update project settings for better compatibility with newer iOS versions and Expo 🔧 refactor(AppDelegate.h): change AppDelegate superclass to EXAppDelegateWrapper for Expo compatibility 🔧 refactor(Podfile): add Expo autolinking and patching, update iOS platform version for Expo compatibility 🔧 refactor(package.json): update Expo and related packages versions for better compatibility and add new Expo related dependencies 🔧 refactor(build.gradle, settings.gradle): update Android build tools and NDK versions, add Expo autolinking for better Expo compatibility
7 lines
426 B
Groovy
7 lines
426 B
Groovy
rootProject.name = 'MyAwesomeProject'
|
|
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
|
|
include ':app'
|
|
includeBuild('../node_modules/react-native-gradle-plugin')
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle")
|
|
useExpoModules() |