|
14 | 14 | <!-- limitations under the License. -->
|
15 | 15 |
|
16 | 16 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
17 |
| - package="com.google.firebase.appdistribution"> |
| 17 | + package="com.google.firebase.app.distribution"> |
18 | 18 |
|
19 | 19 | <uses-permission android:name="android.permission.INTERNET" />
|
20 | 20 | <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
26 | 26 | android:name="com.google.firebase.components.ComponentDiscoveryService"
|
27 | 27 | android:exported="false">
|
28 | 28 | <meta-data
|
29 |
| - android:name="com.google.firebase.components:com.google.firebase.appdistribution.FirebaseAppDistributionRegistrar" |
| 29 | + android:name="com.google.firebase.components:com.google.firebase.app.distribution.FirebaseAppDistributionRegistrar" |
30 | 30 | android:value="com.google.firebase.components.ComponentRegistrar" />
|
31 | 31 | </service>
|
32 | 32 | <!-- The launch mode for Install Activity is singleTask to ensure that after the unknown sources UI
|
33 | 33 | or the installation flow is complete, the Install Activity does not get recreated which causes loss of state
|
34 | 34 | See here for more info - https://developer.android.com/guide/components/activities/tasks-and-back-stack#ManifestForTasks -->
|
35 |
| - <activity android:name=".InstallActivity" android:exported="true" android:launchMode="singleTask"/> |
| 35 | + <activity android:name="com.google.firebase.app.distribution.InstallActivity" android:exported="true" android:launchMode="singleTask"/> |
36 | 36 |
|
37 |
| - <activity android:name=".SignInResultActivity" android:exported="true"> |
| 37 | + <activity android:name="com.google.firebase.app.distribution.SignInResultActivity" android:exported="true"> |
38 | 38 | <intent-filter>
|
39 | 39 | <action android:name="android.intent.action.VIEW"/>
|
40 | 40 | <category android:name="android.intent.category.DEFAULT"/>
|
|
46 | 46 | </activity>
|
47 | 47 |
|
48 | 48 | <provider
|
49 |
| - android:name="com.google.firebase.appdistribution.FirebaseAppDistributionFileProvider" |
| 49 | + android:name="com.google.firebase.app.distribution.FirebaseAppDistributionFileProvider" |
50 | 50 | android:authorities="${applicationId}.FirebaseAppDistributionFileProvider"
|
51 | 51 | android:exported="false"
|
52 | 52 | android:grantUriPermissions="true">
|
|
0 commit comments