Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,23 @@
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync"
tools:node="merge" />
<!-- Portrait orientation was previously locked here via android:screenOrientation="portrait".
Removed to satisfy Google Play policy: apps must not declare orientation or resizability
restrictions that block large-screen devices (tablets, foldables); Android 16+ may ignore
such manifest locks on those devices anyway, causing inconsistent UX. GitHub #1171. -->
<!-- android:screenOrientation="portrait" -->
<activity android:name=".activities.ImageCaptureActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<!-- configure this activity to use portrait orientation -->
</activity>


<!-- Same as ImageCaptureActivity above: manifest portrait lock removed for Play / large-screen
compliance (#1171). -->
<!-- android:screenOrientation="portrait" -->
<activity
android:name=".activities.TreeTrackerActivity"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"
android:launchMode="singleTask"
android:theme="@style/AppTheme.NoActionBar"
Expand Down
Loading