Skip to content

Commit e060a67

Browse files
committedFeb 6, 2012
Default project files added/modified in regard to new development
environment making it a "few click operation" to import Android project from EGit Eclipse plugin.
1 parent 339d9e0 commit e060a67

File tree

5 files changed

+45
-7
lines changed

5 files changed

+45
-7
lines changed
 

‎.classpath

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="src" path="gen"/>
5+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
6+
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
7+
<classpathentry kind="output" path="bin/classes"/>
8+
</classpath>

‎.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
*.DS_Store
2-
*.classpath
3-
*.project
42
bin/
53
gen/
64
doc/
7-
com_facebook_android_src/

‎.project

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>Page Curl Example</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>

‎AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
package="fi.harism.curl"
55
android:versionCode="1"
66
android:versionName="1.0">
7-
<!-- Since using API 7 for development, just in case -->
8-
<uses-sdk android:minSdkVersion="7" />
7+
<!-- Since using API 8 for development, just in case -->
8+
<uses-sdk android:minSdkVersion="8" />
99
<application
1010
android:icon="@drawable/icon"
1111
android:label="@string/app_name" >

‎default.properties ‎project.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# This file must be checked in Version Control Systems.
55
#
66
# To customize properties used by the Ant build system use,
7-
# "build.properties", and override values to adapt the script to your
7+
# "ant.properties", and override values to adapt the script to your
88
# project structure.
99

1010
# Project target.
11-
target=android-7
11+
target=android-8

0 commit comments

Comments
 (0)
Please sign in to comment.