Advertisement
Guest User

Untitled

a guest
May 26th, 2017
671
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.77 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.teamc.mira.iwashere">
  4.  
  5. <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  6. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  7. <uses-permission android:name="android.permission.INTERNET" />
  8. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  9. <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  10. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  11. <uses-feature android:name="android.hardware.camera"/>
  12.  
  13. <application
  14. android:allowBackup="true"
  15. android:icon="@mipmap/ic_launcher"
  16. android:label="@string/app_name"
  17. android:roundIcon="@mipmap/ic_launcher_round"
  18. android:supportsRtl="true"
  19. android:theme="@style/AppTheme"
  20. android:versionCode="@string/versionCode"
  21. android:versionName="@string/versionName">
  22.  
  23. <meta-data
  24. android:name="com.facebook.sdk.ApplicationId"
  25. android:value="@string/facebook_app_id" />
  26.  
  27. <meta-data
  28. android:name="com.google.android.geo.API_KEY"
  29. android:value="AIzaSyBZmrnuImjti0VsMecT8ytNoz7F0UTOZDQ" />
  30.  
  31. <meta-data android:name="android.app.searchable"
  32. android:resource="@xml/searchable"/>
  33.  
  34. <activity
  35. android:name=".IWasHereActivity"
  36. android:label="@string/app_name"
  37. android:theme="@style/SplashTheme">
  38. <intent-filter>
  39. <action android:name="android.intent.action.MAIN" />
  40.  
  41. <category android:name="android.intent.category.LAUNCHER" />
  42. </intent-filter>
  43. </activity>
  44. <activity
  45. android:name=".presentation.auth.ResetPasswordActivity"
  46. android:label="@string/title_activity_reset_password"
  47. android:theme="@style/AppTheme.NoActionBar" />
  48. <activity
  49. android:name=".presentation.main.MainActivity"
  50. android:label="@string/title_activity_profile"
  51. android:theme="@style/AppTheme.NoActionBar">
  52. <intent-filter>
  53. <action android:name="android.intent.action.SEARCH" />
  54. </intent-filter>
  55. <meta-data
  56. android:name="android.app.searchable"
  57. android:resource="@xml/searchable" />
  58.  
  59. <meta-data android:name="android.app.default_searchable"
  60. android:value=".presentation.main.MainActivity" />
  61. </activity>
  62. <activity
  63. android:name=".presentation.auth.AuthenticateActivity"
  64. android:label="@string/title_activity_profile"
  65. android:theme="@style/AppTheme.NoActionBar" />
  66. <activity
  67. android:name=".presentation.auth.SignupActivity"
  68. android:label="@string/title_activity_login"
  69. android:theme="@style/AppTheme.NoActionBar" />
  70. <activity
  71. android:name=".presentation.auth.LoginActivity"
  72. android:label="@string/title_activity_login"
  73. android:theme="@style/AppTheme.NoActionBar" />
  74. <activity
  75. android:name=".presentation.poi.PoiDetailActivity"
  76. android:label="@string/title_activity_poi_detail"
  77. android:parentActivityName=".presentation.main.MainActivity"
  78. android:theme="@style/AppTheme.NoActionBar" />
  79. <activity
  80. android:name=".presentation.misc.AboutActivity"
  81. android:label="@string/title_activity_about"
  82. android:parentActivityName=".presentation.main.MainActivity"
  83. android:theme="@style/AppTheme.NoActionBar" />
  84. <activity
  85. android:name=".presentation.auth.GoogleActivity"
  86. android:label="@string/title_activity_google"
  87. android:theme="@style/AppTheme.NoActionBar" />
  88. <activity
  89. android:name="com.facebook.FacebookActivity"
  90. android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
  91. android:label="@string/app_name" />
  92. <activity
  93. android:name="com.facebook.CustomTabActivity"
  94. android:exported="true">
  95. <intent-filter>
  96. <action android:name="android.intent.action.VIEW" />
  97.  
  98. <category android:name="android.intent.category.DEFAULT" />
  99. <category android:name="android.intent.category.BROWSABLE" />
  100.  
  101. <data android:scheme="@string/fb_login_protocol_scheme" />
  102. </intent-filter>
  103. </activity>
  104. <activity
  105. android:name=".presentation.camera.CameraInit"
  106. android:windowSoftInputMode="adjustPan"
  107. >
  108. <intent-filter>
  109. <action android:name="android.intent.action.MAIN" />
  110. <category android:name="android.intent.category.LAUNCHER" />
  111. </intent-filter>
  112. </activity>
  113. <activity
  114. android:name=".presentation.auth.FacebookActivity"
  115. android:label="@string/title_activity_facebook"
  116. android:theme="@style/AppTheme.NoActionBar" />
  117.  
  118. <service
  119. android:name=".domain.services.LocationService"
  120. android:enabled="true" />
  121. <provider
  122. android:name="android.support.v4.content.FileProvider"
  123. android:authorities="${applicationId}.provider"
  124. android:exported="false"
  125. android:grantUriPermissions="true">
  126. <meta-data
  127. android:name="android.support.FILE_PROVIDER_PATHS"
  128. android:resource="@xml/provider_paths"/>
  129. </provider>
  130. </application>
  131.  
  132. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement