Download this file

AndroidManifest.xml    62 lines (52 with data), 2.6 kB

 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.alfred.upeditor"
android:versionCode="20"
android:versionName="1.0.20" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<!--
This is the first activity, started by the user when pressing the ALFRED launcher.
It's responsible of asking the user for the username and password or allowing
the user to register. So only if the information provided is correct and we can get
a valid session, then we can go to the next Activity: UserProfileActivity.
-->
<activity
android:name="eu.alfred.personalization_manager.gui.splash.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!--
This is the main activity of the App. It manages the different tabs (Personal,
Contacts and Health). It was the first and only activity of the App, until adding
the SplashActivity.
-->
<activity
android:name="eu.alfred.personalization_manager.gui.UserProfileActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"/>
<!--
This is a secondary activity. It's launched from ContactsSectionFragment,
when the user either taps on the New Contact button, or on an item of a contact.
-->
<activity
android:name="eu.alfred.personalization_manager.gui.tabs.contacts.ContactActivity"
android:label="@string/edit_contact_activity_name"/>
<!--
Side activity. Only meant to manage simple settings as the URL of the server
and some developer options.
-->
<activity android:name="eu.alfred.personalization_manager.gui.pref.SettingsActivity"
android:label="@string/pref_activity_name"/>
</application>
</manifest>