DT @06.09.2015: Reset Password, Activation Link and Main Page included
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
||||
<uses-permission android:name="org.deke.risk.riskahead.permission.MAPS_RECEIVE" />
|
||||
<!-- Allows the Google Maps Android API V2 to cache map tile data in the device's external storage area -->
|
||||
<!-- Allows the Google Maps Android API V2 to cache map tile data in the device's external storage area -->
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<!-- Google Maps Android API V2 requires OpenGL ES version 2 -->
|
||||
<uses-feature
|
||||
@@ -50,7 +50,8 @@
|
||||
<activity
|
||||
android:name=".LoginActivity"
|
||||
android:label="@string/app_name"
|
||||
android:parentActivityName="org.deke.risk.riskahead.StartActivity" >>
|
||||
android:parentActivityName=".StartActivity" >
|
||||
>
|
||||
</activity>
|
||||
<activity android:name="com.twitter.sdk.android.core.identity.OAuthActivity" />
|
||||
<activity
|
||||
@@ -62,31 +63,39 @@
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:label="@string/title_activity_entrance"
|
||||
android:parentActivityName="org.deke.risk.riskahead.LoginActivity">
|
||||
android:parentActivityName=".LoginActivity" >
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".MapsActivity"
|
||||
android:label="@string/title_activity_maps"
|
||||
android:parentActivityName="org.deke.risk.riskahead.MainActivity">
|
||||
android:parentActivityName=".MainActivity" >
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEARCH" />
|
||||
</intent-filter>
|
||||
<!-- Points to searchable activity -->
|
||||
<meta-data android:name="android.app.default_searchable"
|
||||
<meta-data
|
||||
android:name="android.app.default_searchable"
|
||||
android:value=".MapsActivity" />
|
||||
|
||||
<!-- Points to searchable meta data -->
|
||||
<meta-data android:name="android.app.searchable"
|
||||
android:resource="@xml/searchable"/>
|
||||
<meta-data
|
||||
android:name="android.app.searchable"
|
||||
android:resource="@xml/searchable" />
|
||||
</activity>
|
||||
|
||||
<provider
|
||||
android:name=".helper.PlaceProvider"
|
||||
android:authorities="org.deke.risk.riskahead.helper.PlaceProvider"
|
||||
android:exported="false" />
|
||||
|
||||
<activity
|
||||
android:name=".UserConfigActivity"
|
||||
android:label="@string/title_activity_user_config"
|
||||
android:parentActivityName="org.deke.risk.riskahead.MainActivity">
|
||||
android:parentActivityName=".MainActivity" >
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".ReportActivity"
|
||||
android:label="@string/title_activity_report" >
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user