1b5352da0d
Build 37 wrongly forced Grim's on-screen virtual keyboard on Android (.soft_keyboard()) after the emulator's broken IME misled me into thinking the native keyboard was dead. That brought up a virtual keyboard AND double-typed. Reverted: - Removed .soft_keyboard() from every field; they now use Grim's TextEdit defaults (no_soft_keyboard = is_android()) → the user's native keyboard on Android, exactly like Grim, no virtual keyboard, single input. - Reverted edit.rs IMEAllowed/on_soft_input to Grim's exact behavior; kept only the additive display builders (hint_text/text_color/body) the Goblin design needs. - Manifest: removed windowSoftInputMode and the keyboard/keyboardHidden/navigation configChanges flags I'd added (Grim has none) so input matches Grim; kept the uiMode/density flags + isFinishing() guard for the dark-mode crash fix. The app's input path now diffs from Grim only by the additive display builders. (The Android emulator's IME is aborted regardless — a known emulator quirk — so the native keyboard is validated on a real device, where Grim works.)
70 lines
3.2 KiB
XML
70 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
|
|
|
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" tools:ignore="ScopedStorage"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage"/>
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage"/>
|
|
|
|
<application
|
|
android:hardwareAccelerated="true"
|
|
android:largeHeap="true"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="Goblin"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:theme="@style/Theme.Main"
|
|
android:enableOnBackInvokedCallback="false"
|
|
android:extractNativeLibs="true"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<receiver android:name=".NotificationActionsReceiver"/>
|
|
|
|
<provider
|
|
android:name=".FileProvider"
|
|
android:authorities="st.goblin.wallet.fileprovider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/paths" />
|
|
</provider>
|
|
|
|
<activity
|
|
android:launchMode="singleTask"
|
|
android:name=".MainActivity"
|
|
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|uiMode|density|locale|layoutDirection|fontScale|colorMode"
|
|
android:exported="true">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:scheme="http" tools:ignore="AppLinkUrlError">
|
|
<action android:name="android.intent.action.SEND" />
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/*" />
|
|
<data android:mimeType="application/*" />
|
|
<data android:pathPattern=".*\\.slatepack" />
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.lib_name" android:value="grim" />
|
|
</activity>
|
|
|
|
<service
|
|
android:name=".BackgroundService"
|
|
android:stopWithTask="true"
|
|
android:foregroundServiceType="dataSync" />
|
|
</application>
|
|
|
|
</manifest> |