SEG2105-Olympus-Android-App.../OlympusServices/app/src/main/AndroidManifest.xml

51 lines
1.8 KiB
XML
Raw Normal View History

2018-09-28 15:39:43 -04:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.uottawa.olympus.olympusservices">
2018-09-28 15:39:43 -04:00
<!-- To auto-complete the email text field in the login form with the user's emails -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:allowBackup="true"
2018-10-18 12:32:21 -04:00
android:icon="@mipmap/ic_launcher_round"
2018-09-28 15:39:43 -04:00
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".Main"
2018-10-23 17:16:18 -04:00
android:screenOrientation="portrait">
2018-09-28 15:39:43 -04:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2018-09-28 15:39:43 -04:00
<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
2018-10-19 16:45:18 -04:00
<activity
android:name=".SignUp"
2018-10-28 19:31:34 -04:00
android:screenOrientation="portrait" />
<activity
android:name=".LogIn"
android:screenOrientation="portrait" />
<activity
android:name=".Welcome"
android:screenOrientation="portrait" />
<activity
android:name=".AdminWelcome"
android:screenOrientation="portrait" />
2018-11-09 17:35:48 -05:00
<activity
android:name=".UsersList"
android:label="List of Users"/>
<activity
android:name=".ServicesList"
android:label="List of Services"></activity>
2018-09-28 15:39:43 -04:00
</application>
</manifest>