Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
  2. <intent-filter android:label="@string/launcher_name">
  3. <action android:name="android.intent.action.MAIN" />
  4. <category android:name="android.intent.category.LAUNCHER" />
  5. </intent-filter>
  6. <intent-filter>
  7. <action android:name="android.intent.action.VIEW" />
  8. <category android:name="android.intent.category.DEFAULT" />
  9. <category android:name="android.intent.category.BROWSABLE" />
  10. <data android:host="mywebsite.com" />
  11. <data android:scheme="http" />
  12. <data android:path="/.*" />
  13. </intent-filter>
  14. </activity>
  15.  
  16. <a href="intent://mywebsite.com/#Intent;package=my.package.app;scheme=http;end;"/>Click
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement