6e01dd42a3
# Conflicts: # OlympusServices/.idea/caches/build_file_checksums.ser # OlympusServices/.idea/vcs.xml # OlympusServices/app/src/main/java/com/uottawa/olympus/olympusservices/SignUp.java # OlympusServices/app/src/main/res/layout/activity_main.xml # OlympusServices/app/src/main/res/layout/activity_sign_up.xml # OlympusServices/build.gradle
42 lines
No EOL
1.5 KiB
XML
42 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.uottawa.olympus.olympusservices">
|
|
|
|
<!-- 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"
|
|
android:icon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:name=".Main"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<meta-data
|
|
android:name="preloaded_fonts"
|
|
android:resource="@array/preloaded_fonts" />
|
|
|
|
<activity
|
|
android:name=".SignUp"
|
|
android:parentActivityName=".Main">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value=".Main" />
|
|
</activity>
|
|
<activity android:name=".LogIn" />
|
|
<activity android:name=".Welcome" />
|
|
</application>
|
|
|
|
</manifest> |