aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-05-31 17:11:46 -0700
committerAllan Wang <me@allanwang.ca>2017-05-31 17:11:46 -0700
commit8618670b82641d5fbaec9c333f1290bab429ce27 (patch)
tree737c9a04f108ea68547eef2db1ae6e96caa64df6 /app/src/main/AndroidManifest.xml
parent9a41937a33539dbfaae4d072361caaec79865c29 (diff)
downloadfrost-8618670b82641d5fbaec9c333f1290bab429ce27.tar.gz
frost-8618670b82641d5fbaec9c333f1290bab429ce27.tar.bz2
frost-8618670b82641d5fbaec9c333f1290bab429ce27.zip
add more cookie handling
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml39
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