Skip to content

Instantly share code, notes, and snippets.

@ndurell
Created February 18, 2014 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ndurell/9072961 to your computer and use it in GitHub Desktop.
Save ndurell/9072961 to your computer and use it in GitHub Desktop.
This gist shows the components that need to be included in your <application> tag for SessionM integration.
<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" >
</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