You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.8 KiB
60 lines
2.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="gr.auth.databases.flavours">
|
|
|
|
<!--
|
|
The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
|
|
Google Maps Android API v2, but you must specify either coarse or fine
|
|
location permissions for the 'MyLocation' functionality.
|
|
-->
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<application
|
|
android:name=".base.BaseApplication"
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/logo"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@drawable/logo_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
<activity android:name=".activities.LoginActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".activities.SignUpActivity"
|
|
android:theme="@style/AppTheme" />
|
|
<!--
|
|
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.
|
|
You can define the keys for the debug and release targets in src/debug/ and src/release/.
|
|
-->
|
|
<meta-data
|
|
android:name="com.google.android.geo.API_KEY"
|
|
android:value="@string/google_maps_key" />
|
|
|
|
<activity
|
|
android:name=".activities.main.MainActivity"
|
|
android:label="@string/main_activity_title" />
|
|
<activity android:name=".activities.restaurant.RestaurantActivity" />
|
|
<activity android:name=".activities.food.FoodActivity" />
|
|
<activity android:name=".activities.drink.DrinkActivity" />
|
|
<activity android:name=".activities.AddRestaurantActivity" />
|
|
<activity android:name=".activities.AddItemActivity" />
|
|
<activity android:name=".activities.profile.ProfileActivity" />
|
|
<activity android:name=".activities.RateRestaurantActivity" />
|
|
<activity android:name=".activities.RateItemActivity" />
|
|
</application>
|
|
|
|
</manifest>
|