1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.immoinvest"
android:versionCode="1"
android:versionName="1.0-SNAPSHOT" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="11" />
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Light" >
<activity android:name=".ImmoInvestActivity_">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".screens.InformationBienScreen_" android:windowSoftInputMode="adjustPan"/>
<activity android:name=".screens.AchatScreen_" android:windowSoftInputMode="adjustPan" />
<activity android:name=".screens.FraisScreen_" android:windowSoftInputMode="adjustPan"/>
<activity android:name=".screens.CreditScreen_" android:windowSoftInputMode="adjustPan"/>
<activity android:name=".screens.RevenusScreen_" android:windowSoftInputMode="adjustPan"/>
<activity android:name=".screens.ResultatsScreen_" android:windowSoftInputMode="adjustPan"/>
<activity android:name=".screens.SummaryScreen_" android:windowSoftInputMode="adjustPan"/>
</application>
</manifest>
|