95 lines
4.1 KiB
XML
95 lines
4.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cpm.com.gskmtorange">
|
|
|
|
<!-- 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" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/icon"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name=".SplashScreenActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".LoginActivity"
|
|
android:label="@string/title_activity_login"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity android:name=".autoupdate.AutoUpdateActivity" />
|
|
<activity
|
|
android:name=".SelectLanguageActivity"
|
|
android:label="@string/title_activity_select_language"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity android:name=".download.DownloadActivity" />
|
|
|
|
<activity
|
|
|
|
android:name=".geotag.GeoTagStoreList"
|
|
android:label="@string/title_activity_store_list_geotag"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
android:name=".gsk_dailyentry.CategoryListActivity"
|
|
android:configChanges="screenSize|orientation|keyboardHidden"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<!--android:label="@string/title_activity_category_list"-->
|
|
|
|
|
|
<activity
|
|
android:name=".gsk_dailyentry.CategoryWisePerformanceActivity"
|
|
android:configChanges="screenSize|orientation|keyboardHidden"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<!-- android:label="@string/title_activity_category_wise_performance" -->
|
|
|
|
<activity
|
|
android:name=".gsk_dailyentry.DailyDataMenuActivity"
|
|
android:configChanges="screenSize|orientation|keyboardHidden"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<!--android:label="@string/title_activity_daily_main_menu"-->
|
|
|
|
<activity
|
|
android:name=".gsk_dailyentry.MSL_AvailabilityActivity"
|
|
android:configChanges="screenSize|orientation|keyboardHidden"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
<!--android:label="@string/title_activity_msl__availability"-->
|
|
<activity
|
|
android:name=".dailyentry.StoreListActivity"
|
|
android:label="@string/title_activity_store_list_geotag"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<activity
|
|
android:name=".gsk_dailyentry.Stock_FacingActivity"
|
|
android:configChanges="screenSize|orientation|keyboardHidden"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:windowSoftInputMode="adjustPan" />
|
|
|
|
</application>
|
|
</manifest> |