Skip to content
Snippets Groups Projects
Commit 7e08de97 authored by Pierre Duchemin's avatar Pierre Duchemin Committed by Adrien Béraud
Browse files

Fix: Firebase services do not need to be exported

Change-Id: I68c6836d6e5ca9a7225d72ec1e0bc23fea15e004
parent 45961402
Branches
No related tags found
No related merge requests found
...@@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License ...@@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="cx.ring" package="cx.ring"
android:installLocation="auto" android:installLocation="auto"
android:versionCode="103" android:versionCode="103"
...@@ -82,7 +83,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ...@@ -82,7 +83,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:icon="@drawable/ic_launcher" android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:resizeableActivity="true" android:resizeableActivity="true"
android:supportsRtl="true"> android:supportsRtl="true"
tools:ignore="UnusedAttribute">
<activity <activity
android:name=".launch.LaunchActivity" android:name=".launch.LaunchActivity"
...@@ -155,8 +157,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ...@@ -155,8 +157,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize" android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
android:label="@string/app_name" android:label="@string/app_name"
android:screenOrientation="fullUser" android:screenOrientation="fullUser"
android:theme="@style/AppTheme.ActionBar.Transparent"
android:showOnLockScreen="true" android:showOnLockScreen="true"
android:theme="@style/AppTheme.ActionBar.Transparent"
android:windowSoftInputMode="adjustPan|stateHidden"> android:windowSoftInputMode="adjustPan|stateHidden">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.CALL" /> <action android:name="android.intent.action.CALL" />
...@@ -301,14 +303,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. ...@@ -301,14 +303,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:theme="@style/LeanbackPreferences" /> android:theme="@style/LeanbackPreferences" />
<service <service
android:name=".services.RingFirebaseMessagingService"> android:name=".services.RingFirebaseMessagingService"
android:exported="false">
<intent-filter> <intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" /> <action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter> </intent-filter>
</service> </service>
<service <service
android:name=".services.RingFirebaseInstanceIdService"> android:name=".services.RingFirebaseInstanceIdService"
android:exported="false">
<intent-filter> <intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" /> <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter> </intent-filter>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment