2023
ASSIGNMENT 1
TRIATHLON
REGISTRATION
APP
,DISCLAIMER
Please do not copy anything
from this document,It is
meant to be used as a guide
and you supposed to come up
with your own solution.
By purchasing this document
you are letting the creator of
this document NOT be held
responsible for whatever
mark the user gets for this
assignment,whether pass or
fail
Purchase at your own Risk!
,
,
, ANDROID MANIFEST FILE
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/logoass1"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.ICT2612_2023_ASSIGNMENT_1"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
</application>
</manifest>