bro can we generate APK file for iOS by using these stepes ??
@adichamp-online-shoppingАй бұрын
Nice sir
@arupgorai77782 ай бұрын
Sir, apne buildToolsVersion, minSdkVersion,compileSdkVersion & supportLibVersion kaise select kiye based on targetSdkVersion? Please reply ..
@MohdAhtesham-bs9df3 ай бұрын
Hello I want to send nofication by my app like a chatApp when other user text you you get a notification how can we achieve this
@surajmohanty5283 ай бұрын
Sir, 13 to 14 kese kare?
@SrikanthG5554 ай бұрын
what is the os version?
@shashikantverma99314 ай бұрын
please provide github link
@iAm_Rohit_Raj4 ай бұрын
How to create signed apk for react native expo?
@coderesolutions28734 ай бұрын
Hey, sorry for the delayed response. For the expo build, you can use EAS. Check out their documentation for that.
@iAm_Rohit_Raj4 ай бұрын
@@coderesolutions2873 Got it. Thanks
@SnapShots..7 ай бұрын
Thanks sir ji update- build file generet krne ke liye "npx react-native build-android --mode=release" use kre
@Nomsyemma7 ай бұрын
Good day I am having this error in my terminal 'RNGoogleMobileAdsModule' can not be found verify that a module by this name is registered in native binary
@asmr_vids8 ай бұрын
does ads get shown in test flights, as my test ads are getting shows in debug mode on emulator but when I publish beta test flight getting black white banner, ads are getting shown, in ios react native
@coderesolutions28738 ай бұрын
Hi, you can only check ads in test unit id not real time ads just change the the test id to live before upload in production and ada will show depends on user preferences not immediate it may takes time to show ads just do follow correct configuration.
@shubhamrakshe55428 ай бұрын
If test ads are getting shown means does our implementation is correct right. Or there are some other factors as well?
@pratikpashine90548 ай бұрын
THANK YOU BOSS WORKING FOR ME .......... HARE KRISHNA
@BrainBlitzOG8 ай бұрын
which verson you installed
@BrainBlitzOG8 ай бұрын
can you help after i installed react native with "npx react-native init opop" and after i installed the latest version of it as it has the maximum downloads it says 5 vurnabilities found
@coderesolutions28738 ай бұрын
Hi, just do audit vurnable libs and resolve , if it is for the Admon lib then try to add latest version of it.
@BrainBlitzOG8 ай бұрын
@@coderesolutions2873 ok thanks
@saim45569 ай бұрын
hi can you pls make a video on geofencing running in background pls. how can i localy show notification of location geofence if user reach given radius. how geofence will work and code function..
@gershon14859 ай бұрын
I need it in java can you
@imalh11 ай бұрын
I think expo doesn't support admob
@thesslayerstv672511 ай бұрын
thanks a lot.. keep posting fixes like these <3
@mohd.anassiddiqui1521 Жыл бұрын
same code likha h par work nhi kar rha. if block execute nhi ho rha
pls check the code and pls let me know how to fix it
@mohd.anassiddiqui1521 Жыл бұрын
pls help kar do koi
@divyeshponkiya6027 Жыл бұрын
sir, camera open hote hi close ho jata hai ios side NSPhotoLibraryAddUsageDescription NSMicrophoneUsageDescription NSPhotoLibraryUsageDescription ye tin permission use ki hai help me..
@coderesolutions2873 Жыл бұрын
Hi, NSCameraUsageDescription permission bhi add karo and popup se camera launch krtey time popup ko hide krdo chal jayega
@divyeshponkiya6027 Жыл бұрын
NSCameraUsageDescription ye bhi use kiya hai ios17 me koi camera ke liye new update hai ?
@vkvaraliya75049 ай бұрын
Bro images selected show nay hoi raha he. Yaar picker pe images pe
@prajaktawalanju702 Жыл бұрын
hiii Sir , I got an issue jab bhi me push notification firebase se fire karati hu app unecpectdly close hota he without any error. I tried many solutiona from the internet but no used. Please help me this I tried from many days
@coderesolutions2873 Жыл бұрын
Hi, sorry for late responding, It seems strange! But anyway Try to debug using log cat and check where it get crashed exactly or check notifications permission in android manifest might be something changed according to android SDK api level or you can try to build debug apk and it would show you what’s went wrong if anything cause crash.
@Azhar_178 Жыл бұрын
NICE
@Nikul_Solanki Жыл бұрын
All steps are completed still not working
@coderesolutions2873 Жыл бұрын
Hi, might be something wrong or try to use latest sdk
@shaidazmin5055 Жыл бұрын
thank you so much sir, how can we send the notification to all user ?
@coderesolutions2873 Жыл бұрын
subscribe the topic and then use that to send it will goes to all at once
@amSonuRana Жыл бұрын
I have one app React Native file it's showing working in by expo mobile app how I build that apk expo: buildandroid is not working
@coderesolutions2873 Жыл бұрын
For expo you have to Check in their documentation because in expo there is some limitations with build customisation so you have to according to their build instructions.
@editinghuman7574 Жыл бұрын
Sir can you make the video on how to reload the ad when ad gets closed by user ❤
@russel-i6t Жыл бұрын
thankyou sir love from Pakistan...
@invisible6138 Жыл бұрын
app open ads ke logic per video plz
@nifemiojinni4631 Жыл бұрын
Thanks for the video
@mrsarjal Жыл бұрын
Hi sir pleas admin painal se admob ads lagane Ka tarika batye and how to on off ads by admin painal like laravel admin painal ...quki ads starting Mai show nai Karni 200 download me ke bad add show karani hai without update ...how to do this
@coderesolutions2873 Жыл бұрын
Hi, for that you can make separate components for Ads and store the adUnitId in database and make a config variable to enableAds true/false and then do conditional rendering accordingly.
@rajdeepkumarray4568 Жыл бұрын
Don't know why but it's not working.. i am using it with react navigation screen. here is the code -> //CODE FOR INTERSTITIAL ADS const [loaded, setLoaded] = useState(null); useEffect(() => { initInterstitial; }, []); const initInterstitial = async () => { const adUnitId2 = TestIds.INTERSTITIAL; const interstitial = InterstitialAd.createForAdRequest(adUnitId2); interstitial.addAdEventListener(AdEventType.LOADED, () => { setLoaded(interstitial); console.log("interstitial ad loaded..!!"); }); interstitial.addAdEventListener(AdEventType.CLOSED, () => { console.log("interstitial ad closed..!!"); }); interstitial.load(); } const ShowInterstitialAd = () => { if (loaded) { loaded.show(); } } //INTERSTITIAL CODE ENDS please provide any solution !!
@coderesolutions2873 Жыл бұрын
Hi, Thanks for commenting and I saw your code its seems all ok but I think you forget to call function properly call like this initInterstitial() instead of initInterstitial; in useEffect
@girianandhan2548 Жыл бұрын
ERROR Invariant Violation: requireNativeComponent: "RNSScreen" was not found in the UIManager.
@coderesolutions2873 Жыл бұрын
Sorry!! For late responding, if anyone face the same issue, so don’t forget to install react-native-screen package from npm
@duyopham520 Жыл бұрын
thank you so much
@venkkateshmg4850 Жыл бұрын
anyone can help me for windows iam having issue on gradle.bat not found in my project
@atozentertainment4670 Жыл бұрын
Sir router v6. 10 ka video bnao plz 🙏
@HamadAhmad-ci2zw Жыл бұрын
Best of Luck bro 👍
@BomTanapoom Жыл бұрын
Ohhhhh Thanks. You helped me a lot
@coderesolutions2873 Жыл бұрын
You’re welcome 😎
@andrerodriguez4998 Жыл бұрын
Thanks. You helped me a lot!!!
@coderesolutions2873 Жыл бұрын
Glad I could help!
@pankajsharma-rf1ov Жыл бұрын
Guys please support this channel
@coderesolutions2873 Жыл бұрын
Thanks man👍
@pankajsharma-rf1ov Жыл бұрын
Awesome
@muhammedaltinci580 Жыл бұрын
Saved my day, Thanks a lot
@coderesolutions2873 Жыл бұрын
👍
@coderesolutions2873 Жыл бұрын
no one subscribe yet for this video, guys please Subscribe 🙏 it will motivate me to do more and reach this video to more people, Big Thanks all of you
@amsolutionweb Жыл бұрын
please solve error of require native component "BV Leanear greadient" not found please why show this error
@amsolutionweb Жыл бұрын
please solve error of require native component "BV Leanear greadient" not found please why show this error
@coderesolutions2873 Жыл бұрын
Try to rebuild your app or if getting this error in ios then remove Pods folder along with Podfile.lock and then run pod install and build again I hope this will help or you find more solutions following link : github.com/react-native-linear-gradient/react-native-linear-gradient/issues/503
@amsolutionweb Жыл бұрын
please make react native error video on bv lineaner greadient not found
@Meansgdd Жыл бұрын
In completed payment show ho raha hai...
@coderesolutions2873 Жыл бұрын
Please check publish key and secret key in you sandbox account which you have defined in code or you can follow the same in video and check the description I have mentioned the git repo also you can clone it and check I hope you will get the solution
@memostartup281 Жыл бұрын
Make video in react native camera recording video and take photos