Launch in a mirror link session
com.mirrorlink.android.app.LAUNCH
This intent action allows a mirror link server to launch your app, i.e. the app can be used in cars. It goes together with the terminate in a mirror link session.
See related web siteUse
public void startLaunchInAMirrorLinkSession() { Intent intent = new Intent("com.mirrorlink.android.app.LAUNCH"); if (intent.resolveActivity(getPackageManager()) != null) { startActivity(intent); } }
Example intent filter
<activity ...> <intent-filter> <action android:name="com.mirrorlink.android.app.LAUNCH" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
Apps Providing an Implementation
Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)
For Specification Writers
Edit on Github