can you add tutorial about how can someone implement Oauth (goolge sigin) and manual credentials signup,signin with node js server to handle the authentication
@ahmaddawood969122 күн бұрын
ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH
@mwlulud29952 ай бұрын
Its work with expo 51?
@misalambasta2 ай бұрын
Yes
@zelvrs2 ай бұрын
is it must to have openjdk 17 and not another version?
@AverageDevDude2 ай бұрын
It is recommended on the official docs reactnative.dev/docs/set-up-your-environment?os=windows
@ElyDev02 ай бұрын
hello I followed the tutorial to the letter but in the end I got this error. your aude would be very useful to me thank you very much """".....\android> npx react-native build-android --mode=release info Building the app... FAILURE: Build failed with an exception. * Where: Settings file 'C:\Users\daoud\Desktop\project\mobil\lycee_augustin ode_modules\@react-native\gradle-plugin\settings.gradle.kts' line: 16 * What went wrong: Plugin [id: 'org.gradle.toolchains.foojay-resolver-convention', version: '0.5.0'] was not found in any of the following sources: - Gradle Core Plugins (plugin is not in 'org.gradle' namespace) - Included Builds (No included builds contain this plugin) - Plugin Repositories (could not resolve plugin artifact 'org.gradle.toolchains.foojay-resolver-convention:org.gradle.toolchains.foojay-resolver-convention.gradle.plugin:0.5.0') Searched in the following repositories: MavenRepo Google Gradle Central Plugin Repository * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. > Get more help at help.gradle.org. BUILD FAILED in 3m 20s info 💡 Tip: Make sure that you have set up your development environment correctly, by running npx react-native doctor. To read more about doctor command visit: github.com/react-native-community/cli/blob/main/packages/cli-doctor/README.md#doctor error Failed to build the app. Error: Command failed with exit code 1: gradlew.bat app:bundleRelease"""""
@AverageDevDude2 ай бұрын
github.com/facebook/react-native/issues/42149
@BBTR_2 ай бұрын
before, it is impossible to build local in expo. they advice to eject project and then build. But this feature is new? i saw build first time with prebuild
@AverageDevDude2 ай бұрын
Yes expo eject is deprecated and prebuild is the much better replacement. Also expo has improved quite a lot with addition of expo router and less configuration to write
@BBTR_2 ай бұрын
bro thank you. I want to do a project, but for example, when you enter the application, it will download a 50 MB database from the Google cloud service and its data will be updated. But I couldn't find anything like this in the expo. Downloads always go to the android download folder. Can you make a video about this?
@najeemfasil519929 күн бұрын
Yeah bro, I wasn't aware of this and struggled the whole day. Finally, I found this video.
@naveenprasanth9572 ай бұрын
Hi bro. It is very useful.
@thegraintgaymer80803 ай бұрын
for ios pls?
@AverageDevDude2 ай бұрын
for iOS, you need at least a Mac
@safalbk65713 ай бұрын
you are great....😍😍😍😍😍😍
@mahtab_sudip3 ай бұрын
Thanks broh!!!!! KEEP IT UP💪💪
@AverageDevDude3 ай бұрын
Glad it helped!
@ThePrajaktaVlogs3 ай бұрын
is that any way to make apk using eas build --local ?
@AverageDevDude3 ай бұрын
this particular video is on making debug/development video if you want to make a regular production apk I already have a video on that, also you don't really need eas build --local to make apk
@ThePrajaktaVlogs3 ай бұрын
I was using eas build --local which is creating .aab file . i want apk file with this. is that possible?
@AverageDevDude3 ай бұрын
I have shown how to make both apk and aab files in the video :-)
@7-haroon3 ай бұрын
which OS you are using for local build . I want to build my app but i am confused how to build locally
@AverageDevDude3 ай бұрын
@7-haroon I have Windows as my OS and to build apk/aab locally, follow the instructions in the video
@keshavakumar98283 ай бұрын
great video. thanks
@p369m3 ай бұрын
Nice bro keep it up 💪
@doms15703 ай бұрын
u are amazing!! thank u very much. Please tell me if with this tutorial i cant install native libraries like notifee on my expo app . can u do tutorial about it please ?
@AverageDevDude3 ай бұрын
yes you can use notifee on expo but you cannot use it on Expo Go, you need to make an debug apk/development build For notifee 1. install the package `pnpm expo install @notifee/react-native` 2. add the notifee plugin in the app.json, you can see the docs 3. prebuild the app `pnpm expo prebuild` 4. Now to make you debug apk connect to an android phone debugging enabled, then run `pnpm expo run:android --variant debug`, make sure this apk is installed in the connected phone 5. Now for next time, you can connect the phone and run `pnpm start -d` and remember you need to build the debug apk again if you add any new native libraries, e.g react native firebase
@yogeshvanzara55534 ай бұрын
Great
@SendMail-vb5bf4 ай бұрын
What version of node is required to run this application? I am using node 20.10 and it can't run this application.
@AverageDevDude4 ай бұрын
I am using node 20 and it should work fine, what error are you getting?
@aadarshgurug4 ай бұрын
it helped alot. thanks
@AverageDevDude4 ай бұрын
Glad it helped!
@aadarshgurug4 ай бұрын
@@AverageDevDude would like to have video on webrtc implementation and testing in expo and native cli apps
@dorihi5 ай бұрын
I was thinking about this topic and thank you so much for posting the video. Have you also thought about sharing the header and footer of the next js, docusaurus app?
@AverageDevDude5 ай бұрын
I'm glad you liked the video. About sharing the header and footer, the two apps are developed separately but combine together when compiled. Both Next.js and Docusaurus allow you to make layouts. And since they use React, you can easily share common components like the header and footer between the apps. I hope this helps explain it better.