I just downloaded the latest version of Dart SDK and Editor and tried adding appengine as a dependency like this:
dependencies:
appengine: ">=0.0.1 <0.1.0"
as it was described at https://pub.dartlang.org/packages/appengine
but when I run pub install, or pub get, it shows Got dependencies! but nothing gets added to the package folder, therefore, the following is not working:
import 'package:appengine/appengine.dart';
Any idea about what could I be missing?
Thank you.
PS: If I add browser, or polymer, or any other as a dependency, it works perfect.