Scala SBT-Android プロジェクトで Android Play サービスの依存関係を指定する方法はありますか? Google クラウド メッセージを受信するアプリを作成する必要があります。
私は試した
libraryDependencies ++= Seq(
"com.actionbarsherlock" % "library" % "4.0.2" artifacts(Artifact("library", "apklib", "apklib")),
"com.google.android.gms" % "play-services" % "3.2.65" artifacts(Artifact("play-services", "aar", "aar"))
)
Build.scala で
しかし、apkをビルドしようとすると、SBTが文句を言います
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: com.google.android.gms#play-services;3.2.65: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[trace] Stack trace suppressed: run last *:update for the full output.
[error] (*:update) sbt.ResolveException: unresolved dependency: com.google.android.gms#play- services;3.2.65: not found
前もって感謝します。