|
2 | 2 | <!--
|
3 | 3 | ~ Copyright 2019 Louis Cognault Ayeva Derman. Use of this source code is governed by the Apache 2.0 license.
|
4 | 4 | -->
|
5 |
| -<manifest package="com.louiscad.splittiessample" |
| 5 | +<manifest package="com.example.splitties" |
6 | 6 | xmlns:android="http://schemas.android.com/apk/res/android"
|
7 | 7 | xmlns:tools="http://schemas.android.com/tools">
|
8 | 8 |
|
9 | 9 | <uses-permission android:name="android.permission.VIBRATE"/>
|
10 | 10 | <uses-permission android:name="android.permission.WRITE_CALENDAR"/>
|
11 | 11 |
|
12 | 12 | <application
|
13 |
| - android:name=".DemoApp" |
| 13 | + android:name="com.example.splitties.DemoApp" |
14 | 14 | android:allowBackup="true"
|
15 | 15 | android:directBootAware="true"
|
16 | 16 | android:fullBackupContent="true"
|
|
20 | 20 | android:theme="@style/AppTheme.NoActionBar"
|
21 | 21 | tools:ignore="GoogleAppIndexingWarning,UnusedAttribute">
|
22 | 22 | <activity
|
23 |
| - android:name=".main.MainActivity" |
| 23 | + android:name="com.example.splitties.main.MainActivity" |
24 | 24 | android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
|
25 | 25 | android:label="@string/app_name"
|
26 | 26 | android:launchMode="singleTop">
|
|
30 | 30 | </intent-filter>
|
31 | 31 | </activity>
|
32 | 32 | <activity
|
33 |
| - android:name=".demo.DemoActivity" |
| 33 | + android:name="com.example.splitties.demo.DemoActivity" |
34 | 34 | android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
|
35 | 35 | android:label="@string/title_activity_demo"
|
36 | 36 | android:launchMode="singleTop"
|
37 |
| - android:parentActivityName=".main.MainActivity"> |
| 37 | + android:parentActivityName="com.example.splitties.main.MainActivity"> |
38 | 38 | <meta-data
|
39 | 39 | android:name="android.support.PARENT_ACTIVITY"
|
40 |
| - android:value="com.louiscad.splittiessample.main.MainActivity"/> |
| 40 | + android:value="com.example.splitties.main.MainActivity"/> |
41 | 41 | </activity>
|
42 | 42 | <activity
|
43 |
| - android:name=".about.AboutActivity" |
| 43 | + android:name="com.example.splitties.about.AboutActivity" |
44 | 44 | android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
|
45 | 45 | android:label="@string/title_activity_about"
|
46 | 46 | android:launchMode="singleTop"
|
47 |
| - android:parentActivityName=".main.MainActivity"> |
| 47 | + android:parentActivityName="com.example.splitties.main.MainActivity"> |
48 | 48 | <meta-data
|
49 | 49 | android:name="android.support.PARENT_ACTIVITY"
|
50 |
| - android:value="com.louiscad.splittiessample.main.MainActivity"/> |
| 50 | + android:value="com.example.splitties.main.MainActivity"/> |
51 | 51 | </activity>
|
52 | 52 | <activity
|
53 |
| - android:name=".sayhello.SayHelloActivity" |
| 53 | + android:name="com.example.splitties.sayhello.SayHelloActivity" |
54 | 54 | android:label="@string/say_hello"
|
55 | 55 | android:launchMode="singleTop"
|
56 |
| - android:parentActivityName=".main.MainActivity"> |
| 56 | + android:parentActivityName="com.example.splitties.main.MainActivity"> |
57 | 57 | <meta-data
|
58 | 58 | android:name="android.support.PARENT_ACTIVITY"
|
59 |
| - android:value="com.louiscad.splittiessample.main.MainActivity"/> |
| 59 | + android:value="com.example.splitties.main.MainActivity"/> |
60 | 60 | </activity>
|
61 | 61 | <activity
|
62 |
| - android:name=".preview.permissions.PermissionsExampleActivity" |
| 62 | + android:name="com.example.splitties.preview.permissions.PermissionsExampleActivity" |
63 | 63 | android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
|
64 | 64 | android:label="Permissions request example"
|
65 | 65 | android:launchMode="singleTop"
|
66 |
| - android:parentActivityName=".main.MainActivity"> |
| 66 | + android:parentActivityName="com.example.splitties.main.MainActivity"> |
67 | 67 | <meta-data
|
68 | 68 | android:name="android.support.PARENT_ACTIVITY"
|
69 |
| - android:value="com.louiscad.splittiessample.main.MainActivity"/> |
| 69 | + android:value="com.example.splitties.main.MainActivity"/> |
70 | 70 | </activity>
|
71 | 71 |
|
72 | 72 | <provider
|
73 |
| - android:name=".AppInitProvider" |
| 73 | + android:name="com.example.splitties.AppInitProvider" |
74 | 74 | android:authorities="${applicationId}.init"
|
75 | 75 | android:exported="false"
|
76 | 76 | android:initOrder="899"/>
|
77 | 77 |
|
78 | 78 | <provider
|
79 |
| - android:name=".SecondProcessInitProvider" |
| 79 | + android:name="com.example.splitties.SecondProcessInitProvider" |
80 | 80 | android:authorities="${applicationId}.appctxinitprovider.second_process"
|
81 | 81 | android:exported="false"
|
82 | 82 | android:initOrder="900"
|
|
0 commit comments