googleapis / elixir-google-api

Elixir client libraries for accessing Google APIs.
https://hex.pm/users/google-cloud
Apache License 2.0
1.02k stars 460 forks source link

google_api_play_integrity package is not available on hex.pm #10765

Open rschef opened 10 months ago

rschef commented 10 months ago

Steps to reproduce

  1. Add google_api_play_integrity to your list of dependencies in mix.exs as described in https://github.com/googleapis/elixir-google-api/tree/main/clients/play_integrity
def deps do
  [{:google_api_play_integrity, "~> 0.6"}]
end
  1. Run mix deps.get:
** (Mix) No package with name google_api_play_integrity in registry

Indeed there's no such package on hex.pm: https://hex.pm/packages/google_api_play_integrity

rschef commented 10 months ago

I temporarily installed the package with the git option:


{:google_api_play_integrity,
   git: "https://github.com/googleapis/elixir-google-api", 
   sparse: "/clients/play_integrity", 
   ref: "95dd145"
}