Skip to content

Commit 0db2563

Browse files
Fix
1 parent 12a8cd4 commit 0db2563

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

sample/Sample.Android/Resources/Resource.designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sample/Sample.iOS/Sample.iOS.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AssemblyName>Sample.iOS</AssemblyName>
1515
<MtouchEnableSGenConc>true</MtouchEnableSGenConc>
1616
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
17-
<ProvisioningType>automatic</ProvisioningType>
17+
<ProvisioningType>manual</ProvisioningType>
1818
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1919
</PropertyGroup>
2020
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
@@ -47,12 +47,12 @@
4747
<ErrorReport>prompt</ErrorReport>
4848
<WarningLevel>4</WarningLevel>
4949
<MtouchArch>ARM64</MtouchArch>
50-
<CodesignKey>Apple Development: Sebastian Stehle (QXSQNQVQ76)</CodesignKey>
50+
<CodesignKey>iPhone Developer</CodesignKey>
5151
<MtouchDebug>true</MtouchDebug>
5252
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
5353
<MtouchLink>None</MtouchLink>
5454
<MtouchInterpreter>-all</MtouchInterpreter>
55-
<CodesignProvision>VS: io.notifo.xamarin.sample Development</CodesignProvision>
55+
<CodesignProvision></CodesignProvision>
5656
</PropertyGroup>
5757
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
5858
<DebugType>none</DebugType>

sdk/Notifo.SDK/NotifoMobilePush/NotifoMobilePushImplementation.ios.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ private async Task AddImageAsync(UNMutableNotificationContent content, UserNotif
239239
return;
240240
}
241241

242-
var attachmentName = Guid.NewGuid().ToString();
242+
var attachmentName = $"{Guid.NewGuid()}.png";
243243
var attachmentUrl = new NSUrl(attachmentName, NSFileManager.DefaultManager.GetTemporaryDirectory());
244244

245245
// The cache directory cannot be used.

0 commit comments

Comments
 (0)