Skip to content
This repository has been archived by the owner on Jun 21, 2018. It is now read-only.

Commit

Permalink
Code release. versionCode = 11 versionName = 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mudar committed Nov 18, 2011
1 parent 3784c3f commit 3c337ed
Show file tree
Hide file tree
Showing 144 changed files with 7,073 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .classpath
@@ -0,0 +1,8 @@
<?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 kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions .project
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>MtlAuCasOu</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
58 changes: 58 additions & 0 deletions AndroidManifest.xml
@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ca.mudar.mtlaucasou"
android:versionCode="11"
android:versionName="0.9.1" >

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="14" />

<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<application
android:debuggable="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".utils.AppHelper"
android:theme="@style/Theme.AuCasOu" >
<activity
android:label="@string/app_name"
android:name=".MainActivity"
android:theme="@style/Theme.Dashboard" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="@string/app_label_fire_halls"
android:name=".ui.FireHallsMapActivity" />
<activity
android:label="@string/app_label_spvm_stations"
android:name=".ui.SpvmStationsMapActivity" />
<activity
android:label="@string/app_label_water_supplies"
android:name=".ui.WaterSuppliesMapActivity" />
<activity
android:label="@string/app_label_emergency_hostels"
android:name=".ui.EmergencyHostelsMapActivity" />
<activity
android:label="@string/app_label_about"
android:name=".ui.AboutActivity"
android:theme="@style/Theme.About"/>

<uses-library android:name="com.google.android.maps" />

<service android:name=".service.SyncService" />

<provider
android:authorities="ca.mudar.mtlaucasou.data"
android:name=".provider.PlacemarkProvider" />
</application>

</manifest>
87 changes: 87 additions & 0 deletions assets/casernes-pompiers.kml

Large diffs are not rendered by default.

84 changes: 84 additions & 0 deletions assets/centres-hebergement-urgence.kml

Large diffs are not rendered by default.

0 comments on commit 3c337ed

Please sign in to comment.