
Having the pre-configured Eclipse files in git will make it easier for other people to work with FDroid in Eclipse, and should not affect anything else. The key files are .classpath and .project. The .settings/ folder is for user-specific settings, so its ignored.
11 lines
538 B
XML
11 lines
538 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<classpath>
|
|
<classpathentry kind="src" path="src"/>
|
|
<classpathentry kind="src" path="gen"/>
|
|
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
|
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
|
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
|
<classpathentry combineaccessrules="false" kind="src" path="/fdroid"/>
|
|
<classpathentry kind="output" path="bin/classes"/>
|
|
</classpath>
|