Skip to content

Commit

Permalink
fix google play rejection (wear os)
Browse files Browse the repository at this point in the history
App Status: Rejected

Your app has been rejected and wasn't published due to the policy issue(s) listed below. If you submitted an update, the previous version of your app is still available on Google Play.

Issue found: Wear font size

Your app does not meet the requirements for font size.

    Your app must conform to the font size set by the user in System Settings. If the user selects a larger font size, ensure that text and controls are not cut off by screen edges.

Issue details

We found an issue in the following area(s):

    Version code 50
  • Loading branch information
jamie-mh committed Oct 16, 2023
1 parent 18bdd58 commit 7463fcc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions AuthenticatorPro.WearOS/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="50"
android:versionName="2.14.0" package="me.jmh.authenticatorpro" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="51"
android:versionName="2.14.1" package="me.jmh.authenticatorpro" android:installLocation="auto">
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="33"/>
<uses-feature android:name="android.hardware.type.watch"/>
<application android:allowBackup="true" android:label="@string/appName" android:icon="@mipmap/ic_launcher"
Expand Down
6 changes: 3 additions & 3 deletions AuthenticatorPro.WearOS/Resources/layout/activityCode.axml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="2dp"
android:textSize="14dp"
android:textSize="14sp"
android:gravity="center_horizontal"
android:textColor="?attr/primaryTextColor"
android:singleLine="true"
Expand All @@ -43,7 +43,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="4dp"
android:textSize="12dp"
android:textSize="12sp"
android:gravity="center_horizontal"
android:textColor="?attr/secondaryTextColor"
android:singleLine="true"
Expand All @@ -54,7 +54,7 @@
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textColor="?attr/primaryTextColor"
android:textSize="28dp"
android:textSize="28sp"
android:textDirection="ltr"
android:fontFamily="sans-serif-condensed"
android:maxLines="1"
Expand Down
4 changes: 2 additions & 2 deletions AuthenticatorPro.WearOS/Resources/layout/activityMain.axml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<TextView
android:text="@string/noAuthenticators"
android:textColor="?attr/primaryTextColor"
android:textSize="16dp"
android:textSize="16sp"
android:layout_marginBottom="4dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
Expand All @@ -38,7 +38,7 @@
<TextView
android:text="@string/noAuthenticatorsMessage"
android:textColor="?attr/secondaryTextColor"
android:textSize="12dp"
android:textSize="12sp"
android:gravity="center_horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
Expand Down
4 changes: 2 additions & 2 deletions AuthenticatorPro.WearOS/Resources/layout/authListItem.axml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
android:layout_height="wrap_content"
android:layout_toEndOf="@id/imageDefault"
android:layout_centerVertical="true"
android:textSize="14dp"
android:textSize="14sp"
android:gravity="start"
android:textColor="?attr/primaryTextColor"
android:textDirection="locale"
Expand All @@ -56,7 +56,7 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12dp"
android:textSize="12sp"
android:gravity="start"
android:textColor="?attr/secondaryTextColor"
android:singleLine="true"
Expand Down

0 comments on commit 7463fcc

Please sign in to comment.