我想将 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>
任何人都可以建议?谢谢。