Bro, I follow along with your tutorials it's amazing to learn, and you beautifully explain everything, I already completed 2hr of your video. Thanks a lot.👍💙🙏
@keynotecast Жыл бұрын
Glad to hear that
@aaronmoroney2066 Жыл бұрын
Awesome faizal
@keynotecast Жыл бұрын
thanks
@somnathdas8922 Жыл бұрын
Bro you did great job.
@keynotecast Жыл бұрын
Thank you so much
@abderrazzakzahir168 Жыл бұрын
a big thank-you
@keynotecast Жыл бұрын
you are welcome
@manikandanv2608 Жыл бұрын
after making the ports for emulators...you are adding some integrations in plist file.....what we should do for the same if we are trying in android..(am saying about the code you done at 2:21:00 to 2:23:00 time)
@keynotecast Жыл бұрын
the config for android is simpler. when connecting to emulator, the ip is 10.0.2.2 and not localhost, you have to do the following: final localHost = Platform.isAndroid ? '10.0.2.2' : 'localhost'; adapt the android/app/build.gradle to match the min sdk version and add the following on the dependencies (if not added automatically with flutter fire): dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation platform('com.google.firebase:firebase-bom:29.0.0') def multidex_version = "2.0.1" implementation "androidx.multidex:multidex:$multidex_version" implementation 'com.google.firebase:firebase-auth' } on /main/android/build.gradle file add the following in dependencies : dependencies { classpath 'com.android.tools.build:gradle:4.1.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.gms:google-services:4.3.10' } on android/app/src/main/AndroidManifest.xml, you need to bind the android:networkSecurityConfig, the xml is located in android/app/src/main/res/xml, check this repo and copy the xml and the respective configs in AndroidManifest github.com/fpatelm/flutter-firebase-mobx mote: the versions might be outdated, use the latest versions
@ishaqsaeed Жыл бұрын
thank you bro
@keynotecast Жыл бұрын
you are welcome
@devcodes77603 ай бұрын
Which programming stidio is this please, android studio?
@keynotecast3 ай бұрын
Visual studio code
@devcodes77603 ай бұрын
@@keynotecast thanks bro, can I run this course with Android device
@MrCamdere Жыл бұрын
Bro thank u for this tut can i build this application with the current version of Flutter ?
@keynotecast Жыл бұрын
Yes you can, if there is any API changes, follow flutter and Firebase official documentation
@MamadouBa-gg2hu Жыл бұрын
which version of flutter did you use in this tutorial