2018-10-18 19:02:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-05-13 06:28:06 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2018-10-18 19:02:04 +00:00
|
|
|
|
2022-12-12 08:27:03 +00:00
|
|
|
<uses-permission
|
|
|
|
android:name="android.permission.REQUEST_INSTALL_PACKAGES"
|
|
|
|
tools:node="remove" />
|
|
|
|
|
2024-02-14 12:53:46 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
|
|
|
2018-11-14 09:05:17 +00:00
|
|
|
<application
|
2018-12-14 15:22:24 +00:00
|
|
|
android:icon="@mipmap/new_launcher"
|
2018-11-14 09:05:17 +00:00
|
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
tools:replace="android:icon">
|
2022-12-12 08:27:03 +00:00
|
|
|
|
2018-10-18 19:02:04 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.EnterPhoneNumberActivity"
|
|
|
|
android:label="@string/verify_your_phone_number"
|
2020-01-24 09:39:50 +00:00
|
|
|
android:launchMode="singleTop" />
|
2018-10-18 19:02:04 +00:00
|
|
|
|
2018-10-19 00:30:33 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.ChooseCountryActivity"
|
|
|
|
android:label="@string/choose_a_country"
|
2020-01-24 09:39:50 +00:00
|
|
|
android:launchMode="singleTop" />
|
2018-10-19 00:30:33 +00:00
|
|
|
|
2018-10-20 14:37:59 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.VerifyActivity"
|
2018-11-14 09:05:17 +00:00
|
|
|
android:label="@string/verify_your_phone_number"
|
|
|
|
android:launchMode="singleTask" />
|
2018-10-20 14:37:59 +00:00
|
|
|
|
2018-11-09 16:47:36 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ui.TosActivity"
|
2018-11-14 09:05:17 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTask" />
|
2018-11-09 16:47:36 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.EnterNameActivity"
|
2018-11-14 09:05:17 +00:00
|
|
|
android:label="@string/enter_your_name"
|
|
|
|
android:launchMode="singleTask" />
|
2018-11-09 16:47:36 +00:00
|
|
|
|
2021-01-20 07:14:36 +00:00
|
|
|
<receiver
|
|
|
|
android:name=".services.SMSReceiver"
|
|
|
|
android:exported="true"
|
|
|
|
android:permission="com.google.android.gms.auth.api.phone.permission.SEND">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.gms.auth.api.phone.SMS_RETRIEVED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2018-10-18 19:02:04 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|