Different Debug Keystores in Eclipse for each project base?

I need to have different debug repositories for several Android projects. How can I do this with regular Eclipse (without additional tools)?

The problem is the inability to connect to Google Drive various applications that use the same debug key. Only one, the first, works - always.

I am currently debugging release versions, but the process of generating signed applications for each debugging cycle is time consuming.

Any help is appreciated.

+4
source share
3 answers

You can change the location of debug.keystore in Windows> Preferences> Android> Create . See Entering Debug Mode . This, however, will affect all projects in the work area.

0
source

Recently, they have changed the API and Auth in the Google Cloud Console. Now, instead of the "Registered Applications" section, there is a "Credentials" section

In 1 'project' in the Developer Console, I currently have two different OAuth entries that have the same sha1 debug key, and it works fine. Of course, they have different package names.

0
source

While this cannot be done through Eclipse, you may want to create an application through Ant. A detailed description can be found in this answer .

0
source

Source: https://habr.com/ru/post/1436936/


All Articles