aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--android/Fix My Street/AndroidManifest.xml63
-rw-r--r--android/Fix My Street/META-INF/LICENSE202
-rw-r--r--android/Fix My Street/META-INF/MANIFEST.MF13
-rw-r--r--android/Fix My Street/META-INF/NOTICE30
-rw-r--r--android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.properties5
-rw-r--r--android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.xml297
-rw-r--r--android/Fix My Street/bin/Fix My Street.apkbin563830 -> 0 bytes
-rw-r--r--android/Fix My Street/bin/classes.dexbin1096268 -> 0 bytes
-rw-r--r--android/Fix My Street/bin/resources.ap_bin92779 -> 0 bytes
-rw-r--r--android/Fix My Street/default.properties14
-rw-r--r--android/Fix My Street/res/values/colors.xml6
-rw-r--r--android/Fix My Street/src/com/android/fixmystreet/R.java74
-rw-r--r--android/Fix My Street/src/com/android/fixmystreet/Settings.java33
-rw-r--r--android/Fix My Street/src/com/android/fixmystreet/Stored.java32
14 files changed, 624 insertions, 145 deletions
diff --git a/android/Fix My Street/AndroidManifest.xml b/android/Fix My Street/AndroidManifest.xml
new file mode 100644
index 000000000..0cdee1687
--- /dev/null
+++ b/android/Fix My Street/AndroidManifest.xml
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="utf-8"?>
+ <!-- version info etc -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.fixmystreet" android:versionCode="10"
+ android:versionName="1.01">
+
+<uses-sdk android:minSdkVersion="3" />
+ <!-- Permissions -->
+ <uses-permission android:name="android.permission.CAMERA" />
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
+ <uses-permission android:name="android.permission.INTERNET" />
+
+ <application android:icon="@drawable/house_icon"
+ android:label="Fix My Street" android:debuggable="false">
+
+ <!-- Main screen -->
+ <activity android:name=".Home" android:label="@string/app_name"
+ android:theme="@style/Theme.Filler">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
+
+ <!-- Details page -->
+ <activity android:name=".Details" android:label="Fix My Street - Add details"
+ android:theme="@style/Theme.Filler">
+ <intent-filter>
+ <action android:name="android.intent.action.DETAILS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <!-- Success page -->
+ <activity android:name=".Success" android:label="Fix My Street - Success"
+ android:theme="@style/Theme.Filler">
+ <intent-filter>
+ <action android:name="android.intent.action.SUCCESS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <!-- About page -->
+ <activity android:name=".About" android:label="Fix My Street - About"
+ android:theme="@style/Theme.Filler">
+ <intent-filter>
+ <action android:name="android.intent.action.ABOUT" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <!-- Help page -->
+ <activity android:name=".Help" android:label="Fix My Street - Help"
+ android:theme="@style/Theme.Filler">
+ <intent-filter>
+ <action android:name="android.intent.action.HELP" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ </application>
+</manifest> \ No newline at end of file
diff --git a/android/Fix My Street/META-INF/LICENSE b/android/Fix My Street/META-INF/LICENSE
new file mode 100644
index 000000000..d64569567
--- /dev/null
+++ b/android/Fix My Street/META-INF/LICENSE
@@ -0,0 +1,202 @@
+
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/android/Fix My Street/META-INF/MANIFEST.MF b/android/Fix My Street/META-INF/MANIFEST.MF
new file mode 100644
index 000000000..20dbb8237
--- /dev/null
+++ b/android/Fix My Street/META-INF/MANIFEST.MF
@@ -0,0 +1,13 @@
+Manifest-Version: 1.0
+Archiver-Version: Plexus Archiver
+Created-By: Apache Maven
+Built-By: maurer
+Build-Jdk: 1.5.0_08
+Implementation-Title: Apache Mime4j
+Implementation-Vendor: The Apache Software Foundation
+Implementation-Version: 0.3
+Specification-Title: Apache Mime4j
+Specification-Vendor: The Apache Software Foundation
+Specification-Version: 0.3
+url: http://james.apache.org/mime4j
+
diff --git a/android/Fix My Street/META-INF/NOTICE b/android/Fix My Street/META-INF/NOTICE
new file mode 100644
index 000000000..66dd74366
--- /dev/null
+++ b/android/Fix My Street/META-INF/NOTICE
@@ -0,0 +1,30 @@
+// ------------------------------------------------------------------
+// NOTICE file corresponding to the section 4d of The Apache License,
+// Version 2.0, in this case for Apache JAMES Mime4j
+// ------------------------------------------------------------------
+
+Apache JAMES Mime4j
+Copyright 2004-2007 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org).
+
+This product includes/uses software, Apache Commons Logging (http://jakarta.apache.org/commons/logging/),
+developed by The Apache Software Foundation (http://www.apache.org/)
+License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)
+
+This product includes/uses software, Apache Commons IO (http://jakarta.apache.org/commons/io/),
+developed by The Apache Software Foundation (http://www.apache.org/)
+License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)
+
+This product includes/uses software, Apache Log4j (http://logging.apache.org/log4j/),
+developed by The Apache Software Foundation (http://www.apache.org/)
+License: Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html)
+
+
+This product includes/uses software, JUnit (http://www.junit.org/),
+developed by Kent Beck, Erich Gamma, and David Saff
+License: Common Public License Version 1.0 (http://www.opensource.org/licenses/cpl.php)
+
+This file is automatically generated by dependencies declared in pom.xml
+
diff --git a/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.properties b/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.properties
new file mode 100644
index 000000000..453194f40
--- /dev/null
+++ b/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Thu May 24 18:04:26 CEST 2007
+version=0.3
+groupId=org.apache.james
+artifactId=apache-mime4j
diff --git a/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.xml b/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.xml
new file mode 100644
index 000000000..60317a20a
--- /dev/null
+++ b/android/Fix My Street/META-INF/maven/org.apache.james/apache-mime4j/pom.xml
@@ -0,0 +1,297 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+ -->
+ <parent>
+ <artifactId>james-project</artifactId>
+ <groupId>org.apache.james</groupId>
+ <version>1.1</version>
+ <!-- Either this really points to the james-project/pom.xml or you
+ will have to tune the local repository, later, in this file -->
+ <relativePath>../james-project/project/pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.james</groupId>
+ <artifactId>apache-mime4j</artifactId>
+ <name>Apache JAMES Mime4j</name>
+ <version>0.3</version>
+ <description>Java stream based MIME message parser</description>
+ <url>http://james.apache.org/mime4j</url>
+ <issueManagement>
+ <url>http://issues.apache.org/jira/browse/MIME4J</url>
+ </issueManagement>
+ <inceptionYear>2004</inceptionYear>
+ <distributionManagement>
+ <site>
+ <id>mime4j-website</id>
+ <url>scp://minotaur.apache.org/www/james.apache.org/mime4j/</url>
+ </site>
+ </distributionManagement>
+ <scm>
+ <connection>scm:svn:http://svn.apache.org/repos/asf/james/mime4j/tags/apache-mime4j-0.3</connection>
+ <developerConnection>scm:svn:https://svn.apache.org/repos/asf/james/mime4j/tags/apache-mime4j-0.3</developerConnection>
+ <url>http://svn.apache.org/viewvc/james/mime4j/tags/apache-mime4j-0.3</url>
+ </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.1</version>
+ <executions>
+ <execution>
+ <id>generate-jjtree</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>jjtree</goal>
+ </goals>
+ <configuration>
+ <!-- <nodePackage>org.apache.jsieve.parser.generated</nodePackage> -->
+ <outputDirectory>${project.build.directory}/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser</outputDirectory>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+ <sourceDirectory>${project.build.directory}/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser</sourceDirectory>
+ <packageName>org.apache.james.mime4j.field.address.parser</packageName>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc2</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+ <sourceDirectory>${basedir}/src/main/javacc/org/apache/james/mime4j/field/datetime</sourceDirectory>
+ <packageName>org.apache.james.mime4j.field.datetime.parser</packageName>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-javacc3</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ <configuration>
+ <sourceDirectory>${basedir}/src/main/javacc/org/apache/james/mime4j/field/contenttype</sourceDirectory>
+ <packageName>org.apache.james.mime4j.field.contenttype.parser</packageName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ <encoding>iso8859-1</encoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.1</version>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <Specification-Title>Apache Mime4j</Specification-Title>
+ <Specification-Version>0.3</Specification-Version>
+ <Specification-Vendor>The Apache Software Foundation</Specification-Vendor>
+ <Implementation-Title>Apache Mime4j</Implementation-Title>
+ <Implementation-Version>0.3</Implementation-Version>
+ <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
+ <url>${pom.url}</url>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.2</version>
+ <executions>
+ <execution>
+ <id>create-javadocs</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>javadoc</goal> <!-- goals == mojos -->
+ <goal>jar</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2-beta-1</version>
+ <configuration>
+ <descriptorSourceDirectory>${basedir}/src/assemble/</descriptorSourceDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
+ <phase>package</phase> <!-- append to the packaging phase. -->
+ <goals>
+ <goal>attached</goal> <!-- goals == mojos -->
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Add NOTICE and LICENSE to generated JAR -->
+ <plugin>
+ <artifactId>maven-remote-resources-plugin</artifactId>
+ <version>1.0-alpha-5</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>process</goal>
+ </goals>
+ <configuration>
+ <resourceBundles>
+ <resourceBundle>org.apache:apache-jar-resource-bundle:1.2</resourceBundle>
+ </resourceBundles>
+ <properties>
+ <!-- <preProjectText>PRE PROCESS TEXT</preProjectText> -->
+ <!-- Our src distribution includes also the test dependencies and
+ maven remote resources doen't take this into account, so we
+ manualy add the junit disclaimer -->
+ <postProjectText>
+ This product includes/uses software, JUnit (http://www.junit.org/),
+developed by Kent Beck, Erich Gamma, and David Saff
+License: Common Public License Version 1.0 (http://www.opensource.org/licenses/cpl.php)
+
+This file is automatically generated by dependencies declared in pom.xml
+ </postProjectText>
+ <addLicense>true</addLicense>
+ </properties>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <!-- Use the assembly or we won't have the LICENSE/NOTICE
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ </plugin>
+ -->
+ <!--
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ -->
+ </plugins>
+ </build>
+ <repositories>
+ <repository>
+ <id>local-mime4j-stage-repository</id>
+ <name>Local mime4j stage repository</name>
+ <!-- Please note that due to http://jira.codehaus.org/browse/MNG-2896 -->
+ <!-- If you don't have james-project checked out in ../james-project -->
+ <!-- you will have to place your absolute path to the project instead -->
+ <!-- of ${basedir}, or, otherwise, manually install the parent poms -->
+ <!--
+ mvn -fignorepom.xml install:install-file
+ -Dfile=stage\org.apache.james\poms\james-parent-1.1.pom
+ -Dpackaging=pom
+ -DgroupId=org.apache.james
+ -DartifactId=james-parent
+ -Dversion=1.1
+ mvn -fignorepom.xml install:install-file
+ -Dfile=stage\org.apache.james\poms\james-project-1.1.pom
+ -Dpackaging=pom
+ -DgroupId=org.apache.james
+ -DartifactId=james-project
+ -Dversion=1.1
+ -->
+ <url>file://${basedir}/stage</url>
+ <layout>legacy</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ <checksumPolicy>ignore</checksumPolicy>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ <checksumPolicy>ignore</checksumPolicy>
+ </releases>
+ </repository>
+ </repositories>
+ <dependencies>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.1</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>logkit</groupId>
+ <artifactId>logkit</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>avalon-framework</groupId>
+ <artifactId>avalon-framework</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <type>jar</type>
+ <!-- Removed as a workaround for an unidentified M2 bug -->
+ <scope>test</scope>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>1.2</version>
+ </dependency>
+ </dependencies>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jxr-maven-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </reporting>
+
+</project> \ No newline at end of file
diff --git a/android/Fix My Street/bin/Fix My Street.apk b/android/Fix My Street/bin/Fix My Street.apk
deleted file mode 100644
index 01bce8f62..000000000
--- a/android/Fix My Street/bin/Fix My Street.apk
+++ /dev/null
Binary files differ
diff --git a/android/Fix My Street/bin/classes.dex b/android/Fix My Street/bin/classes.dex
deleted file mode 100644
index f9d783b71..000000000
--- a/android/Fix My Street/bin/classes.dex
+++ /dev/null
Binary files differ
diff --git a/android/Fix My Street/bin/resources.ap_ b/android/Fix My Street/bin/resources.ap_
deleted file mode 100644
index a482f9ea3..000000000
--- a/android/Fix My Street/bin/resources.ap_
+++ /dev/null
Binary files differ
diff --git a/android/Fix My Street/default.properties b/android/Fix My Street/default.properties
new file mode 100644
index 000000000..08ad68f11
--- /dev/null
+++ b/android/Fix My Street/default.properties
@@ -0,0 +1,14 @@
+# This file is automatically generated by Android Tools.
+# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
+#
+# This file must be checked in Version Control Systems.
+#
+# To customize properties used by the Ant build system use,
+# "build.properties", and override values to adapt the script to your
+# project structure.
+
+# Indicates whether an apk should be generated for each density.
+split.density=false
+# Project target.
+target=android-4
+apk-configurations=
diff --git a/android/Fix My Street/res/values/colors.xml b/android/Fix My Street/res/values/colors.xml
deleted file mode 100644
index 8f2f4dab3..000000000
--- a/android/Fix My Street/res/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<resources>
- <color name="transparent">#8f00</color>
- <color name="sky_blue">#87CEFA</color>
- <color name="translucent_blue">#3A95E6</color>
-<!-- #9DE0FF-->
-</resources> \ No newline at end of file
diff --git a/android/Fix My Street/src/com/android/fixmystreet/R.java b/android/Fix My Street/src/com/android/fixmystreet/R.java
deleted file mode 100644
index 54fde9562..000000000
--- a/android/Fix My Street/src/com/android/fixmystreet/R.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/* AUTO-GENERATED FILE. DO NOT MODIFY.
- *
- * This class was automatically generated by the
- * aapt tool from the resource data it found. It
- * should not be modified by hand.
- */
-
-package com.android.fixmystreet;
-
-public final class R {
- public static final class attr {
- }
- public static final class color {
- public static final int sky_blue=0x7f040001;
- public static final int translucent_blue=0x7f040002;
- public static final int transparent=0x7f040000;
- }
- public static final class drawable {
- public static final int add=0x7f020000;
- public static final int blue_filler=0x7f020001;
- public static final int done=0x7f020002;
- public static final int filler=0x7f020003;
- public static final int house_icon=0x7f020004;
- public static final int spacer=0x7f020005;
- public static final int street_background_smaller=0x7f020006;
- }
- public static final class id {
- public static final int background_image=0x7f07000c;
- public static final int camera_button=0x7f070009;
- public static final int details_button=0x7f07000a;
- public static final int email_label=0x7f070006;
- public static final int email_text=0x7f070007;
- public static final int faq=0x7f070000;
- public static final int hello_text=0x7f07000d;
- public static final int name_label=0x7f070004;
- public static final int name_save=0x7f070001;
- public static final int name_text=0x7f070005;
- public static final int report_button=0x7f07000b;
- public static final int subject_label=0x7f070002;
- public static final int subject_text=0x7f070003;
- public static final int submit_button=0x7f070008;
- }
- public static final class layout {
- public static final int about=0x7f030000;
- public static final int details=0x7f030001;
- public static final int help=0x7f030002;
- public static final int home=0x7f030003;
- public static final int success=0x7f030004;
- }
- public static final class string {
- public static final int about=0x7f050007;
- /** Welcome screen
- */
- public static final int app_name=0x7f050000;
- public static final int close=0x7f050008;
- public static final int confirm_location=0x7f050002;
- public static final int confirm_location_done=0x7f050003;
- public static final int details=0x7f050005;
- /** Details screen
- */
- public static final int details_screen=0x7f05000a;
- public static final int hello=0x7f050001;
- public static final int imageUrl=0x7f050009;
- /** About screen
- */
- public static final int instructions=0x7f05000c;
- public static final int report=0x7f050006;
- public static final int submit=0x7f05000b;
- public static final int take_a_picture=0x7f050004;
- }
- public static final class style {
- public static final int Theme_Filler=0x7f060000;
- }
-}
diff --git a/android/Fix My Street/src/com/android/fixmystreet/Settings.java b/android/Fix My Street/src/com/android/fixmystreet/Settings.java
deleted file mode 100644
index 1c3e8df90..000000000
--- a/android/Fix My Street/src/com/android/fixmystreet/Settings.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.android.fixmystreet;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.content.SharedPreferences;
-
-public class Settings extends Activity {
- public static final String PREFS_NAME = "Settings";
-
-
- @Override
- protected void onCreate(Bundle state){
- super.onCreate(state);
- }
-
- @Override
- protected void onStop(){
- super.onStop();
-
- String name = "";
- String email = "";
-
- // Save user preferences. We need an Editor object to
- // make changes. All objects are from android.context.Context
- SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
- SharedPreferences.Editor editor = settings.edit();
- editor.putString("myName", name);
- editor.putString("myEmail", email);
-
- // Don't forget to commit your edits!!!
- editor.commit();
- }
- }
diff --git a/android/Fix My Street/src/com/android/fixmystreet/Stored.java b/android/Fix My Street/src/com/android/fixmystreet/Stored.java
deleted file mode 100644
index db83c905f..000000000
--- a/android/Fix My Street/src/com/android/fixmystreet/Stored.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.android.fixmystreet;
-
-import android.content.Context;
-import android.os.Bundle;
-import android.preference.PreferenceActivity;
-import android.preference.PreferenceManager;
-
-public class Stored extends PreferenceActivity {
- // Option names and default values
- private static final String OPT_EMAIL = "email";
- private static final boolean OPT_EMAIL_DEF = true;
- private static final String OPT_NAME = "name";
- private static final boolean OPT_NAME_DEF = true;
-
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // addPreferencesFromResource(R.xml.settings);
- }
-
- // Get email, if stored
- public static boolean getEmail(Context context) {
- return PreferenceManager.getDefaultSharedPreferences(context)
- .getBoolean(OPT_EMAIL, OPT_EMAIL_DEF);
- }
-
- // Get name, if stored
- public static boolean getName(Context context) {
- return PreferenceManager.getDefaultSharedPreferences(context)
- .getBoolean(OPT_NAME, OPT_NAME_DEF);
- }
-} \ No newline at end of file