<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">

    <uses-feature
        android:name="android.hardware.telephony"
        android:required="false" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.CALL_PHONE" />
    <uses-permission android:name="android.permission.WRITE_CONTACTS" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

    <application
        android:name=".AppController"
        android:allowBackup="true"
        android:icon="@drawable/logo"
        android:label="@string/app_name"
        android:networkSecurityConfig="@xml/network_security_config"
        android:theme="@style/Theme.AppCompat.Light"
        android:usesCleartextTraffic="true">
        <activity
            android:name=".User_on_map"
            android:exported="false"
            android:label="اقرب خبراء اليك"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo"/>
        <activity
            android:name=".Settings_user"
            android:exported="false"
            android:label="اعداد الملف الشخصي"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".About_app"
            android:exported="false"
            android:label="حول التطبيق"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".ChangePassword"
            android:exported="false"
            android:label="تغيير كلمة المرور"
            android:parentActivityName=".Update_Profile"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".Change_profile"
            android:exported="false"
            android:label="الصورة الشخصية"
            android:parentActivityName=".Update_Profile"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".Update_Profile"
            android:exported="false"
            android:label="الملف الشخصي"
            android:parentActivityName=".Workers"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".SplashActivity"
            android:exported="false" />
        <activity
            android:name=".Workers"
            android:exported="false"
            android:label="الخبراء"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".Markets"
            android:exported="false"
            android:label="السوق"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".ClothingActivity"
            android:exported="false"
            android:label="لوحة المعلومات الشخصية"
            android:parentActivityName=".Workers"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".Home"
            android:exported="false" />
        <activity
            android:name=".MainActivity2"
            android:exported="false"
            android:label="الخدمات"
            android:parentActivityName=".Home"
            android:theme="@style/Base.Theme.Demo" />
        <activity
            android:name=".LoginActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:windowSoftInputMode="adjustPan">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".RegisterActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:windowSoftInputMode="adjustPan" />
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop" />
    </application>

</manifest>