2016-07-01 11:11:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-07-01 13:34:32 +00:00
|
|
|
package="com.android_app.matan.ara.sagi.thesocialnotework">
|
2016-07-01 11:11:36 +00:00
|
|
|
|
2016-07-06 11:00:51 +00:00
|
|
|
|
2016-07-01 21:28:39 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2016-07-03 14:33:11 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission." />
|
2016-07-01 21:28:39 +00:00
|
|
|
|
2016-07-01 13:34:32 +00:00
|
|
|
<!-- To auto-complete the email text field in the login form with the user's emails -->
|
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_PROFILE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2016-07-01 11:11:36 +00:00
|
|
|
|
2016-07-01 13:34:32 +00:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
2016-07-05 14:38:58 +00:00
|
|
|
android:name=".SplashActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2016-07-06 15:23:16 +00:00
|
|
|
android:noHistory="true"
|
|
|
|
android:screenOrientation="portrait" >
|
2016-07-01 13:34:32 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2016-07-01 11:11:36 +00:00
|
|
|
|
2016-07-01 13:34:32 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-07-05 14:38:58 +00:00
|
|
|
<activity android:name=".LoginActivity"
|
2016-07-06 19:14:41 +00:00
|
|
|
android:noHistory="true"
|
|
|
|
android:screenOrientation="portrait"/>
|
2016-07-05 14:38:58 +00:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/title_activity_main"
|
2016-07-06 15:23:16 +00:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2016-07-06 19:14:41 +00:00
|
|
|
android:screenOrientation="portrait"/>
|
|
|
|
<activity
|
|
|
|
android:name=".RegisterActivity"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
/>
|
2016-07-06 17:30:57 +00:00
|
|
|
<!--
|
|
|
|
The API key for Google Maps-based APIs is defined as a string resource.
|
|
|
|
(See the file "res/values/google_maps_api.xml").
|
|
|
|
Note that the API key is linked to the encryption key used to sign the APK.
|
|
|
|
You need a different API key for each encryption key, including the release key that is used to
|
|
|
|
sign the APK for publishing.
|
2016-07-06 19:14:41 +00:00
|
|
|
You can define the keys for the debug and release targets in src/debug/ and src/release/.
|
2016-07-06 17:30:57 +00:00
|
|
|
-->
|
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
android:value="@string/google_maps_key" />
|
|
|
|
|
2016-07-06 19:14:41 +00:00
|
|
|
|
2016-07-01 13:34:32 +00:00
|
|
|
</application>
|
2016-07-01 11:11:36 +00:00
|
|
|
|
2016-07-06 19:14:41 +00:00
|
|
|
</manifest>
|