This commit is contained in:
soraefir 2024-04-10 21:06:42 +02:00
parent cd7c54230e
commit 9228556ed1
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
7 changed files with 12 additions and 14 deletions

View File

@ -3,18 +3,18 @@
xmlns:tools="http://schemas.android.com/tools">
<application
android:hardwareAccelerated="false"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:hardwareAccelerated="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.Beans"
tools:targetApi="31"
tools:replace="android:allowBackup"
>
tools:targetApi="31">
<profileable android:shell="true" />
<activity
android:name=".activity.MainActivity"
android:exported="true">
@ -31,7 +31,7 @@
</intent-filter>
</activity>
<activity
android:name=".activity.StatActivity"
android:name=".activity.StatsActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

View File

@ -6,7 +6,7 @@
android:layout_height="match_parent"
android:orientation="vertical"
android:theme="@style/Theme.Beans"
tools:context=".activity.StatActivity">
tools:context=".activity.StatsActivity">
<com.google.android.material.tabs.TabLayout
android:id="@+id/tab"

View File

@ -20,7 +20,7 @@
<item>@string/azimuthalequidistant</item>
<item>@string/equirectangular</item>
<item>@string/loximuthal</item>
<item>@string/webmercator</item>
<item>@string/mercator</item>
</string-array>
</resources>

View File

@ -42,9 +42,7 @@
<string name="uncategorized">Uncategorized</string>
<string name="azimuthalequidistant">Azimuthal Equidistant</string>
<string name="equirectangular">Equirectangular</string>
<string name="equidistant">Equidistant</string>
<string name="mercator">Mercator</string>
<string name="loximuthal">Loximuthal</string>
<string name="webmercator">Web Mercator</string>
<string name="key_projection">Map Projection</string>
</resources>

View File

@ -14,7 +14,7 @@
app:useSimpleSummaryProvider="true" />
<ListPreference
app:defaultValue="@string/webmercator"
app:defaultValue="@string/mercator"
app:enabled="true"
app:entries="@array/map_projection"
app:entryValues="@array/map_projection"