mirror of
https://github.com/pezkuwichain/pezkuwi-wallet-android.git
synced 2026-07-24 14:45:41 +00:00
84bbff68ba
android:scheme="@string/deep_linking_scheme"/android:host="@string/deep_linking_host" compiled fine but never resolved at runtime - confirmed by decoding the actual built APK's binary manifest, which showed the raw unresolved resource ids (@7F13034E/@7F13034A) instead of literal values, unlike every sibling intent-filter in this same manifest (buy-success, request, wc, https), which all use literal strings and work correctly. PackageManager can't match a <data> scheme/host that never resolves, so this intent-filter - covering every /open/... deep link, including the just-added first-signer multisig operation case (PR #14) - has never been reachable on any real device since it was written, regardless of the correctness of the Kotlin handling code behind it. Confirmed by attempting the actual deep link on-device (ADB VIEW intent, unresolved) before finding this.
217 lines
8.5 KiB
XML
217 lines
8.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission
|
|
android:name="com.google.android.gms.permission.AD_ID"
|
|
tools:node="remove" />
|
|
|
|
<uses-permission
|
|
android:name="android.permission.BLUETOOTH"
|
|
android:maxSdkVersion="30" />
|
|
<uses-permission
|
|
android:name="android.permission.BLUETOOTH_ADMIN"
|
|
android:maxSdkVersion="30" />
|
|
|
|
<uses-permission
|
|
android:name="android.permission.BLUETOOTH_SCAN"
|
|
tools:targetApi="s" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<application
|
|
android:name="io.novafoundation.nova.app.App"
|
|
android:allowBackup="false"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="false"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
android:supportsRtl="true"
|
|
tools:replace="android:allowBackup,android:fullBackupContent,android:dataExtractionRules"
|
|
tools:targetApi="s">
|
|
|
|
<activity
|
|
android:name="io.novafoundation.nova.app.root.presentation.RootActivity"
|
|
android:configChanges="orientation|screenSize"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.NovaFoundation.Nova"
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter tools:ignore="AppLinkUrlError">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="application/json" />
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
<data
|
|
android:host="buy-success"
|
|
android:scheme="pezkuwi" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:label="@string/app_name">
|
|
<data
|
|
android:host="pezkuwi"
|
|
android:scheme="pezkuwiwallet" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
<data android:host="request" />
|
|
<data android:scheme="pezkuwiwallet" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
<data android:host="wc" />
|
|
<data android:scheme="pezkuwiwallet" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
<data
|
|
android:pathPattern="/.*@2"
|
|
android:scheme="wc" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
</intent-filter>
|
|
|
|
<intent-filter android:autoVerify="true">
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="https" />
|
|
<data android:scheme="http" />
|
|
<data android:host="app.pezkuwichain.io" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
|
android:screenOrientation="fullSensor"
|
|
android:theme="@style/Theme.NovaFoundation.Nova"
|
|
tools:replace="android:theme,screenOrientation" />
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${applicationId}.provider"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/provider_paths" />
|
|
</provider>
|
|
|
|
<receiver
|
|
android:name="io.novafoundation.nova.feature_account_impl.presentation.exporting.json.ShareCompletedReceiver"
|
|
android:enabled="true"
|
|
android:exported="false" />
|
|
|
|
<receiver
|
|
android:name="io.novafoundation.nova.feature_ledger_impl.sdk.connection.usb.UsbLedgerConnection$UsbPermissionReceiver"
|
|
android:exported="true"
|
|
android:permission="android.permission.BROADCAST_USB" />
|
|
|
|
<service
|
|
android:name="io.novafoundation.nova.feature_push_notifications.NovaFirebaseMessagingService"
|
|
android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
android:resource="@drawable/ic_pezkuwi" />
|
|
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_color"
|
|
android:resource="@color/android_system_accent" />
|
|
|
|
<meta-data
|
|
android:name="firebase_messaging_auto_init_enabled"
|
|
android:value="false" />
|
|
|
|
<meta-data
|
|
android:name="com.google.firebase.messaging.default_notification_channel_id"
|
|
android:value="@string/default_notification_channel_id" />
|
|
|
|
<meta-data
|
|
android:name="io.novafoundation.nova.transactions_notification_channel_id"
|
|
android:value="@string/transactions_notification_channel_id" />
|
|
|
|
<meta-data
|
|
android:name="io.novafoundation.nova.governance_notification_channel_id"
|
|
android:value="@string/governance_notification_channel_id" />
|
|
|
|
<meta-data
|
|
android:name="io.novafoundation.nova.staking_notification_channel_id"
|
|
android:value="@string/staking_notification_channel_id" />
|
|
|
|
<meta-data
|
|
android:name="io.novafoundation.nova.multisigs_notification_channel_id"
|
|
android:value="@string/multisigs_notification_channel_id" />
|
|
|
|
</application>
|
|
|
|
<queries>
|
|
<intent>
|
|
<action android:name="android.intent.action.SEND" />
|
|
<data android:mimeType="text/plain" />
|
|
</intent>
|
|
|
|
<!-- Allow Google Pay feature in WebView -->
|
|
<intent>
|
|
<action android:name="org.chromium.intent.action.PAY" />
|
|
</intent>
|
|
<intent>
|
|
<action android:name="org.chromium.intent.action.IS_READY_TO_PAY" />
|
|
</intent>
|
|
<intent>
|
|
<action android:name="org.chromium.intent.action.UPDATE_PAYMENT_DETAILS" />
|
|
</intent>
|
|
</queries>
|
|
</manifest> |