Skip to content

Commit

Permalink
Impl DApp deepLink, tezos DApp connection iOS fix (#77)
Browse files Browse the repository at this point in the history
* Improved gas limit per operation count

* Reject dApp request by onClose

* New OperationRequestPopup layout WIP

* New OperationRequestPopup done, OperationRequestVM WIP

* Autofill error handled

* Raw and Bytes to SignatureRequestPopup

* Raw operations, operationRequest popup changes, few fixes

* Reveal operation layout, few fixes

* Layout changes, added scanner overlay to connect dApp

* Fix enable/disable scanner

* i18n ru

* Operation request popup layout fix

* Connect dApp fix + few changes

* Fix delegationTime format

* Binding string values to entry components in OperationRequest popup

* Beacon exclusive mode for iOS

* Fix styles

* Snack bar improvements

* Fix snack bar after cancelation

* Increase dApp connection timeout, few layout fixes

* Detailed snack bar for dApp connection

* Increase beakon SDK version

* Increase app version, android targetSdkVersion, activity exported

* Increase beacon SDK version

* Increase app and beacon SDK version

* Beacon TezosDelegationOperation handle

* Fix OperationRequest popup layout

* Handle few exceptions DappsViewModel

* Default icon for null in permission popup

* Added copy button to OperationBytes view

* Increase app version
  • Loading branch information
mismirnov committed Jan 23, 2023
1 parent 37c5d4f commit 938c299
Show file tree
Hide file tree
Showing 58 changed files with 4,465 additions and 1,086 deletions.
4 changes: 4 additions & 0 deletions atomex.Android/Atomex.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,14 @@
<ItemGroup>
<AndroidResource Include="Resources\drawable-night\ic_disconnect.xml" />
<AndroidResource Include="Resources\drawable-night\ic_disconnect__blue.xml" />
<AndroidResource Include="Resources\drawable-night\ic_dropdown.xml" />
<AndroidResource Include="Resources\drawable-night\ic_qr__blue.xml" />
<AndroidResource Include="Resources\drawable-night\ic_warning.xml" />
<AndroidResource Include="Resources\drawable\ic_disconnect.xml" />
<AndroidResource Include="Resources\drawable\ic_disconnect__blue.xml" />
<AndroidResource Include="Resources\drawable\ic_dropdown.xml" />
<AndroidResource Include="Resources\drawable\ic_qr__blue.xml" />
<AndroidResource Include="Resources\drawable\ic_warning.xml" />
<AndroidResource Include="Resources\layout\Tabbar.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\colors.xml" />
Expand Down
2 changes: 1 addition & 1 deletion atomex.Android/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace atomex.Droid
{
[Activity(Label = "Atomex", Icon = "@mipmap/icon", Theme = "@style/MainTheme",
ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, LaunchMode = LaunchMode.SingleTask,
ScreenOrientation = ScreenOrientation.Locked)]
ScreenOrientation = ScreenOrientation.Locked, Exported = true)]

[IntentFilter(new[] { Intent.ActionView },
Categories = new[]
Expand Down
4 changes: 2 additions & 2 deletions atomex.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.21.0" package="com.atomex.android" android:versionCode="36">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="30" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="1.22.14" package="com.atomex.android" android:versionCode="38">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="31" />
<application android:label="Atomex" android:allowBackup="false" android:icon="@drawable/ic_launcher">
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/ic_notification" />
<receiver android:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver" android:exported="false" />
Expand Down
Loading

0 comments on commit 938c299

Please sign in to comment.