mirror of
https://github.com/woheller69/solxpect.git
synced 2026-01-31 06:25:15 +01:00
93 lines
No EOL
4.2 KiB
XML
93 lines
No EOL
4.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.woheller69.weather">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:requestLegacyExternalStorage="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:fontFamily = "sans-serif-light"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<meta-data android:name="android.webkit.WebView.MetricsOptOut"
|
|
android:value="true" />
|
|
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.SplashActivity"
|
|
android:theme="@style/SplashTheme"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.ManageLocationsActivity"
|
|
android:launchMode="singleTop"
|
|
android:label="@string/activity_manage"
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
android:parentActivityName="org.woheller69.weather.activities.ForecastCityActivity" />
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.ForecastCityActivity"
|
|
android:launchMode="singleTop"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.AboutActivity"
|
|
android:label="@string/about"
|
|
android:parentActivityName="org.woheller69.weather.activities.ForecastCityActivity"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value="org.woheller69.weather.activities.ForecastCityActivity" />
|
|
</activity>
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.HelpActivity"
|
|
android:label="@string/activity_help"
|
|
android:parentActivityName="org.woheller69.weather.activities.ForecastCityActivity"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value="org.woheller69.weather.activities.ForecastCityActivity" />
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.BackupRestoreActivity"
|
|
android:label="@string/activity_backuprestore"
|
|
android:parentActivityName="org.woheller69.weather.activities.ForecastCityActivity"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value="org.woheller69.weather.activities.ForecastCityActivity" />
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="org.woheller69.weather.activities.SettingsActivity"
|
|
android:label="@string/activity_settings_title"
|
|
android:parentActivityName="org.woheller69.weather.activities.ForecastCityActivity"
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value="org.woheller69.weather.activities.ForecastCityActivity" />
|
|
|
|
</activity>
|
|
<activity
|
|
android:name="org.woheller69.weather.firststart.TutorialActivity"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
|
|
<service
|
|
android:name="org.woheller69.weather.services.UpdateDataService"
|
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
|
android:exported="false" />
|
|
|
|
</application>
|
|
|
|
</manifest> |