Meir
Meir

Reputation: 2050

Google map api key Android release vs debug

I am building an android app that uses Google Maps. Can I use my release key while I am in development?

Can someone explain the difference between the release and the debug keys?

Thanks

Upvotes: 2

Views: 2113

Answers (1)

Emil Adz
Emil Adz

Reputation: 41139

The release key is produced using the release.keystore file that is produced when you sign you application to publish it to the market.

while the debug key is produces using the debug.keystore file that is generated when you compile your first project using eclipse.

AFAIK you can develop using the release.keystore.

Upvotes: 3

Related Questions