0

我想将 Google Play 服务用作我的应用程序的库项目。

我按照这里的说明进行操作 - http://developer.android.com/tools/projects/projects-eclipse.html#ReferencingLibraryProject

主要问题是如何在 AndroidManifest.xml 中引用“google-play-services_lib”?

我在 AndroidManifest.xml 中输入此内容,但错误提示(活动中的无效字符“-”)

<manifest>
  ...
  <application>
  ...
    <activity android:name="com.example.myApp.MainActivity.library.google-play-services_lib" />
  ...
  </application>
</manifest>

任何人都可以建议?谢谢。

4

1 回答 1

1

您不需要在清单文件中引用该库。如果您已经按照此链接中的步骤引用了库项目,那么您可以直接在代码中使用库的内容。

于 2013-10-27T16:58:15.520 回答