在 Eclipse 中使用来自 Google Play Services 的选择性 API
Using selective APIs from Google Play Services in Eclipse
在我的项目中,我正在集成推送通知,因为我需要 com.google.android.gms
包中的 类。
我可以从整个库中包含选定的包吗?
我正在使用日食。实际上需要更多的库,因此我面临 65k multidex issue
。有什么解决办法吗?
如果您想使用 Google 播放服务的选择性组件 您需要切换到 Android 工作室。
读这个:(Source)
Important: Support for the Android Developer Tools (ADT) in Eclipse
has ended, per our announcement. You should migrate your app
development projects to Android Studio as soon as possible. For more
information on transitioning to Android Studio, see Migrating from
Eclipse ADT.
如果您仍然想继续使用 eclipse,您将不得不自己努力工作 - 从完整的源代码中删除不需要的 packages/components 并确保它可以正常编译和工作。
有关设置选择性 API 的说明 可以在 this page 上找到,适用于 android studio。对于 Eclipse,由于文档未提及设置选择性 API,您只需使用整个集合即可。
没有。您必须将代码迁移到 Android Studio.
如果你真的想用Eclipse来编译这个,你需要执行这些步骤:
- 让 Android 工作室的人将您需要的 Google 组件作为依赖项包含在内。
- 从
exploded-aar
Android studio 文件夹中获取组件并将组件设置为您自己的 Eclipse 库。
当然,这不是推荐的程序,但这是为那些迫切需要它作为最后手段的人准备的。这也标志着一个免责声明,即被绑架的库已经免于开发人员的责任,因为你没有以正确的方式编译它。
PS。这是用 Google 地图
做的
在我的项目中,我正在集成推送通知,因为我需要 com.google.android.gms
包中的 类。
我可以从整个库中包含选定的包吗?
我正在使用日食。实际上需要更多的库,因此我面临 65k multidex issue
。有什么解决办法吗?
如果您想使用 Google 播放服务的选择性组件 您需要切换到 Android 工作室。
读这个:(Source)
Important: Support for the Android Developer Tools (ADT) in Eclipse has ended, per our announcement. You should migrate your app development projects to Android Studio as soon as possible. For more information on transitioning to Android Studio, see Migrating from Eclipse ADT.
如果您仍然想继续使用 eclipse,您将不得不自己努力工作 - 从完整的源代码中删除不需要的 packages/components 并确保它可以正常编译和工作。
有关设置选择性 API 的说明 可以在 this page 上找到,适用于 android studio。对于 Eclipse,由于文档未提及设置选择性 API,您只需使用整个集合即可。
没有。您必须将代码迁移到 Android Studio.
如果你真的想用Eclipse来编译这个,你需要执行这些步骤:
- 让 Android 工作室的人将您需要的 Google 组件作为依赖项包含在内。
- 从
exploded-aar
Android studio 文件夹中获取组件并将组件设置为您自己的 Eclipse 库。
当然,这不是推荐的程序,但这是为那些迫切需要它作为最后手段的人准备的。这也标志着一个免责声明,即被绑架的库已经免于开发人员的责任,因为你没有以正确的方式编译它。
PS。这是用 Google 地图
做的