Advertisement
respati

Untitled

May 24th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. package="com.android.victory.schedule">
  5.  
  6. <!-- To auto-complete the email text field in the login form with the user's emails -->
  7. <uses-permission android:name="android.permission.GET_ACCOUNTS" />
  8. <uses-permission android:name="android.permission.READ_PROFILE" />
  9. <uses-permission android:name="android.permission.READ_CONTACTS" />
  10. <uses-permission android:name="android.permission.INTERNET" />
  11. <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
  12. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  13. <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
  14. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  15. <uses-permission
  16. android:name="android.permission.ACCESS_FINE_LOCATION" />
  17. <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  18. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  19. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  20. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  21. <uses-permission android:name="android.permission.CAMERA" />
  22.  
  23. <uses-feature android:name="android.hardware.camera" />
  24. <uses-feature android:name="android.hardware.camera.autofocus" />
  25. <uses-feature android:name="android.hardware.camera.front" />
  26. <uses-feature android:name="android.hardware.camera.front.autofocus" />
  27.  
  28. <supports-screens
  29. android:anyDensity="true"
  30. android:largeScreens="true"
  31. android:normalScreens="true"
  32. android:resizeable="true"
  33. android:smallScreens="true" />
  34.  
  35. <!--
  36. The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
  37. Google Maps Android API v2, but you must specify either coarse or fine
  38. location permissions for the 'MyLocation' functionality.
  39. -->
  40. <application
  41. android:allowBackup="true"
  42. android:icon="@drawable/logo"
  43. android:label="@string/app_name"
  44. android:roundIcon="@drawable/logo"
  45. android:supportsRtl="true"
  46. android:theme="@style/AppTheme">
  47. <activity
  48. android:name=".activity.LoginActivity"
  49. android:label="@string/app_name"
  50. android:theme="@style/AppTheme"
  51. android:windowSoftInputMode="stateHidden">
  52. <intent-filter>
  53. <action android:name="android.intent.action.MAIN" />
  54.  
  55. <category android:name="android.intent.category.LAUNCHER" />
  56. </intent-filter>
  57. </activity>
  58.  
  59. <uses-library
  60. android:name="com.google.android.maps"
  61. android:required="true" />
  62.  
  63. <meta-data
  64. android:name="com.google.android.gms.version"
  65. android:value="@integer/google_play_services_version" />
  66. <!--<meta-data-->
  67. <!--android:name="com.google.android.maps.v2.API_KEY"-->
  68. <!--android:value="@string/google_maps_api_key" />-->
  69.  
  70. <activity
  71. android:name=".activity.SplashActivity"
  72. android:label="@string/title_activity_login"
  73. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  74. <activity
  75. android:name=".activity.MapsActivity"
  76. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  77. <activity
  78. android:name=".activity.ScheduleActivity"
  79. android:label="@string/title_activity_schedule"
  80. android:theme="@style/AppTheme.NoActionBar" />
  81.  
  82. <service
  83. android:name=".service.NetworkService"
  84. android:enabled="true"
  85. android:exported="true" />
  86.  
  87. <activity
  88. android:name="com.theartofdev.edmodo.cropper.CropImageActivity"
  89. android:theme="@style/Base.Theme.AppCompat" />
  90. <activity
  91. android:name=".activity.AddScheduleActivity"
  92. android:isScrollContainer="false"
  93. android:windowSoftInputMode="adjustResize" />
  94. <activity
  95. android:name=".activity.SettingActivity"
  96. android:screenOrientation="portrait"
  97. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  98. <activity
  99. android:name=".activity.MainActivity"
  100. android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
  101. <!--
  102. The API key for Google Maps-based APIs is defined as a string resource.
  103. (See the file "res/values/google_maps_api.xml").
  104. Note that the API key is linked to the encryption key used to sign the APK.
  105. You need a different API key for each encryption key, including the release key that is used to
  106. sign the APK for publishing.
  107. You can define the keys for the debug and release targets in src/debug/ and src/release/.
  108. -->
  109.  
  110. <activity android:name=".activity.CheckInActivity" />
  111. <!--
  112. The API key for Google Maps-based APIs is defined as a string resource.
  113. (See the file "res/values/google_maps_api.xml").
  114. Note that the API key is linked to the encryption key used to sign the APK.
  115. You need a different API key for each encryption key, including the release key that is used to
  116. sign the APK for publishing.
  117. You can define the keys for the debug and release targets in src/debug/ and src/release/.
  118. -->
  119. <meta-data
  120. android:name="com.google.android.geo.API_KEY"
  121. android:value="@string/google_maps_key" />
  122.  
  123. <activity
  124. android:name=".activity.CheckOutActivity"
  125. android:label="@string/title_activity_check_out"></activity>
  126. </application>
  127.  
  128. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement