Fixes
This commit is contained in:
parent
cd7c54230e
commit
9228556ed1
@ -3,21 +3,21 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools">
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:hardwareAccelerated="false"
|
|
||||||
android:allowBackup="true"
|
android:allowBackup="true"
|
||||||
android:dataExtractionRules="@xml/data_extraction_rules"
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
||||||
android:fullBackupContent="@xml/backup_rules"
|
android:fullBackupContent="@xml/backup_rules"
|
||||||
|
android:hardwareAccelerated="false"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:supportsRtl="true"
|
android:supportsRtl="true"
|
||||||
android:theme="@style/Theme.Beans"
|
android:theme="@style/Theme.Beans"
|
||||||
tools:targetApi="31"
|
|
||||||
tools:replace="android:allowBackup"
|
tools:replace="android:allowBackup"
|
||||||
>
|
tools:targetApi="31">
|
||||||
<profileable android:shell="true"/>
|
<profileable android:shell="true" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activity.MainActivity"
|
android:name=".activity.MainActivity"
|
||||||
android:exported="true" >
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
@ -25,21 +25,21 @@
|
|||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name=".activity.EditActivity"
|
android:name=".activity.EditActivity"
|
||||||
android:exported="true" >
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name=".activity.StatActivity"
|
android:name=".activity.StatsActivity"
|
||||||
android:exported="true" >
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity
|
<activity
|
||||||
android:name=".activity.SettingsActivity"
|
android:name=".activity.SettingsActivity"
|
||||||
android:exported="true" >
|
android:exported="true">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN" />
|
<action android:name="android.intent.action.MAIN" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:theme="@style/Theme.Beans"
|
android:theme="@style/Theme.Beans"
|
||||||
tools:context=".activity.StatActivity">
|
tools:context=".activity.StatsActivity">
|
||||||
|
|
||||||
<com.google.android.material.tabs.TabLayout
|
<com.google.android.material.tabs.TabLayout
|
||||||
android:id="@+id/tab"
|
android:id="@+id/tab"
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<item>@string/azimuthalequidistant</item>
|
<item>@string/azimuthalequidistant</item>
|
||||||
<item>@string/equirectangular</item>
|
<item>@string/equirectangular</item>
|
||||||
<item>@string/loximuthal</item>
|
<item>@string/loximuthal</item>
|
||||||
<item>@string/webmercator</item>
|
<item>@string/mercator</item>
|
||||||
|
|
||||||
</string-array>
|
</string-array>
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -42,9 +42,7 @@
|
|||||||
<string name="uncategorized">Uncategorized</string>
|
<string name="uncategorized">Uncategorized</string>
|
||||||
<string name="azimuthalequidistant">Azimuthal Equidistant</string>
|
<string name="azimuthalequidistant">Azimuthal Equidistant</string>
|
||||||
<string name="equirectangular">Equirectangular</string>
|
<string name="equirectangular">Equirectangular</string>
|
||||||
<string name="equidistant">Equidistant</string>
|
|
||||||
<string name="mercator">Mercator</string>
|
<string name="mercator">Mercator</string>
|
||||||
<string name="loximuthal">Loximuthal</string>
|
<string name="loximuthal">Loximuthal</string>
|
||||||
<string name="webmercator">Web Mercator</string>
|
|
||||||
<string name="key_projection">Map Projection</string>
|
<string name="key_projection">Map Projection</string>
|
||||||
</resources>
|
</resources>
|
@ -14,7 +14,7 @@
|
|||||||
app:useSimpleSummaryProvider="true" />
|
app:useSimpleSummaryProvider="true" />
|
||||||
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
app:defaultValue="@string/webmercator"
|
app:defaultValue="@string/mercator"
|
||||||
app:enabled="true"
|
app:enabled="true"
|
||||||
app:entries="@array/map_projection"
|
app:entries="@array/map_projection"
|
||||||
app:entryValues="@array/map_projection"
|
app:entryValues="@array/map_projection"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user