commit Eclipse project files to make it easier for others to start

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.
This commit is contained in:
Hans-Christoph Steiner 2014-02-14 23:07:49 -05:00
parent 6d111c6e7d
commit 739ecfdea3
4 changed files with 24 additions and 4 deletions

12
.classpath Normal file
View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<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 kind="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry combineaccessrules="false" kind="src" path="/AndroidPinning"/>
<classpathentry combineaccessrules="false" kind="src" path="/MemorizingActivity"/>
<classpathentry combineaccessrules="false" kind="src" path="/Universal-Image-Loader"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>

3
.gitignore vendored
View File

@ -1,5 +1,4 @@
/local.properties /local.properties
/.classpath
/bin/ /bin/
/gen/ /gen/
/build/ /build/
@ -7,6 +6,6 @@
/build.xml /build.xml
*~ *~
/.idea/ /.idea/
/.project
/*.iml /*.iml
out out
/.settings/

10
test/.classpath Normal file
View File

@ -0,0 +1,10 @@
<?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>

3
test/.gitignore vendored
View File

@ -1,5 +1,4 @@
/local.properties /local.properties
/.classpath
/bin/ /bin/
/gen/ /gen/
/build/ /build/
@ -7,6 +6,6 @@
/build.xml /build.xml
*~ *~
/.idea/ /.idea/
/.project
/*.iml /*.iml
out out
/.settings/