Пікірлер
@devs-ys6fu
@devs-ys6fu 29 күн бұрын
🔥solved!! thank U
@TROLLIEL13
@TROLLIEL13 Ай бұрын
dont work :(
@jithendra.k.sfirst_yr_b.sc9574
@jithendra.k.sfirst_yr_b.sc9574 Ай бұрын
it connected sir, for me also the change was instead of 4.4.1 firebase, i used 4.3.15 just as you showed in your video.. THANKYOU
@muskanjha1741
@muskanjha1741 Ай бұрын
in my android/build.gradle don't have dependency section but app/build.gradle have dependency so can I use this one ??
@hilalshaaban
@hilalshaaban Ай бұрын
I dont have a Dependencies section And where is the pludin section!? As i use flutter 3.22
@imanerahmaoui04
@imanerahmaoui04 2 ай бұрын
Thank you so much
@anishprajapat1585
@anishprajapat1585 2 ай бұрын
Failed to load FirebaseOptions from resource. Check that you have defined values.xml correctly., Exception, Cause: null, Stacktrace: java.lang.Exception: Failed to load FirebaseOptions from resource. Check that you have defined values.xml correctly. Please help
@zaigend6342
@zaigend6342 2 ай бұрын
Did u get the solution?
@Mohammed_Albaqer
@Mohammed_Albaqer 2 ай бұрын
my android level build.gradle looks different and it doesnt have a buildScript{} should I add one?
@gopalakrishnadasari4002
@gopalakrishnadasari4002 2 ай бұрын
Same😢
@zaitoontech
@zaitoontech 2 ай бұрын
Me same, new gradle version don't have buildScript
@CommentsReader108
@CommentsReader108 Ай бұрын
​​@@zaitoontech Bhai problem solve Hui ya nhi plz help
@bohidorshon
@bohidorshon 2 ай бұрын
Thank you :)
@smarttransport7100
@smarttransport7100 3 ай бұрын
thanks, for the tips i changed the version
@Jpes211
@Jpes211 3 ай бұрын
what if i dont have the dependencies part on android/build.gradle? it seems my build.gradel didn't build with anything from allproyects upwards
@Appsenses
@Appsenses 3 ай бұрын
in that case you have to work on plugins section like this - plugins { id 'com.android.application' version '7.3.0' apply false id 'com.google.gms.google-services' version '4.4.1' apply false }
@Jpes211
@Jpes211 3 ай бұрын
@@Appsenses I resolve it just copying a correct one from the start, from the build section and just adapt it to the data that I already had, thanks for the tutorial tho, it help me A LOT
@mavish1314
@mavish1314 3 ай бұрын
* What went wrong: A problem occurred configuring root project 'android'. > Could not resolve all files for configuration ':classpath'. > Could not find com.google.gms.google-services: 4.4.1:. Required by: project :
@Appsenses
@Appsenses 3 ай бұрын
make sure you did all of this: -- downloaded and included google-services.json file in app(src) repository -- in app level build.gradle you wrote minSdkVersion like this 'minSdkVersion 21' inside defaultconfig. -- in app level build.gradle you includes id "com.android.application" id "kotlin-android" id "dev.flutter.flutter-gradle-plugin" id 'com.google.gms.google-services' all of this plugins in plugins section -- in project level build gradle inside dependency section you included "classpath 'com.google.gms:google-services:4.3.15'', if you still got error use latest version and update you flutter sdk writing 'flutter upgrade' in terminal. if still there is error please notify me.
@hadil7921
@hadil7921 2 ай бұрын
buildscript { ext.kotlin_version = '1.9.23' repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:8.7' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.gmd:google-services:4.4.1' } } plugins { // ... // Add the dependency for the Google services Gradle plugin id("com.google.gms.google-services") version "4.4.1" apply false
@hadil7921
@hadil7921 2 ай бұрын
when u add pluging it works
@harshitagrawal6334
@harshitagrawal6334 3 ай бұрын
I was frustated from over 25 days because of the update of firebase, I could'nt connect my application to firebase. After this video I was able to connect with firebase, The change from 4.4.1 to 4.3.15 really works. Can you suggest what if we want to connect latest flutter sdk version which do not have the buildscript block in build.gradle file
@Appsenses
@Appsenses 3 ай бұрын
therfore you need to write it in plugins section in project-level gradle file. like this- plugins { id 'com.android.application' version '7.3.0' apply false id 'com.google.gms.google-services' version '4.4.1' apply false }
@ayushthakur3826
@ayushthakur3826 3 ай бұрын
I got error failed to load resource.intillizing firebase
@Appsenses
@Appsenses 3 ай бұрын
Check your Internet: Make sure your device or emulator has a working internet connection. Verify Firebase Setup: Double-check the files you got from Firebase (like google-services.json) and make sure they're in the right place in your Flutter project. Update Dependencies: Make sure you've added the right Firebase dependencies in your pubspec.yaml file and run flutter pub get to install them. Check Android Studio Setup: Ensure you've set up Firebase correctly in your Android project files (like build.gradle). Look for Errors: Run your app in Android Studio's debug mode and check the Logcat for any errors related to Firebase or the internet. Keep Things Updated: Make sure your Flutter, Android SDK, and Android Studio are up-to-date. Restart and Retry: Sometimes, simply restarting Android Studio or your device/emulator can solve the problem. Try on a Real Device: If you're using an emulator, try running your app on a real device to see if that makes a difference.
@Appsenses
@Appsenses 3 ай бұрын
if you are getting error please follow this instruction. 1.open app level build.gradle 2.change ' minSdkVersion flutter.minSdkVersion ' to ' minSdkVersion 21 ' hope everything will works perfect.
@devs-ys6fu
@devs-ys6fu 3 ай бұрын
Thanks, finally solved . I was struggling almost 10 days.
@Appsenses
@Appsenses 3 ай бұрын
keep supporting
@imrozeqamar2579
@imrozeqamar2579 3 ай бұрын
I recieve Error
@Appsenses
@Appsenses 3 ай бұрын
details please!
@Appsenses
@Appsenses 3 ай бұрын
try this instruction please: 1.open app level build.gradle 2.change ' minSdkVersion flutter.minSdkVersion ' to ' minSdkVersion 21 ' and then build the app. hope it will work. if not then provide details please.
@jacejoji
@jacejoji 3 ай бұрын
Thank you for providing such clear instructions! When is the next video coming up?
@Appsenses
@Appsenses 3 ай бұрын
Thanks for your support! working on the next video and aiming to upload it soon. Stay tuned!
@leykohos
@leykohos 3 ай бұрын
not working dude...
@Appsenses
@Appsenses 3 ай бұрын
I'm sorry to hear that you're having trouble. Can you please provide more details about the issue you're encountering? That way, I can try to assist you better and ensure the tutorial works for you. Thanks for reaching out!
@Appsenses
@Appsenses 3 ай бұрын
try this instruction please: 1.open app level build.gradle 2.change ' minSdkVersion flutter.minSdkVersion ' to ' minSdkVersion 21 ' and then build the app. hope it will work. if not then provide details please .
@kennethlandayao1685
@kennethlandayao1685 8 ай бұрын
can't find "hyper v" T-T
@Appsenses
@Appsenses 8 ай бұрын
Sorry for that. But you can try this steps for enabling hyper-v Enable Virtualization in BIOS/UEFI: To use Hyper-V, you need to enable virtualization in your computer's BIOS or UEFI settings. The steps to do this vary depending on your motherboard manufacturer and model. Usually, you'll need to access the BIOS/UEFI during startup (commonly by pressing a key like F2, F12, or Delete) and then navigate to the virtualization settings. Install Hyper-V Feature: Once you've confirmed that your computer supports virtualization and enabled it, follow these steps to enable Hyper-V: a. Right-click on the Start button and select "Apps and Features." b. Click on "Programs and Features" on the right side. c. In the "Programs and Features" window, click on "Turn Windows features on or off" on the left side. d. In the "Windows Features" dialog box, scroll down and find "Hyper-V." Check the box next to "Hyper-V" and any other Hyper-V features you want to enable. e. Click "OK" and Windows will install the Hyper-V feature. You may need to restart your computer. Hyper-V Manager: After enabling Hyper-V, you can find and launch "Hyper-V Manager" from the Start menu or by searching for it. This is the management tool for Hyper-V, where you can create and manage virtual machines.
@devs-ys6fu
@devs-ys6fu 8 ай бұрын
Helpful✨
@Appsenses
@Appsenses 8 ай бұрын
@razan6568
@razan6568 8 ай бұрын
ty for sharing👍
@Appsenses
@Appsenses 8 ай бұрын
stay connected.
@user-yp1qd2te5u
@user-yp1qd2te5u 8 ай бұрын
I enjoyed the video. I am so happy for you. thank you
@devs-ys6fu
@devs-ys6fu 9 ай бұрын
Static🔥
@none-jv1tn
@none-jv1tn 9 ай бұрын
Easy tutorial on carousel slider. Helpful