2790d9a592
1. Lock Android to portrait (screenOrientation="portrait" on MainActivity). Phone-first GRIM-style wallet; no cheap phone/tablet split so the whole Android app is locked, matching the single phone surface. 2. Enlarge the mobile Home header wordmark: mark 24 to 36 (+50%), "goblin" text 18 to 26, gap 8 to 9, so the top-left lockup carries the same visual weight as the 40 to 44px right cluster (owner asked for a noticeably bigger bump than the first +25% pass). 3. Swap the Pay-screen inline mark for the official GoblinPay lockup: the black Apple-Pay-style badge on light surfaces, the white wordmark on dark (theme dark_base split). New img assets from the GoblinPay repo. 4. Plain GoblinPay/receive QR: drop the yellow center-mark overlay from w::qr_code (mirrors the prior "plain QR default" decision). Test goblin_receive_qr_decodes updated to the plain render.
82 lines
3.8 KiB
XML
82 lines
3.8 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.VIBRATE" />
|
|
<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:screenOrientation="portrait"
|
|
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>
|
|
|
|
<!-- Goblin payment deep link: web "Open in Goblin" buttons and
|
|
goblin: QR/links open the wallet straight to the send-review
|
|
screen. BROWSABLE so a browser/click can resolve it. -->
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
<data android:scheme="goblin" />
|
|
</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> |