Skip to content

Instantly share code, notes, and snippets.

@sessionm-docs
Forked from ndurell/SessionM.xml
Last active August 29, 2015 14:00
Show Gist options
  • Save sessionm-docs/11046693 to your computer and use it in GitHub Desktop.
Save sessionm-docs/11046693 to your computer and use it in GitHub Desktop.
<receiver android:name="com.sessionm.api.ConnectionReceiver" >
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" >
</action>
</intent-filter>
</receiver>
<activity
android:name="com.sessionm.ui.SessionMActivity"
android:configChanges="keyboard|orientation|screenSize"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:windowSoftInputMode="adjustPan" >
<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="smYOUR_KEY_HERE" />
<data android:scheme="sessionmYOUR_KEY_HERE" />
</intent-filter>
</activity>
<activity
android:name="com.sessionm.ui.SessionMVideoActivity"
android:configChanges="keyboard|orientation|screenSize" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment