|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 | | - xmlns:tools="http://schemas.android.com/tools" |
4 | | - package="pl.charmas.android.reactivelocation2.sample"> |
| 3 | + xmlns:tools="http://schemas.android.com/tools"> |
5 | 4 |
|
6 | 5 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
7 | | - <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" |
| 6 | + <uses-permission |
| 7 | + android:name="android.permission.ACCESS_MOCK_LOCATION" |
8 | 8 | tools:ignore="MockLocation" /> |
9 | 9 | <uses-permission android:name="com.google.android.gms.permission.ACTIVITY_RECOGNITION" /> |
10 | 10 |
|
|
24 | 24 |
|
25 | 25 | <activity |
26 | 26 | android:name="pl.charmas.android.reactivelocation2.sample.MainActivity" |
| 27 | + android:exported="true" |
27 | 28 | android:label="@string/app_name"> |
28 | 29 | <intent-filter> |
29 | 30 | <action android:name="android.intent.action.MAIN" /> |
|
32 | 33 | </intent-filter> |
33 | 34 | </activity> |
34 | 35 |
|
35 | | - <activity android:name="pl.charmas.android.reactivelocation2.sample.GeofenceActivity" /> |
| 36 | + <activity |
| 37 | + android:name="pl.charmas.android.reactivelocation2.sample.GeofenceActivity" |
| 38 | + android:exported="true" /> |
36 | 39 |
|
37 | | - <activity android:name="pl.charmas.android.reactivelocation2.sample.PlacesActivity" /> |
| 40 | + <activity |
| 41 | + android:name="pl.charmas.android.reactivelocation2.sample.PlacesActivity" |
| 42 | + android:exported="true" /> |
38 | 43 |
|
39 | | - <activity android:name="pl.charmas.android.reactivelocation2.sample.PlacesResultActivity" /> |
| 44 | + <activity |
| 45 | + android:name="pl.charmas.android.reactivelocation2.sample.PlacesResultActivity" |
| 46 | + android:exported="true" /> |
40 | 47 |
|
41 | | - <activity android:name="pl.charmas.android.reactivelocation2.sample.MockLocationsActivity" /> |
| 48 | + <activity |
| 49 | + android:name="pl.charmas.android.reactivelocation2.sample.MockLocationsActivity" |
| 50 | + android:exported="true" /> |
42 | 51 |
|
43 | | - <receiver android:name="pl.charmas.android.reactivelocation2.sample.GeofenceBroadcastReceiver" /> |
| 52 | + <receiver |
| 53 | + android:name="pl.charmas.android.reactivelocation2.sample.GeofenceBroadcastReceiver" |
| 54 | + android:exported="true" /> |
44 | 55 | </application> |
45 | 56 |
|
46 | 57 | </manifest> |
0 commit comments