|
3 | 3 | package="com.iamzain.template_android" |
4 | 4 | android:versionName="@string/version"> |
5 | 5 |
|
| 6 | + <!---Step permissions the app needs here--> |
6 | 7 | <uses-permission android:name="android.permission.INTERNET" /> |
7 | 8 |
|
8 | 9 | <application |
|
12 | 13 | android:roundIcon="@mipmap/ic_launcher_round" |
13 | 14 | android:supportsRtl="true" |
14 | 15 | android:theme="@style/AppTheme"> |
15 | | - <activity |
16 | | - android:name=".activities.LoginActivity" |
17 | | - android:theme="@style/AppTheme.BrandedLaunch" /> |
| 16 | + |
| 17 | + <!---All the activities the app has are declared here--> |
18 | 18 | <activity |
19 | 19 | android:name=".activities.MainActivity" |
20 | | - android:label="@string/app_name" |
21 | 20 | android:theme="@style/AppTheme"> |
22 | 21 | <intent-filter> |
23 | 22 | <action android:name="android.intent.action.MAIN" /> |
24 | | - |
25 | 23 | <category android:name="android.intent.category.LAUNCHER" /> |
26 | 24 | </intent-filter> |
27 | | - |
28 | 25 | </activity> |
| 26 | + <activity |
| 27 | + android:name=".activities.LoginActivity" |
| 28 | + android:theme="@style/AppTheme.BrandedLaunch" /> |
| 29 | + <activity android:name=".activities.SignupActivity" /> |
29 | 30 | <activity android:name=".activities.AboutActivity" /> |
30 | 31 | <activity android:name=".activities.SettingsActivity" /> |
31 | | - <activity |
32 | | - android:name=".activities.CardsActivity" |
33 | | - android:label="@string/title_activity_cards" /> |
| 32 | + <activity android:name=".activities.CardsActivity" /> |
34 | 33 | <activity |
35 | 34 | android:name=".activities.VideoActivity" |
36 | 35 | android:configChanges="orientation|screenSize" /> |
37 | 36 | <activity android:name=".activities.WelcomeActivity" /> |
38 | | - <activity android:name=".activities.SignupActivity" /> |
39 | 37 | <activity android:name=".activities.FragmentsActivity" /> |
40 | 38 | <activity android:name=".activities.StepperActivity"> |
41 | 39 |
|
42 | | - |
43 | | - |
44 | 40 | </activity> |
45 | 41 | </application> |
46 | 42 |
|
|
0 commit comments