diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 39 |
1 files changed, 9 insertions, 30 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 793e3983..d44aa950 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:tools="http://schemas.android.com/tools" package="com.pitchedapps.frost"> <!-- To auto-complete the email text field in the login form with the user's emails --> @@ -92,37 +91,17 @@ android:scheme="https" /> </intent-filter> </activity> - <activity android:name=".LoginActivity" /> - <activity - android:name="com.facebook.FacebookActivity" - android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation" - android:label="@string/app_name" - android:theme="@android:style/Theme.Translucent.NoTitleBar" - tools:replace="android:theme" /> - <activity - android:name="com.facebook.CustomTabActivity" - android:exported="true"> - <intent-filter> - <action android:name="android.intent.action.VIEW" /> - - <category android:name="android.intent.category.DEFAULT" /> - <category android:name="android.intent.category.BROWSABLE" /> - <data android:scheme="@string/fb_login_protocol_scheme" /> + <receiver + android:name=".services.NotificationReceiver" + android:enabled="true" + android:permission="android.permission.RECEIVE_BOOT_COMPLETED"> + <intent-filter> + <action android:name="android.intent.action.PACKAGE_REPLACED" /> + <action android:name="android.intent.action.BOOT_COMPLETED" /> + <action android:name="com.pitchedapps.frost.NOTIFICATIONS" /> </intent-filter> - </activity> - - <meta-data - android:name="com.facebook.sdk.ApplicationId" - android:value="@string/facebook_app_id" /> - <meta-data - android:name="com.facebook.sdk.ApplicationName" - android:value="@string/facebook_app_name" /> - - <provider - android:name="com.facebook.FacebookContentProvider" - android:authorities="@string/facebook_authorities" - android:exported="true" /> + </receiver> </application> </manifest>
\ No newline at end of file |