mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Add support for all android screen sizes.
This commit is contained in:
@@ -2,7 +2,13 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.keepass"
|
||||
android:versionName="0.9.1" android:versionCode="21">
|
||||
<uses-sdk android:minSdkVersion="3"/>
|
||||
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
<application android:label="@string/app_name" android:icon="@drawable/keepassdroid_launcher">
|
||||
<activity android:name=".KeePass"
|
||||
android:label="@string/app_name">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-3
|
||||
target=android-4
|
||||
# apk configurations. This property allows creation of APK files with limited
|
||||
# resources. For example, if your application contains many locales and
|
||||
# you wish to release multiple smaller apks instead of a large one, you can
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
</style>
|
||||
<style name="GroupTextLarge" parent="android:Theme">
|
||||
<item name="@android:textColor">@color/group</item>
|
||||
<item name="@android:textSize">30sp</item>
|
||||
<item name="@android:textSize">28sp</item>
|
||||
</style>
|
||||
<style name="ElementText">
|
||||
<item name="@android:textSize">20sp</item>
|
||||
@@ -33,8 +33,8 @@
|
||||
<item name="@android:textColor">@color/group</item>
|
||||
</style>
|
||||
<style name="ElementTextLarge">
|
||||
<item name="@android:textSize">30sp</item>
|
||||
</style>
|
||||
<item name="@android:textSize">28sp</item>
|
||||
</style>
|
||||
<style name="GroupLabel">
|
||||
<item name="@android:textSize">20sp</item>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user