Reputation: 2050
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
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