AndroidManifest.xml.jinja2 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="{{ APK_PACKAGE_NAME }}"
  4. android:versionCode="1"
  5. android:versionName="1.0">
  6. <uses-permission android:name="android.permission.INTERNET"/>
  7. <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
  8. <uses-feature android:glEsVersion="0x00020000" android:required="true" />
  9. <application android:label="@string/product_name_android"
  10. android:name="org.chromium.chromoting.RemotingApplication"
  11. android:icon="@mipmap/ic_launcher"
  12. android:theme="@style/BaseTheme"
  13. android:allowBackup="false"
  14. android:resizeableActivity="true"
  15. android:supportsPictureInPicture="false">
  16. <activity
  17. android:name="org.chromium.chromoting.Chromoting"
  18. android:configChanges="orientation|screenSize"
  19. android:exported="true"
  20. android:theme="@style/BaseTheme.NavigationDrawer"
  21. android:launchMode="singleTask">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN"/>
  24. <category android:name="android.intent.category.LAUNCHER"/>
  25. </intent-filter>
  26. </activity>
  27. <activity
  28. android:name="org.chromium.chromoting.ThirdPartyTokenFetcher$OAuthRedirectActivity"
  29. android:enabled="false"
  30. android:exported="true"
  31. android:noHistory="true">
  32. <!--suppress AppIndexingError -->
  33. <intent-filter>
  34. <action android:name="android.intent.action.VIEW"/>
  35. <category android:name="android.intent.category.DEFAULT"/>
  36. <category android:name="android.intent.category.BROWSABLE"/>
  37. <data android:host="*"/>
  38. <data android:scheme="{{ APK_PACKAGE_NAME }}"/>
  39. <data android:path="/oauthredirect/"/>
  40. </intent-filter>
  41. </activity>
  42. <activity
  43. android:name="org.chromium.chromoting.Desktop"
  44. android:exported="false"
  45. android:windowSoftInputMode="adjustResize"/>
  46. <activity
  47. android:name="org.chromium.chromoting.help.HelpActivity"
  48. android:configChanges="orientation|screenSize"
  49. android:exported="false"
  50. android:uiOptions="splitActionBarWhenNarrow"/>
  51. <activity
  52. android:name="org.chromium.chromoting.TermsOfServiceActivity"
  53. android:exported="false"/>
  54. <activity
  55. android:name="org.chromium.chromoting.PrivacyPolicyActivity"
  56. android:exported="false"/>
  57. <activity
  58. android:name="org.chromium.chromoting.help.CreditsActivity"
  59. android:exported="true"/>
  60. </application>
  61. </manifest>