Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. package=""
  5. >
  6.  
  7. <uses-permission android:name="android.permission.INTERNET"/>
  8. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
  9. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  10. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
  11. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  12.  
  13. <application
  14. android:allowBackup="true"
  15. android:fullBackupContent="false"
  16. android:icon="@mipmap/ic_launcher"
  17. android:label="@string/app_name"
  18. android:largeHeap="true"
  19. android:supportsRtl="true"
  20. android:theme="@style/AppTheme"
  21. >
  22. <meta-data
  23. android:name="io.fabric.ApiKey"
  24. android:value="611f7c06b446bb11dcd7ff74b1a704e20f0ab5df"
  25. />
  26. <meta-data
  27. android:name="com.google.android.geo.API_KEY"
  28. android:value="AIzaSyB3xT786rXEVRIeCTMOd2oejAiM1jbYCiM"
  29. />
  30.  
  31. <service
  32. android:name=".system.service.application.ApplicationService"
  33. android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
  34. />
  35. <service android:name=".system.service.route.service.RouteIntentService"/>
  36.  
  37. <activity
  38. android:name=".activity.startup.StartupActivity"
  39. android:theme="@style/AppTheme.NoActionBar"
  40. android:windowSoftInputMode="stateAlwaysHidden"
  41. >
  42. <intent-filter>
  43. <category android:name="android.intent.category.LAUNCHER"/>
  44. <action android:name="android.intent.action.MAIN"/>
  45. </intent-filter>
  46. </activity>
  47. <activity
  48. android:name=".activity.login.LoginActivity"
  49. android:theme="@style/AppTheme.NoActionBar"
  50. android:windowSoftInputMode="adjustResize"
  51. />
  52. <activity
  53. android:name=".activity.report.ReportActivity"
  54. android:theme="@style/AppTheme.NoActionBar"
  55. android:windowSoftInputMode="adjustNothing"
  56. android:screenOrientation="locked"
  57. >
  58. <intent-filter>
  59. <action android:name="android.intent.action.VIEW"/>
  60. </intent-filter>
  61. </activity>
  62. <activity
  63. android:name=".activity.about.AboutActivity"
  64. android:screenOrientation="locked"
  65. android:theme="@style/AppTheme.NoActionBar"
  66. />
  67. <activity
  68. android:name=".activity.help.HelpActivity"
  69. android:screenOrientation="locked"
  70. android:theme="@style/AppTheme.NoActionBar"
  71. />
  72. <activity
  73. android:name=".activity.settings.SettingActivity"
  74. android:screenOrientation="locked"
  75. android:theme="@style/AppTheme.NoActionBar"
  76. />
  77.  
  78. <service android:name=".system.FbMessagingService">
  79. <intent-filter>
  80. <action android:name="com.google.firebase.MESSAGING_EVENT"/>
  81. </intent-filter>
  82. </service>
  83. <service android:name=".system.FirebaseIDService">
  84. <intent-filter>
  85. <action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
  86. </intent-filter>
  87. </service>
  88. </application>
  89. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement