Skip to content

Instantly share code, notes, and snippets.

@mitchtabian
Created November 15, 2017 05:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitchtabian/8d2475cb366c7051dcac212241ec5ab1 to your computer and use it in GitHub Desktop.
Save mitchtabian/8d2475cb366c7051dcac212241ec5ab1 to your computer and use it in GitHub Desktop.
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name=".utility.MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
<service
android:name=".utility.MyFirebaseInstanceIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<activity android:name=".LoginActivity" android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".RegisterActivity" android:screenOrientation="portrait"/>
<activity android:name=".UserListActivity" android:screenOrientation="portrait"/>
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment