mirror of
https://github.com/hmalik144/Weather-apps.git
synced 2025-12-10 02:05:20 +00:00
- atlas weather notification fix (only for lower versions) - Minor lint fixes - Upgrade gradle dependencies to versions accepted by android 33 - upgrade android gradle to 8.5 - upgrade application to android 34 - upgraded all library dependencies - readme.md added - Snapshot tests added for readme.md - UI corrections during snapshots
16 lines
612 B
XML
16 lines
612 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<ListPreference
|
|
android:title="@string/weather_units"
|
|
android:entries="@array/units"
|
|
android:entryValues="@array/units"
|
|
android:defaultValue="Metric"
|
|
android:key="UnitType"
|
|
/>
|
|
<PreferenceCategory android:title="Notification Settings">
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="notif_boolean"
|
|
android:title="Notifications enabled" />
|
|
</PreferenceCategory>
|
|
</PreferenceScreen> |