Home > Net >  How do I run the source code of Google Ads?
How do I run the source code of Google Ads?

Time:08-11

I want to run the Google Ads app on Visual Studio Code. This is the github: https://github.com/googleads/googleads-mobile-flutter

I thought that if it is written in flutter, I could run it with "flutter run", but that doesn't work. It says that needs to know the location of main.dart file.

CodePudding user response:

That link is just for the plulgin of flutter. What you might run is the example folder of it. here's the link. And then run flutter pub get after running that.

  • Related