Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integration #16

Merged
merged 53 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
7a2be25
remove custom renderer & add progress icon
Mirazyzz Nov 1, 2024
1a6cb88
Update FakeDataGenerator.cs
Mirazyzz Nov 1, 2024
899453a
Delete CustomMaterialEntry.cs
Mirazyzz Nov 1, 2024
9d4bbe0
update status converters
Mirazyzz Nov 1, 2024
7d7c04c
update dtos
Mirazyzz Nov 1, 2024
1eec3ce
Update SignalRService.cs
Mirazyzz Nov 1, 2024
250367a
Update JwtHelper.cs
Mirazyzz Nov 1, 2024
a8c6b67
update stores
Mirazyzz Nov 1, 2024
6891d10
update view models
Mirazyzz Nov 1, 2024
f0b9a47
update views
Mirazyzz Nov 1, 2024
3c893d7
add reject button style
Mirazyzz Nov 1, 2024
6fb0a20
add dispatcher view models & stores
Mirazyzz Nov 3, 2024
51b8b22
implement dispatcher pages & popups
Mirazyzz Nov 3, 2024
cd6c063
update namespaces
Mirazyzz Nov 3, 2024
09e7574
add dispatcher navigation
Mirazyzz Nov 3, 2024
02a323c
adjust namespaces
Mirazyzz Nov 3, 2024
873cd61
improve code quality for doctor's module
Mirazyzz Nov 4, 2024
dff6095
update dispatcher models
Mirazyzz Dec 17, 2024
7048e9e
update doctor models
Mirazyzz Dec 17, 2024
22e1c3b
update driver models
Mirazyzz Dec 17, 2024
bf91579
update mechanic models
Mirazyzz Dec 17, 2024
626cccb
update operator models
Mirazyzz Dec 17, 2024
d562e7c
remove old models
Mirazyzz Dec 17, 2024
728530f
update common models
Mirazyzz Dec 17, 2024
eb39424
update driver store
Mirazyzz Dec 17, 2024
4edf2a8
update doctor store
Mirazyzz Dec 17, 2024
fb04455
update dispatcher store
Mirazyzz Dec 17, 2024
5311495
update mechanic store
Mirazyzz Dec 17, 2024
46f457a
update operator store
Mirazyzz Dec 17, 2024
baa8a0c
update common stores
Mirazyzz Dec 17, 2024
bbb53c0
Update SignalRService.cs
Mirazyzz Dec 17, 2024
3bad94f
update common styles
Mirazyzz Dec 17, 2024
1ee62bc
update dispatcher view models
Mirazyzz Dec 17, 2024
d831f11
update doctor view models
Mirazyzz Dec 17, 2024
2f76c84
update mechanic view models
Mirazyzz Dec 17, 2024
250b411
update mechanic view models
Mirazyzz Dec 17, 2024
03f6f10
update operator view models
Mirazyzz Dec 17, 2024
aa1d99a
update common view models
Mirazyzz Dec 17, 2024
db8279e
setup dispatcher pages
Mirazyzz Dec 17, 2024
836388f
refactor doctor pages
Mirazyzz Dec 17, 2024
1ec07ba
create mechanic popups
Mirazyzz Dec 17, 2024
d23ea61
create operator popups
Mirazyzz Dec 17, 2024
33d2801
setup mechanic home pages
Mirazyzz Dec 17, 2024
a8daf7c
update mechanic popup pages
Mirazyzz Dec 17, 2024
d8e5dbc
update operator pages
Mirazyzz Dec 17, 2024
f9d100e
update common pages
Mirazyzz Dec 17, 2024
eb31486
Create ReviewConfirmationFactory.cs
Mirazyzz Dec 17, 2024
671301e
update converters
Mirazyzz Dec 17, 2024
1eab4cb
update Fake data generator
Mirazyzz Dec 17, 2024
cd938b0
update profile page
Mirazyzz Dec 17, 2024
2515ef3
update typos
Mirazyzz Dec 18, 2024
4d6de66
performance improvement for driver's initial page load
Mirazyzz Dec 18, 2024
2541985
Merge pull request #15 from DiyorMarket/signalR-integration
Mirazyzz Dec 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Renderers\MaterialEditorRenderer.cs" />
<Compile Include="Renderers\MaterialEntryRenderer.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
Expand Down Expand Up @@ -218,6 +217,16 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AndroidResource>
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\circle_outlined.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AndroidResource>
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\drawable\exit.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AndroidResource>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.devhub.checkdrive.mobile" android:installLocation="auto">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="34" />
<application android:theme="@style/MainTheme" android:icon="@drawable/LogoForMobile" android:label="CheckDrive" android:networkSecurityConfig="@xml/network_security_config"></application>
<application android:theme="@style/MainTheme"
android:icon="@drawable/login_logo"
android:label="CheckDrive"
android:networkSecurityConfig="@xml/network_security_config">
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
Expand Down

This file was deleted.

Loading
Loading