Reputation: 395
I'm very new to Android development and while I tried to walk through the most basic tutorial using the ADT Bundle I ran into a problem. When following the steps to create a project everything seems fine up to the the final page of the wizard:
When I click finish the project appears in the package explorer but the wizard doesn't close. When clicking the following errors show up in the error log:
(There are no StackTraces for the "load properties file" errors; I could provide the others if needed)
Now to the generated Project. This is empty except for a proguard-project.txt
.
Here are the things I already tried but no success so far:
Upvotes: 0
Views: 1782
Reputation: 5416
Try this,
-Delete your workspace folder let eclips to create new one
-delete your .android folder on C:\Users\"yourusername"
This work for me.
Upvotes: 0
Reputation: 1528
This question was already asked; you can find some things you haven't yet tried here:
Failed to load properties file for android project
Upvotes: 1
Reputation: 4920
Some things you can try:
Right click project -> Android Tools -> Fix project properties
Check if you set the ANDROID_SDK_HOME System Environment Variable.
Delete your entire workspace (backup first) and recreate it with the same name.
Delete the debug.keystore file under %USERPROFILE%/.android.
Upvotes: 0