我在我的应用中添加了今日扩展程序。我的应用有多个目标并使用pod,所以我选择将扩展嵌入其中一个目标。
我的应用也使用Google地图框架。
当我尝试构建应用程序时(使用目标,我嵌入了我的扩展程序),我在扩展程序中找到了“ld:framework not found Google Maps”问题。
我不想在我的扩展程序中使用Google地图,也没有将任何谷歌地图库添加到我的扩展程序中。只需添加一个新的扩展目标并构建它,就会给我这个错误。
另外,在pod文件中添加了以下标志并进行了pod安装。但没有运气!
<%= link_to company_user_path("user[company_id]" => current_user.company_id, id: user), method: :patch, remote: true do %>
<%= render partial: "permission", locals: { role: user.role.to_s.upcase } %>
<% end %>
这是整个podfile
target 'MyExtension' do
end