Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amazon Marketplace app rejected for containing Eclipse settings file

I'm currently trying to submit my app to the Amazon Marketplace. Today I received the following email from the App Testing team:

Your recent submission of RSS Alarm is pending due to the following reason(s):

We are having trouble publishing your app to test. Your APK appears to have the following file included in it: .settings/org.eclipse.core.resources.prefs Please remove this file and resubmit your APK.

Please correct the issue(s) we found with your app submission so we may continue working to get it in the Appstore.

Thing is, I can't see how the .settings folder made it into the APK build in the first place. It's not listed in either my Android settings nor my Java build path settings. So where am I going wrong with this?

Screenshots: enter image description hereenter image description hereenter image description hereenter image description here

Many thanks.

like image 219
Michael Dodd Avatar asked Nov 17 '11 17:11

Michael Dodd


1 Answers

From working in a team environment I've made it a habit of keeping my application source and resources in a separate directory tree from my workspace and project settings. For example:

/home/workspaces/projectname

/home/sources/projectname

I don't know if this is your exact problem but I think it might help keep Eclipse meta-data from being built with your code.

like image 71
Dave Rager Avatar answered Nov 15 '22 19:11

Dave Rager