Flutter Tutorial for Beginners #4 - Creating a Flutter App in Android Studio

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 495

  • @jackkrauser1371
    @jackkrauser1371 Год назад +41

    For those who can't open the project without Dart Language:
    Before you click on create a new app, there is a button in the current version with the Flutter Icon.
    1.- Click on Flutter Button.
    2.- Where it says "Flutter SDK Pack". You'll put the path of your Flutter Folder, it should be like: C:\User\Rest_of_your_Path\flutter (Just find the folder and copy it)
    3.- Click on next
    4.- Where it says "Platform" choose whatever you wanna choose (It says android, iOS, Linux, MacOs, Web, Windows)
    5.- Finish
    That's all.

    • @crux6744
      @crux6744 Год назад +2

      Omg i dont know how to thank you, tried so long now and this helped me. Thank you so much

    • @jackkrauser1371
      @jackkrauser1371 Год назад

      @@crux6744 You're welcome brother!

    • @praveensagar72
      @praveensagar72 9 месяцев назад

      since flutter 3 is already here so will it it be okay to learn this version 1.7 first. i am so cnfused can you please help

    • @roshdyessam3480
      @roshdyessam3480 9 месяцев назад +1

      thanks a ton man, I've been trying to figure out why it generates only java files

  • @newbreaker0403
    @newbreaker0403 2 года назад +8

    I am watching this video on 2021 and is still very useful :)
    In order to make it work the virtual device, you need to activate the Windows Hyper Platform on Control Panel --> Programs and futures --> Turn Windows feautures on or off

  • @illusionhex1200
    @illusionhex1200 2 года назад +47

    This is how the courses for intermediate programmers should be, great work.

  • @ibbixyzzy7604
    @ibbixyzzy7604 Год назад +3

    12:43 I was trying to figure out which cross-platform SDK I should start with, and this four-line "hello world" (or rather "hey ninjas!") did it for me. Thank you so much for making this example so simple.

  • @liamsmith-yp3xh
    @liamsmith-yp3xh 4 года назад +50

    ... as someone who tried to just get react native running for about a week and a bit.. this is instantly 100 times more pain free..

  • @stillmattwest
    @stillmattwest 11 месяцев назад

    It's fun doing this course at the end of 2023 with my Mac Studio rendering about 10x faster than Net Ninja's PC.
    All kidding aside, this is a great course.

  • @nellietobey5494
    @nellietobey5494 4 года назад +11

    For those receiving a multiple key error when running the last minute piece of code, here is the fix, I don't know why a comma missing would cause this error, but I'd love to find out:
    void main() => runApp(MaterialApp(home:
    Text('Hello'),
    ),
    );
    Thanks for the tutorials!!

  • @destro5990
    @destro5990 2 года назад +9

    amazing how clear and organized your explaination is

    • @NetNinja
      @NetNinja  2 года назад +1

      Thanks Destro, hope it was helpful :)

  • @zari_zara
    @zari_zara 5 лет назад +12

    Hi! i watched 12 videos from 37. they were perfect and the best. a big thanks to you and hope you the best

    • @NetNinja
      @NetNinja  5 лет назад +4

      Watch the rest :p haha, thanks :))

  • @DDLYkitten
    @DDLYkitten 9 месяцев назад

    I always find your vidoes when I'm trying to study, I finally found the will to subscribe!!!

  • @rsruo8331
    @rsruo8331 4 года назад +42

    13:27 it should be hot restart ,you will have error by hot reload

    • @adammahmoud7959
      @adammahmoud7959 4 года назад +3

      thanks was searching for this!

    • @nnaemekachimezie1356
      @nnaemekachimezie1356 4 года назад

      Mine says my virtual device isn't applicable for the main.dart configuration any help would be appreciated.

    • @ektakumari3082
      @ektakumari3082 4 года назад +1

      Man you solved a problem that was actually so depressing, Thanks a lot.
      Love from India.

    • @sabiqt00
      @sabiqt00 3 года назад

      thanks mate

  • @shubr2003
    @shubr2003 Год назад

    bro love that you go in-depth on the explaining

    • @NetNinja
      @NetNinja  Год назад

      Appreciate it! :) thanks

  • @fatimakhalid6856
    @fatimakhalid6856 3 года назад +18

    Your background is so cool :D! i really appreciate the way you make us understand flutter so easily
    your an amazing teachers thumbs up to you man! :D

  • @musagul
    @musagul 4 года назад +3

    Hello Sir, Your explanation and this tutorial is totally "a good thing" for humanity. Thank you!

  • @bennguyen1313
    @bennguyen1313 4 года назад

    Nick Manning suggests, rather than the default boilerplate, instead always start with a 3-file setup:
    main.dart:
    import 'app.dart';
    main() {
    runApp( App() );
    }
    App.dart:
    import 'home.dart';
    class App extends StatelessWidget {
    @override
    Widget build (BuildContext context) {
    return MaterialApp ( home: Home() ); // MaterialApp widget
    }
    }
    Home.dart
    class Home extends StatelessWidget {
    @override
    Widget build (BuildContext context) {
    return Scaffold {
    ... appbar , body ...
    }
    }

  • @mvs69
    @mvs69 2 года назад +4

    which android/ios language should be chosen in newest Android studio, in order to continue this course?

  • @damianwilk930
    @damianwilk930 5 лет назад +21

    Yaaay, thank you Shaun! It's so exciting to follow this series

  • @harryflim
    @harryflim 5 лет назад +22

    Any plans on making data structure and algorithm playlist?

  • @Mirtguitar
    @Mirtguitar Год назад +6

    Everything was great until i found out the changes across versions was too high. Good totorial anyway.

  • @bensosfrequents
    @bensosfrequents 4 месяца назад +1

    You told us that => is used to return something, please explain why a void method is returning something here "void main() => runApp(const MyApp());". Sorry but I'm a bit confused, I followed your previous tutorial where you taught on dart basics and I remember clearly telling us that this symble => is used to return?

  • @rogiergorter6214
    @rogiergorter6214 4 года назад

    I have a AMD Ryzen so i needed to do a view changes, but for now it looks like the FloatingActionButton works smoothly. Thanks a lot.

    • @colbykapalka7895
      @colbykapalka7895 4 года назад

      i also have a ryzen and im getting an error everytime i try to launch the emulator, it says i need to manually download the drivers

    • @rogiergorter6214
      @rogiergorter6214 4 года назад

      ​@@colbykapalka7895 Download in your SDK manager (Tools-SDK-manager -Systems-Android SDK-SDK Tools) the Hypervisor Driver for AMD processors.

  • @aravinda9585
    @aravinda9585 Месяц назад +1

    Awesome video! Thankyou for this series! ❤
    I think, I can hear your computer fan running fast while running that emulator! 🔥

    • @NetNinja
      @NetNinja  Месяц назад +1

      Haha! thanks for watching :) glad you enjoyed it! be sure to check out the updated crash course here: ruclips.net/video/j_rCDc_X-k8/видео.html

    • @aravinda9585
      @aravinda9585 Месяц назад +1

      @@NetNinja Thankyou very much for the ❤️ and the reply! It really made my day!

  • @tortysoft
    @tortysoft 2 года назад +3

    This is rather confusing to follow using the 2022 Android Studio, but if you look hard enough you can make it work.

    • @SepiaMN
      @SepiaMN 2 года назад

      I never got to the same point as running the demo app. I don’t suppose you could explain what you did?

    • @tortysoft
      @tortysoft 2 года назад

      @@SepiaMN Terribly sorry. I have Long Covid. I can't remember my name half the time. I'd have to totally repeat the process to get any sort of answer. Sorry.

  • @MlkBnh
    @MlkBnh 5 месяцев назад +1

    i'm using Vscode with flutter and dart extention , so should i watch your tutorials !!!

  • @squirrelgrease
    @squirrelgrease 5 лет назад +3

    the net ninja + the new boston =

    • @imaneziani4016
      @imaneziani4016 5 лет назад +2

      + Traversy Media = A bomb of knowledge!

    • @idopshik
      @idopshik 4 года назад

      Cory Schaffer!

  • @blueRusCamel
    @blueRusCamel 3 года назад

    Thank you for making it so simple: two line code for 'hello ninjas'.

  • @webdev4786
    @webdev4786 5 лет назад +2

    you really are helping thousands if not millions my bro... big up for ya self.

  • @prashantio
    @prashantio 2 года назад

    Even a 37 hour tutorial did not cover the basics as explained here. Cheers!

  • @vlad-abc
    @vlad-abc Год назад +1

    Beginners, no need to test your code. Fascinating 😂. Great tutorial so far!!

  • @WisdomStacks
    @WisdomStacks 5 лет назад +10

    Open android studio
    Configure
    01:55 - add additional plugins (flutter)
    02:40 - restart IDE
    02:48 - start flutter project
    **Flutter SDK path
    --- C:\src\flutter -- is the default SDK path in windows
    05:20 - explaining directory structure
    07:58 - explaining main.dart
    >> 07:40 - opening android device & preview
    >> 11:25 - editing main.dart

    • @encouragemint3869
      @encouragemint3869 4 года назад +1

      add additional plugins did not prompt when I opened Android Studio, idk why. Can you please help me

    • @WisdomStacks
      @WisdomStacks 4 года назад

      @@encouragemint3869, then you can search for plugins by the following path. Go to files > Settings > Plugins tab at the left sidebar > Now you can search for any kind of plugins in the market place.

    • @encouragemint3869
      @encouragemint3869 4 года назад +1

      Update, I found it already.

  • @automatedrecruiter_email1665
    @automatedrecruiter_email1665 5 лет назад +152

    Hey Sean, do you have a paypal or something? I would really like to make a one time donation but I'm not a fan of the whole patreon subscription schema

    • @NetNinja
      @NetNinja  5 лет назад +50

      Hey Zain, thank you so much, my paypal is www.paypal.me/thenetninja

    • @jeez123
      @jeez123 4 года назад

      @Boston Mendonca What is your GPU and how did you update it?

    • @jeez123
      @jeez123 4 года назад

      @Boston Mendonca device manager is not always updated with the newest drivers. Try other methods. I am using gtx1050 and I update my drivers through nvidia geforce

    • @badanimereviews4576
      @badanimereviews4576 4 года назад

      @Boston Mendonca just go on the intel website and download it from there.

    • @jimmyroxko771
      @jimmyroxko771 3 года назад +1

      @Boston Mendonca sometimes it takes a bit time,
      If it takes a really long time get out of the emulator then retry

  • @xamarinmaster1403
    @xamarinmaster1403 Год назад

    I am a long time Xamarin developer (as you can tell from my username) and have always wanted the opportunity to deploy to the web. Flutter allows that so I am seriously considering switching.

  • @abs1596
    @abs1596 4 года назад

    Hi Shaun, am happy i found your tutorial and Started learning Flutter, In my scenario just installing the flutter and dart then restart Android Studio doesn't worked, but with installing the Android APK Support and Android NDK support worked for me. Just want to address this issue which i faced.Started your next tutorial.Thanks

  • @emanuelameh5722
    @emanuelameh5722 3 года назад +5

    Thanks for these videos! My Android Studio looks totally different from yours and it makes it extremely difficult for me to follow along.

    • @someone827
      @someone827 3 года назад +1

      exactly!! so what did you do?

    • @CrescentP-wi7ps
      @CrescentP-wi7ps Год назад

      @@someone827 what did you do?

    • @_niharikabhardwaj__
      @_niharikabhardwaj__ Год назад

      What did u do? I'm facing the same issue...

    • @emanuelameh5722
      @emanuelameh5722 Год назад

      @@_niharikabhardwaj__ I just let the project be and faced web development

  • @andythedishwasher1117
    @andythedishwasher1117 2 года назад +5

    My "new flutter project" page looked significantly different from yours in this video. Has there been an update that changed the whole format of that process?

    • @saeedR86
      @saeedR86 2 года назад

      Andy, can you help me plz. i got the same page like you... if you find the problem

    • @andythedishwasher1117
      @andythedishwasher1117 2 года назад

      @@saeedR86 It does look different now due to an update, but all the functionality is basically the same. I think there are just a couple things you no longer have to specify.

    • @andythedishwasher1117
      @andythedishwasher1117 2 года назад

      To be honest, while I love Net Ninja's courses and teaching style, I've found it difficult to follow his flutter courses since the framework has changed so much since they were written. I'd love to see an update

  • @ibrahimalbrkat1765
    @ibrahimalbrkat1765 7 месяцев назад

    me and my dad always watch ur tutorials since Laravel website days

    • @NetNinja
      @NetNinja  7 месяцев назад

      Awesome! :) say hi to your Dad for me.

    • @ibrahimalbrkat1765
      @ibrahimalbrkat1765 7 месяцев назад

      @@NetNinja thanks for the replay, and my dad says hello

  • @saidelbiev5326
    @saidelbiev5326 8 дней назад

    instantly deleting the unit test folder, a very realistic project, like in real world.

  • @reinerheiner1148
    @reinerheiner1148 Год назад +1

    Thanks for the series! One question - in your gui, the vertical indent guide is highlighted / changes color when you select code within it. additionally, there is a horizontal line where the vertical indent guide ends. How did you do this? It really helps with reading code. I searched everywhere, but I cannot get it to set to be interactive and the same style like it is in your editor. EDIT: found it. if the project does not recognize the flutter sdk, this happens. I had to set the projects flutter path manually. Keeping the comment up in case someone else has the same problem.

  • @cindybienetre
    @cindybienetre 2 года назад +3

    Ah merci ! Moi qui voulait recommencer à coder, j'ai voulu lancer mon application sur Android Studio et j'ai un peu galéré à retrouver comment faire. Très bien expliqué !

  • @vishnuvardhanmalepati7843
    @vishnuvardhanmalepati7843 4 года назад +1

    I had the same expression seeing the default code in the main.dart "Hmmm... This doesn't look simple :P ". Btw, The way you explain is so good .. Thank you :)

  • @rogerflatt8054
    @rogerflatt8054 4 года назад +18

    Loving your work, Sean - hugely appreciated. Flutter looks like webdev is finally getting there. (Perl CGI is a while ago now ...)
    Catching up with this series in Jan/Feb 2020 and I think a few things may have subtly changed already.
    I had licencing issues on Android Studio startup which were resolved with :
    "flutter doctor --android-licenses"
    (I replied "y" to a series of 'accept' messages (6?) which seemed to do the trick.
    The Nexus 5 emulator wouldn't get past the black screen, which seemed to get cured by turning on the Cold Boot option in advanced settings.
    Thanks again, and good luck.

  • @DenienTV
    @DenienTV 4 года назад

    For peoplw having gradle task assemble problems, go to *user*/AppData/Local/Android/Sdk/platforms and delete all folders inside (into the bin, don't clear it cause you'll need them later). Try to run the code on the emulator again, but it won't let you. Now restore the folder/folders from the recycle bin, maybe restart Android Studio and hopefully it will run without errors. I know this doesn't make sense but somehow it worked for me (someone advised to delete the folders, I did it but it still wouldn't run so I restored them and it worked)

  • @Boxply
    @Boxply 2 года назад +1

    Got skillshare but this is the best tutorial compared to those

  • @maoozshah7045
    @maoozshah7045 3 года назад +1

    I have a Gradle problem in android studio. I can’t understand what’s going on.
    What went wrong:
    BUG! exception in phase ‘semantic analysis’ in source unit ‘BuildScript’ Unsupported class file major version 60
    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.

  • @chvrleshd
    @chvrleshd 3 года назад

    Guys Like this will be hated very much by programming experts who love to uphold that sense of elitism 😂. He’s teaching very effectively for free!

  • @shahedrupok9267
    @shahedrupok9267 4 года назад +1

    Hello I am a developer.
    My flutter is ok. Now, I have downloaded android studio for Android Virtual Devices (AVD) but i can not connected devices (AVD) on my project. On the other hand my windows does not support virtual devices. I have checked HAXM. So now what can i do for that?

  • @hk20092009able
    @hk20092009able 4 года назад

    Perfect learn easy language clear view ... thanks , a lot of thank to your courses

  • @RAZR_Channel
    @RAZR_Channel 2 года назад

    Very well spoken and to the points... (unlike other tubers that are still beating viewers to death with constant CTA)

  • @halokart.official
    @halokart.official 3 года назад +3

    Thank you for these lessons! They're a great help! Stuck a little though...
    After creating the AVD Device, it is not showing up in dropdown.
    When I open AVD manager, the device is present but when I run it, it shows error "Unable to locate adb" (and device opens up).
    I checked StackOverflow for this but the solution they gave (reg. platform-tools) is not working either. Any suggestions? Thanks!

    • @halokart.official
      @halokart.official 3 года назад +1

      @h Like my comment so someone might reply. I'm still stuck!

    • @halokart.official
      @halokart.official 3 года назад +1

      ​@isd I solved this issue by following and with the help of this video:
      ruclips.net/video/U4TJ5ITGe5Y/видео.html
      You may need to do a lot of terminal/cmd prompt work. Take the help of this video and stackoverflow/google as you work on it.

    • @Samuel-ns5jb
      @Samuel-ns5jb 2 года назад

      Do you have the solution?

  • @dailyDesi_abhrant
    @dailyDesi_abhrant 3 года назад +2

    VSCode with your phone connected to the computer is much better than emulation

    • @golden998
      @golden998 3 года назад

      you can also push it to your phone in android studio, you don't need vscode for that specifically but vscode is nice to use

    • @beyyou44
      @beyyou44 Год назад

      Does that work with iPhone?

  • @GaLzZy.
    @GaLzZy. 4 года назад +1

    Can you just take whatever app you made for Android in Android Studio and build it in Xcode to make it an iOS app? Thanks

  • @rajshreegavel5966
    @rajshreegavel5966 4 года назад +2

    Thank you so much for this amazing video, but it is taking an extremely long time to run my application for the first time. Why is it so?

  • @Slacker4o
    @Slacker4o 4 года назад +6

    Well done, mate! Quality teaching!

  • @hm9825
    @hm9825 Год назад

    excellent ur videos are so easy to follow mate

    • @NetNinja
      @NetNinja  Год назад +1

      Thanks HM, glad you think so!

  • @rajansingla5516
    @rajansingla5516 4 года назад +1

    Hello, thanks for this great video,,,,, how can I run this app on iOS simulator using android studio in windows ??

  • @ekohekpereamaka200
    @ekohekpereamaka200 6 месяцев назад +1

    Hello sir I’m having problem previewing the dummy app on my emulator

  • @AbdulJabbar-db5yn
    @AbdulJabbar-db5yn 2 года назад

    0:48 you should also create an advance english course xD. i liked the word plethora.

  • @jacobgasser3093
    @jacobgasser3093 5 лет назад +6

    Love that wallpaper

  • @shahzebzia4172
    @shahzebzia4172 8 месяцев назад

    Hello Sir
    I follow up the same steps as yours but there is android studio 3.1 version downloaded which is very different from yours one, so what should i do now?

  • @bts-nw5bi
    @bts-nw5bi 2 года назад

    I really like your explanation

  • @maoozshah7045
    @maoozshah7045 3 года назад +1

    how can i solve it ?
    Could not open settings generic class cache for settings file 'D:\StudioProjects\myapp23\android\settings.gradle' (C:\Users\Muaviz Shah\.gradle\caches\6.7\scripts\1fnwrr8g4rohfp291nvlxj5qe).
    > BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 60

  • @irocx8745
    @irocx8745 4 года назад

    Great tutorial for beginners on Flutter #100/100

  • @vjrn9945
    @vjrn9945 4 года назад +39

    anyone here after mike made his video on making his own app

  • @EmreYavuzalp
    @EmreYavuzalp 4 года назад

    Very clean English, thanks maaate

  • @ayushjindal123
    @ayushjindal123 3 года назад

    Thank you for the wonderful course and you have explained in such a nice work❤❤💖💖

  • @adlin3677
    @adlin3677 3 месяца назад

    Hello, I've created the virtual device, but why is it not appearing on the options from no devices selected button?

  • @clemens7759
    @clemens7759 3 года назад +2

    I had the error "Android Emulator Hypervisor Driver for AMD Processors installation failed." but I fixed it by going to the BIOS and enableing the svm mode. Hope this helps someone

  • @amanihrd7609
    @amanihrd7609 3 года назад

    you make learning so fun thank u Ninja

  • @natiqueansari6073
    @natiqueansari6073 4 года назад +5

    While running the demo code , error occurs :
    Exception: Gradle task assembleDebug failed with exit code -1
    Please help with the issue.

    • @arnoldekechi6391
      @arnoldekechi6391 4 года назад +1

      hi did you ever fix this cause i'm having the exact same issue

    • @natiqueansari6073
      @natiqueansari6073 4 года назад +1

      @@arnoldekechi6391 no soln is present anywhere related to this problem , even the flutter community has no answer related to it , eventually i gave up on it .

    • @vastu_utsav
      @vastu_utsav 4 года назад +2

      Beard Juice
      4 months ago
      I had this exact same problem and it's an easy fix.
      Open your build.gradle file: \[project_name]\android\build.gradle
      Find the dependencies section - it should have a like this this: "classpath 'com.android.tools.build:gradle:3.5.0'"
      Change that to 3.4.2 instead: "classpath 'com.android.tools.build:gradle:3.4.2'"
      I found this on the Flutter github somewhere. They mentioned there's a bug in 3.5.0 and to just set it to 3.4.2 until a fix is released.

  • @Laurenan69
    @Laurenan69 2 года назад

    That moment after 500 flutter tutorials when he deletes everything and you realize finally someone actually going to explain something.

  • @shubhamgupta-to7so
    @shubhamgupta-to7so 5 лет назад +1

    Awesome tutorial. Thank you Shaun.

  • @karunsomasundarm9900
    @karunsomasundarm9900 3 года назад

    Very Well explained Thank You
    ..❤❤❤

  • @MariusSemeonOrtiz
    @MariusSemeonOrtiz Год назад +1

    Anyone else run in to issues with hot reloading not working when changing the default code to run from MaterialApp() inside the runApp function? (i'm using vscode btw, not android studio)

  • @ekohekpereamaka200
    @ekohekpereamaka200 6 месяцев назад +1

    hello sir please can you do a video for 2024

  • @sheldonxu635
    @sheldonxu635 Год назад

    i like the way you teach!!!!!

  • @mobaidiobaidi8644
    @mobaidiobaidi8644 3 года назад

    This tutorial is totally amazing 👍🏼👍🏼

  • @MarmureanuWeb
    @MarmureanuWeb 4 года назад +1

    You explain very very well! Thanks!

  • @aisha_ab88
    @aisha_ab88 3 года назад

    Yaaay, big like thank you so much ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️

  • @antoniofuller2331
    @antoniofuller2331 5 месяцев назад

    When I try to run a flutter app on my physical device, my physical devuce does not show up on the list to choose from. I only see web and desktop. Help

  • @_niharikabhardwaj__
    @_niharikabhardwaj__ Год назад

    I'm a beginner & using Android Studio Giraffe. I can't find the main.dart program file in my installed app. There's just giti.ignore, misc.xml, modules.xml, workspace.xml & a main.c file with 2 lines of code in src. Please help me .. I've been stuck on it for hours now!

  • @masterofchallenge6438
    @masterofchallenge6438 2 года назад

    Amazing course, thank you!

    • @NetNinja
      @NetNinja  2 года назад

      You're very welcome! Hope it was useful.

  • @hardcoreadam9419
    @hardcoreadam9419 4 года назад +1

    i don't have the configure button on android studio what should i do edit: lol im so stoopid the tab was to small so the button didnt like register or configure yet

  • @gautampramod1734
    @gautampramod1734 5 лет назад +2

    sir.. do we need java jdk before installing android studio? I tried without it.. And i could not run the main.dart program. it shows me an error..I followed ur all instructions.. I am loving ur tutorial.. plz help me..

  • @pixelsmile8934
    @pixelsmile8934 4 года назад

    Do you plan to organise intermediate classes ?
    Your class is really great!

  • @alenabulgazin6398
    @alenabulgazin6398 3 года назад

    Hi and many thanks for this great course! However I couldn't activate emulator it freezes on the download step, I searched and couldn't find this error on google, hey guys can you give me some pointers please?

  • @gordonh9921
    @gordonh9921 4 года назад +1

    Hi, I am following what you did in the video, but for some reason, the nexus 6 that I set up does not appear in the drop-down menu next to "no devices." I could run it by clicking on the adv manager and then running it from there, but I did not get the Gradle set up message. My predicament here is that I can't do anything after the Gradle set up step, and for your information, I have followed everything step for step in all your videos so far. Please help asap (btw I really like your videos it has helped a lot).

    • @snai_k
      @snai_k 4 года назад

      Hope you've solved this by now but if you haven't, what I tried to do is wipe data of the emulator from AVD Manager and then run flutter doctor. It worked.

    • @gordonh9921
      @gordonh9921 4 года назад

      @@snai_k yeah I am gonna try that thanks

  • @DilawarKhan-xv5ye
    @DilawarKhan-xv5ye 3 года назад

    It took my laptop 22 minutes to run the app in my physical device at the first time.

  • @MrDuda
    @MrDuda 4 года назад +2

    For those getting the error: gradle task assembledebug failed with exit code 1
    Run 'flutter doctor' on terminal. And try to fix the error with the category mentioned. For me it was some Android toolchain. They even provide the command for the fix along with it so read whatever is given on the console/terminal and fix it.

    • @mrzak7850
      @mrzak7850 4 года назад

      ihave the same issue install flutter with android studio either

    • @luckycomicsintl.officialch1945
      @luckycomicsintl.officialch1945 4 года назад

      i still get the error even when in flutter doctor it says everything is fine

    • @itsrafsanjani
      @itsrafsanjani 4 года назад

      @@luckycomicsintl.officialch1945 Did you fixed that somehow?

    • @vastu_utsav
      @vastu_utsav 4 года назад

      Beard Juice
      4 months ago
      I had this exact same problem and it's an easy fix.
      Open your build.gradle file: \[project_name]\android\build.gradle
      Find the dependencies section - it should have a like this this: "classpath 'com.android.tools.build:gradle:3.5.0'"
      Change that to 3.4.2 instead: "classpath 'com.android.tools.build:gradle:3.4.2'"
      I found this on the Flutter github somewhere. They mentioned there's a bug in 3.5.0 and to just set it to 3.4.2 until a fix is released.

    • @nibaroo9439
      @nibaroo9439 3 года назад

      You have to install java and update your dependencies

  • @guycohen4403
    @guycohen4403 3 года назад

    if start take a lot of time, write this in terminal
    cd android
    gradlew clean
    gradlew build
    cd ../
    flutter clean
    flutter doctor (optional)
    and then start the program again

  • @shuvobarua6018
    @shuvobarua6018 3 года назад +1

    ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.

  • @justinkj8041
    @justinkj8041 4 года назад

    What should be the minimum system specs for installing these android studio and all?

  • @tiagooliveira9196
    @tiagooliveira9196 4 года назад +1

    Hey there, i've installed Android Studio, Flutter Plugin and configured AVD. But when i start the APP there are no devices available to chose. Any advice?

    • @EmreYavuzalp
      @EmreYavuzalp 4 года назад

      As I remember, just open avd manager separetely first, then open the device. Then go back to studio and run app.

  • @hamzamasmoudi8708
    @hamzamasmoudi8708 3 года назад +2

    hello i have a problem and i don't know how to pass it
    when i click on it doesn't show me the AVD that i created it shows me "Chrome(Web)" and "Windows (Desktop)"
    i tried to uninstall android studio and flutter so many times but it didn't work please help me

    • @mr.reverseit5257
      @mr.reverseit5257 3 года назад +1

      facing the same issue.... Please share the solution if you find any.

    • @hamzamasmoudi8708
      @hamzamasmoudi8708 3 года назад +1

      @@mr.reverseit5257 hello i fix it
      i uninstall flutter, dart, Android Studio completely from my PC then i reinstall them and i followed this video
      but be sure when you uninstall Android Studio you uninstall it completely from your device just follow a RUclips video and there you go
      hope that you can fix your problem and good luck

  • @joaomestre2584
    @joaomestre2584 Год назад

    I follow exactly all of your paths but once I create a new project the folders on the lft don`t show. I only get the ¬idea¬ folder. What am I doing wrong?

  • @assmafdh6985
    @assmafdh6985 2 года назад

    you're really so good ,thanks

  • @pradeepkumar-tm5et
    @pradeepkumar-tm5et 5 лет назад

    Hi dude your videos are awesome, can you share your wallpaper I am very fond of that.

  • @obakengpilane7875
    @obakengpilane7875 8 месяцев назад

    how did you deal with the error on widget test ?
    I see an error saying "Myapp is not a class" after erasing all that code

  • @hamakhdir3144
    @hamakhdir3144 3 года назад

    In the previews lesson you told us : the void function does not return anything! but here the void main function return runApp(myApp()) ?
    please tell me why? thanks

  • @gamegunner9079
    @gamegunner9079 4 года назад +1

    Hi Bro,
    Not getting the Android and iOS folder under myapp

  • @ent.greatdesignmedia
    @ent.greatdesignmedia 3 года назад

    Sana all smooth ang PC