2020-01-04 21:31:52 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-01-05 17:51:26 +02:00
|
|
|
package="__APP_PACKAGE__">
|
2020-01-04 21:31:52 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2020-01-21 19:51:37 +02:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>
|
2023-11-18 00:15:15 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2021-01-28 19:58:17 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2021-01-29 22:18:07 +02:00
|
|
|
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
|
2022-06-23 11:25:00 +02:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2023-01-05 09:40:05 +01:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2024-02-09 00:11:41 +01:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
2021-01-28 19:58:17 +02:00
|
|
|
|
2020-01-04 21:31:52 +02:00
|
|
|
<application
|
2021-06-04 18:25:17 +03:00
|
|
|
android:name=".Application"
|
2022-01-04 18:55:11 +02:00
|
|
|
android:label="${APP_NAME}"
|
2022-01-14 20:35:29 +02:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2020-11-16 17:00:46 +02:00
|
|
|
android:allowBackup="false"
|
|
|
|
android:fullBackupContent="false"
|
2023-08-04 20:02:05 +03:00
|
|
|
android:versionCode="__versionCode__"
|
|
|
|
android:versionName="__versionName__"
|
2021-01-29 22:18:07 +02:00
|
|
|
android:requestLegacyExternalStorage="true">
|
2020-01-04 21:31:52 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2022-12-15 18:54:12 +02:00
|
|
|
android:launchMode="singleInstance"
|
2020-01-04 21:31:52 +02:00
|
|
|
android:theme="@style/LaunchTheme"
|
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
2022-11-16 21:55:26 -05:00
|
|
|
android:exported="true">
|
2020-01-04 21:31:52 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
2021-09-06 11:19:13 +03:00
|
|
|
<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="cakewallet"
|
|
|
|
android:host="y.at" />
|
|
|
|
</intent-filter>
|
2022-11-08 16:56:27 +02:00
|
|
|
<!-- currencies qr code scheme -->
|
2022-08-09 13:34:40 +02:00
|
|
|
<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" />
|
2023-09-14 22:14:16 +03:00
|
|
|
<data android:scheme="__APP_SCHEME__" />
|
2022-08-09 13:34:40 +02:00
|
|
|
<data android:scheme="bitcoin" />
|
2023-05-08 23:30:14 +03:00
|
|
|
<data android:scheme="bitcoin-wallet" />
|
|
|
|
<data android:scheme="bitcoin_wallet" />
|
2022-08-09 13:34:40 +02:00
|
|
|
<data android:scheme="monero" />
|
2023-05-08 23:30:14 +03:00
|
|
|
<data android:scheme="monero-wallet" />
|
|
|
|
<data android:scheme="monero_wallet" />
|
2022-08-09 13:34:40 +02:00
|
|
|
<data android:scheme="litecoin" />
|
2023-05-08 23:30:14 +03:00
|
|
|
<data android:scheme="litecoin-wallet" />
|
|
|
|
<data android:scheme="litecoin_wallet" />
|
2023-10-13 14:49:00 +03:00
|
|
|
<data android:scheme="ethereum" />
|
|
|
|
<data android:scheme="ethereum-wallet" />
|
|
|
|
<data android:scheme="ethereum_wallet" />
|
|
|
|
<data android:scheme="nano" />
|
|
|
|
<data android:scheme="nano-wallet" />
|
|
|
|
<data android:scheme="nano_wallet" />
|
|
|
|
<data android:scheme="bitcoincash" />
|
|
|
|
<data android:scheme="bitcoincash-wallet" />
|
|
|
|
<data android:scheme="bitcoincash_wallet" />
|
2023-12-02 03:26:43 +01:00
|
|
|
<data android:scheme="polygon" />
|
|
|
|
<data android:scheme="polygon-wallet" />
|
|
|
|
<data android:scheme="polygon_wallet" />
|
CW-555-Add-Solana-Wallet (#1272)
* chore: Create cw_solana package and clean up files
* feat: Add Solana Wallet - Create, Restore form seed, restore from Key, Restore from QR, Send, Receive, transaction history, spl tokens
* fix: Make transactions file specific to solana only for solana transactions
* chore: Revert inject app details script
* fix: Fix issue with node and switch current node to main beta instead of testnet
* fix: Fix merge conflicts and adjust migration version
* fix: Fetch spl token error
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
* fix: Diplay and activate spl tokens bug
* fix: Review and fixes
* fix: reverted formatting for cryptocurrency class
* fix: Review comments, split sending flow into signing and sending separately, fix issues
* fix: Revert throwing unimplenented error
* chore: Fix comment
* chore: Fix comment
* fix: Errors in flow
* Update provider_types.dart [skip ci]
* fix: Issues with solana wallet
* Update solana_wallet.dart [skip ci]
* fix: Review comments
* fix: Date time config
* fix: Revert bash script for app details
* fix: Error with balance, displaying fees, fixing sent or received identifier bug, displaying token symbol with token transaction item in transactions list
* fix: Issues with address validation when sending spl tokens and walletconnect initial setup
* fix: Issues with sending, fetching transactions history, almost wrapping up walletconnect
* fix: Adjust imports that would affect monerocom building successfully
* fix: Refine transaction direction and continue work on walletconnect
* feat: Display SPL token transfers in the transaction history and finally settle the transaction direction
* fix: Delay in transactions history dispaly, show native token transactions first, then process spl token transactions
* feat: Switch node and revert solana chain id to previous id
* fix: Remove print statement
* fix: Remove await for transactions, fetch all transaction histories instantly and adjust solana send success message
* chore: Code refactoring and streamlined wallet type check for solana send success message
* fix: Make timeout error for node silent and add spl token images
---------
Signed-off-by: Blazebrain <davidadegoke16@gmail.com>
Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
2024-02-23 14:39:19 +01:00
|
|
|
<data android:scheme="solana-wallet" />
|
CW-525-Add-Tron-Wallet (#1327)
* chore: Initial setup for Tron Wallet
* feat: Create Tron Wallet base flow implemented, keys, address, receive, restore and proxy classes all setup
* feat: Display seed and key within the app
* feat: Activate restore from key and seed for Tron wallet
* feat: Add icon for tron wallet in wallet listing page
* feat: Activate display of receive address for tron
* feat: Fetch and display tron balance, sending transaction flow setup, fee limit calculation setup
* feat: Implement sending of native tron, setup sending of trc20 tokens
* chore: Rename function
* Delete lib/tron/tron.dart
* feat: Activate exchange for tron and its tokens, implement balance display for trc20 tokens and setup secrets configuration for tron
* feat: Implement tron token management, add, remove, delete, and get tokens in home settings view, also minor cleanup
* feat: Activate buy and sell for tron
* feat: Implement restore from QR, transactions history listing for both native transactions and trc20 transactions
* feat: Activate send all and do some minor cleanups
* chore: Fix some lint infos and warnings
* chore: Adjust configurations
* ci: Modify CI to create and add secrets for node
* fix: Fixes made while self reviewing the PR for this feature
* feat: Add guide for adding new wallet types, and add fixes to requested changes
* fix: Handle exceptions gracefully
* fix: Alternative for trc20 estimated fee
* fix: Fixes to display of amount and fee, removing clashes
* fix: Fee calculation WIP
* fix: Fix issue with handling of send all flow and display of amount and fee values before broadcasting transaction
* fix: PR review fixes and fix merge conflicts
* fix: Modify fetching assetOfTransaction [skip ci]
* fix: Move tron settings migration to 33
2024-05-03 19:00:05 +01:00
|
|
|
<data android:scheme="tron" />
|
|
|
|
<data android:scheme="tron-wallet" />
|
|
|
|
<data android:scheme="tron_wallet" />
|
2022-08-09 13:34:40 +02:00
|
|
|
</intent-filter>
|
2020-01-04 21:31:52 +02:00
|
|
|
</activity>
|
2020-11-11 17:55:18 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
android:value="2" />
|
2023-01-05 09:40:05 +01:00
|
|
|
<provider
|
2024-01-08 16:03:46 +02:00
|
|
|
android:name="com.pichillilorenzo.flutter_inappwebview_android.InAppWebViewFileProvider"
|
|
|
|
android:authorities="${applicationId}.flutter_inappwebview_android.fileprovider"
|
2023-01-05 09:40:05 +01:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
|
</provider>
|
2020-01-04 21:31:52 +02:00
|
|
|
</application>
|
2022-01-31 14:09:47 +02:00
|
|
|
|
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
2020-01-04 21:31:52 +02:00
|
|
|
</manifest>
|