flutter / flutter_clock

BSD 3-Clause "New" or "Revised" License
543 stars 328 forks source link

Can't run the final submission with the steps specified on the flutter.dev/clock !! #56

Closed justkawal closed 4 years ago

justkawal commented 4 years ago

Screenshot 2020-01-03 at 9 17 09 AM

After the 3rd Command i.e. ( unzip (project).zip ) we should run unzip (name)_clock.zip unzip flutter_clock_helper.zip

As we have already zipped the flutter_clock_helper and (name)_clock inside (path-to-repo)/flutter_clock

Am I going right ?

JonathanMonga commented 4 years ago

You must zip your (name)_clock and flutter_clock_helpers in the same folder.

justkawal commented 4 years ago

We should run the below commands after unzip (project).zip because the below 2 folders are zipped already but on the flutter.dev/clock it is not mentioned unzip (name)_clock.zip unzip flutter_clock_helper.zip

JonathanMonga commented 4 years ago

d. In your /flutter_clock folder, zip these two folders: flutter_clock_helper (unedited) _clock (your clock)

secretwpn commented 4 years ago

What about licensing then? We should have MIT or Apache 2.0 as a license for our submission, but can we still include flutter_clock_helper - it doesn't have a license file itself, and I do not recognize the license of its parent folder by its text.

jkurtw commented 4 years ago

Right. You should end up with something like: /my_project/flutter_clock_helper (unedited) /my_project/my_clock (your clock)

Zip up my_project. Then, the instructions should work. The goal is just to make sure it's not difficult for the judges to figure out how to run your project.

@secretwpn flutter_clock_helper is covered by https://github.com/flutter/flutter_clock/blob/master/LICENSE

talhakhan1297 commented 4 years ago
flutter channel stable
flutter upgrade
unzip (project).zip
cd (name)_clock
flutter create .
flutter run

After the 3rd Command i.e. ( unzip (project).zip ) we should run cd <project>/<name>_clock

Is this right or I am doing something wrong?

jkurtw commented 4 years ago

@talhakhan1297 yes, you are right.