-
Notifications
You must be signed in to change notification settings - Fork 2
Sync version 105201 #2
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
Changes from all commits
1cffc81
1a42f5a
1342ddd
c42b7fa
f8c2aea
0bf4407
76bb6ef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,10 +1,19 @@ | ||||
| using Foundation; | ||||
| using UIKit; | ||||
|
||||
| using UIKit; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| <plist version="1.0"> | ||
| <dict> | ||
| <key>CFBundleVersion</key> | ||
| <string>141002</string> | ||
| <string>151004</string> | ||
|
Comment on lines
5
to
+6
|
||
| <key>LSRequiresIPhoneOS</key> | ||
| <true/> | ||
| <key>UIDeviceFamily</key> | ||
|
|
@@ -14,13 +14,14 @@ | |
| <key>XSAppIconAssets</key> | ||
| <string>Assets.xcassets/icon.appiconset</string> | ||
| <key>NSCameraUsageDescription</key> | ||
| <string>This app uses the camera to capture and process photos.</string> | ||
| <string>We need camera access to capture and process photos.</string> | ||
| <key>NSPhotoLibraryAddUsageDescription</key> | ||
| <string>This app saves photos you take to library.</string> | ||
| <string>We need access to your photo library to save photos you take.</string> | ||
| <key>NSPhotoLibraryUsageDescription</key> | ||
| <string>This app saves photos you take to library.</string> | ||
| <string>We need access to your photo library to save photos you take.</string> | ||
| <key>NSLocationWhenInUseUsageDescription</key> | ||
| <string>This app allows you to save geolocation data to photo metadata.</string> | ||
|
|
||
| <key>UIRequiredDeviceCapabilities</key> | ||
| <array> | ||
| <string>arm64</string> | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -163,6 +163,9 @@ | |||
| <value>- Tap anywhere on the screen to set frame as preview | ||||
| - Choose your filter from bottom drawer menu! | ||||
| - Can zoom camera with fingers | ||||
| - Tap shutter to take a photo | ||||
| - Tap PHOTO/VIDEO label to switch mode | ||||
|
||||
| - Tap PHOTO/VIDEO label to switch mode |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -3,10 +3,10 @@ | |||||
| <PropertyGroup> | ||||||
|
|
||||||
| <!--<TargetFrameworks>net9.0-ios;</TargetFrameworks>--> | ||||||
| <!--<TargetFrameworks>net9.0-android;</TargetFrameworks>--> | ||||||
| <TargetFrameworks>net9.0-android;</TargetFrameworks> | ||||||
|
|
||||||
| <TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> | ||||||
| <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks> | ||||||
| <!--<TargetFrameworks>net9.0-android;net9.0-ios;net9.0-maccatalyst</TargetFrameworks> | ||||||
| <TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('windows'))">$(TargetFrameworks);net9.0-windows10.0.19041.0</TargetFrameworks>--> | ||||||
|
Comment on lines
5
to
+9
|
||||||
|
|
||||||
| <OutputType>Exe</OutputType> | ||||||
| <RootNamespace>ShadersCamera</RootNamespace> | ||||||
|
|
@@ -63,6 +63,11 @@ | |||||
| <AndroidResource Include="Platforms\Android\Resources\*\*.webp" /> | ||||||
| </ItemGroup> | ||||||
|
|
||||||
| <PropertyGroup Condition="$(TargetFramework.Contains('ios'))"> | ||||||
| <ProvisioningType>manual</ProvisioningType> | ||||||
| <CodesignKey>Apple Distribution: NIKOLAY KOVALSKIY (F5H2D34D9G)</CodesignKey> | ||||||
| <CodesignProvision>ShadersCam AppStore</CodesignProvision> | ||||||
| </PropertyGroup> | ||||||
|
Comment on lines
+66
to
+70
|
||||||
|
|
||||||
| <ItemGroup> | ||||||
|
|
||||||
|
|
@@ -96,7 +101,7 @@ | |||||
| </ItemGroup>--> | ||||||
|
|
||||||
| <ItemGroup> | ||||||
| <PackageReference Include="DrawnUi.Maui.Camera" Version="1.9.1.1" /> | ||||||
| <!--<PackageReference Include="DrawnUi.Maui.Camera" Version="1.9.1.1" />--> | ||||||
| <PackageReference Include="AppoMobi.Maui.FastPopups" Version="1.2.1" /> | ||||||
| <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" /> | ||||||
| <PackageReference Include="Microsoft.Maui.Controls" Version="9.0.70" /> | ||||||
|
|
@@ -151,6 +156,11 @@ | |||||
| </ItemGroup> | ||||||
|
|
||||||
|
|
||||||
| <ItemGroup> | ||||||
| <ProjectReference Include="..\..\..\DrawnUi.Maui\src\Maui\Addons\DrawnUi.Maui.Camera\DrawnUi.Maui.Camera.csproj" /> | ||||||
|
||||||
| <ProjectReference Include="..\..\..\DrawnUi.Maui\src\Maui\Addons\DrawnUi.Maui.Camera\DrawnUi.Maui.Camera.csproj" /> | |
| <PackageReference Include="DrawnUi.Maui.Camera" Version="1.0.0" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing the main activity to
LaunchMode.SingleInstancematerially alters Android task/back-stack and intent delivery semantics (activity runs in its own task, no other activities can join it). If the goal is just to avoid duplicate instances,SingleTaskis usually sufficient; otherwise please document whySingleInstanceis required and verify share/deep-link flows still work.