Skip to content

Commit a004300

Browse files
author
Nicolas Gramlich
committed
Converted all files to unix line-endings.
1 parent eca5650 commit a004300

File tree

455 files changed

+51428
-51428
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

455 files changed

+51428
-51428
lines changed

.classpath

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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="output" path="bin/classes"/>
7-
</classpath>
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="output" path="bin/classes"/>
7+
</classpath>

.project

+33-33
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<projectDescription>
3-
<name>AndEngine</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>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AndEngine</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

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="org.anddev.andengine"
4-
android:versionCode="1"
5-
android:versionName="1.0">
6-
7-
<uses-sdk android:minSdkVersion="4"/>
8-
9-
<application android:debuggable="true"/>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="org.anddev.andengine"
4+
android:versionCode="1"
5+
android:versionName="1.0">
6+
7+
<uses-sdk android:minSdkVersion="4"/>
8+
9+
<application android:debuggable="true"/>
1010
</manifest>

build.xml

+85-85
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project name="AndEngine" default="help">
3-
4-
<!-- The local.properties file is created and updated by the 'android' tool.
5-
It contains the path to the SDK. It should *NOT* be checked into
6-
Version Control Systems. -->
7-
<loadproperties srcFile="local.properties" />
8-
9-
<!-- The ant.properties file can be created by you. It is only edited by the
10-
'android' tool to add properties to it.
11-
This is the place to change some Ant specific build properties.
12-
Here are some properties you may want to change/update:
13-
14-
source.dir
15-
The name of the source directory. Default is 'src'.
16-
out.dir
17-
The name of the output directory. Default is 'bin'.
18-
19-
For other overridable properties, look at the beginning of the rules
20-
files in the SDK, at tools/ant/build.xml
21-
22-
Properties related to the SDK location or the project target should
23-
be updated using the 'android' tool with the 'update' action.
24-
25-
This file is an integral part of the build system for your
26-
application and should be checked into Version Control Systems.
27-
28-
-->
29-
<property file="ant.properties" />
30-
31-
<!-- The project.properties file is created and updated by the 'android'
32-
tool, as well as ADT.
33-
34-
This contains project specific properties such as project target, and library
35-
dependencies. Lower level build properties are stored in ant.properties
36-
(or in .classpath for Eclipse projects).
37-
38-
This file is an integral part of the build system for your
39-
application and should be checked into Version Control Systems. -->
40-
<loadproperties srcFile="project.properties" />
41-
42-
<!-- quick check on sdk.dir -->
43-
<fail
44-
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
45-
unless="sdk.dir"
46-
/>
47-
48-
49-
<!-- extension targets. Uncomment the ones where you want to do custom work
50-
in between standard targets -->
51-
<!--
52-
<target name="-pre-build">
53-
</target>
54-
<target name="-pre-compile">
55-
</target>
56-
57-
/* This is typically used for code obfuscation.
58-
Compiled code location: ${out.classes.absolute.dir}
59-
If this is not done in place, override ${out.dex.input.absolute.dir} */
60-
<target name="-post-compile">
61-
</target>
62-
-->
63-
64-
<!-- Import the actual build file.
65-
66-
To customize existing targets, there are two options:
67-
- Customize only one target:
68-
- copy/paste the target into this file, *before* the
69-
<import> task.
70-
- customize it to your needs.
71-
- Customize the whole content of build.xml
72-
- copy/paste the content of the rules files (minus the top node)
73-
into this file, replacing the <import> task.
74-
- customize to your needs.
75-
76-
***********************
77-
****** IMPORTANT ******
78-
***********************
79-
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
80-
in order to avoid having your file be overridden by tools such as "android update project"
81-
-->
82-
<!-- version-tag: 1 -->
83-
<import file="${sdk.dir}/tools/ant/build.xml" />
84-
85-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project name="AndEngine" default="help">
3+
4+
<!-- The local.properties file is created and updated by the 'android' tool.
5+
It contains the path to the SDK. It should *NOT* be checked into
6+
Version Control Systems. -->
7+
<loadproperties srcFile="local.properties" />
8+
9+
<!-- The ant.properties file can be created by you. It is only edited by the
10+
'android' tool to add properties to it.
11+
This is the place to change some Ant specific build properties.
12+
Here are some properties you may want to change/update:
13+
14+
source.dir
15+
The name of the source directory. Default is 'src'.
16+
out.dir
17+
The name of the output directory. Default is 'bin'.
18+
19+
For other overridable properties, look at the beginning of the rules
20+
files in the SDK, at tools/ant/build.xml
21+
22+
Properties related to the SDK location or the project target should
23+
be updated using the 'android' tool with the 'update' action.
24+
25+
This file is an integral part of the build system for your
26+
application and should be checked into Version Control Systems.
27+
28+
-->
29+
<property file="ant.properties" />
30+
31+
<!-- The project.properties file is created and updated by the 'android'
32+
tool, as well as ADT.
33+
34+
This contains project specific properties such as project target, and library
35+
dependencies. Lower level build properties are stored in ant.properties
36+
(or in .classpath for Eclipse projects).
37+
38+
This file is an integral part of the build system for your
39+
application and should be checked into Version Control Systems. -->
40+
<loadproperties srcFile="project.properties" />
41+
42+
<!-- quick check on sdk.dir -->
43+
<fail
44+
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project'"
45+
unless="sdk.dir"
46+
/>
47+
48+
49+
<!-- extension targets. Uncomment the ones where you want to do custom work
50+
in between standard targets -->
51+
<!--
52+
<target name="-pre-build">
53+
</target>
54+
<target name="-pre-compile">
55+
</target>
56+
57+
/* This is typically used for code obfuscation.
58+
Compiled code location: ${out.classes.absolute.dir}
59+
If this is not done in place, override ${out.dex.input.absolute.dir} */
60+
<target name="-post-compile">
61+
</target>
62+
-->
63+
64+
<!-- Import the actual build file.
65+
66+
To customize existing targets, there are two options:
67+
- Customize only one target:
68+
- copy/paste the target into this file, *before* the
69+
<import> task.
70+
- customize it to your needs.
71+
- Customize the whole content of build.xml
72+
- copy/paste the content of the rules files (minus the top node)
73+
into this file, replacing the <import> task.
74+
- customize to your needs.
75+
76+
***********************
77+
****** IMPORTANT ******
78+
***********************
79+
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
80+
in order to avoid having your file be overridden by tools such as "android update project"
81+
-->
82+
<!-- version-tag: 1 -->
83+
<import file="${sdk.dir}/tools/ant/build.xml" />
84+
85+
</project>

0 commit comments

Comments
 (0)