Fixes
This commit is contained in:
parent
cd7c54230e
commit
9228556ed1
@ -3,21 +3,21 @@
|
||||
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"
|
||||
>
|
||||
<profileable android:shell="true"/>
|
||||
tools:targetApi="31">
|
||||
<profileable android:shell="true" />
|
||||
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:exported="true" >
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
@ -25,21 +25,21 @@
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.EditActivity"
|
||||
android:exported="true" >
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.StatActivity"
|
||||
android:exported="true" >
|
||||
android:name=".activity.StatsActivity"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.SettingsActivity"
|
||||
android:exported="true" >
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
|
@ -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"
|
||||
|
@ -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>
|
||||
|
@ -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>
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user