53 lines
1.8 KiB
XML
53 lines
1.8 KiB
XML
<?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-permission
|
|
android:name="android.permission.REQUEST_INSTALL_PACKAGES"
|
|
tools:node="remove" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
|
|
<application
|
|
android:icon="@mipmap/new_launcher"
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
tools:replace="android:icon">
|
|
|
|
<activity
|
|
android:name=".ui.EnterPhoneNumberActivity"
|
|
android:label="@string/verify_your_phone_number"
|
|
android:launchMode="singleTop" />
|
|
|
|
<activity
|
|
android:name=".ui.ChooseCountryActivity"
|
|
android:label="@string/choose_a_country"
|
|
android:launchMode="singleTop" />
|
|
|
|
<activity
|
|
android:name=".ui.VerifyActivity"
|
|
android:label="@string/verify_your_phone_number"
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
android:name=".ui.TosActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask" />
|
|
|
|
<activity
|
|
android:name=".ui.EnterNameActivity"
|
|
android:label="@string/enter_your_name"
|
|
android:launchMode="singleTask" />
|
|
|
|
<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>
|
|
|
|
</application>
|
|
</manifest>
|