admin
2022-01-07 60e97a582feba0526c64d823fcf74e1cb97fd4c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.demo.library_login">
 
    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        tools:replace="android:theme"
        android:theme="@style/Theme.Android">
        <activity android:name=".ui.RegisterActivity"></activity>
        <activity android:name=".ui.ForgetPwdActivity"></activity>
        <activity android:name=".ui.EmailLoginActivity"></activity>
    </application>
 
</manifest>