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

Address store-specific issues #1512

Merged
merged 3 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 1 addition & 2 deletions src/MAUI/Maui.Samples/Platforms/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.esri.arcgisruntime.samples.maui" android:versionCode="1" android:versionName="1.0">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.esri.arcgisruntime.samples.maui" android:versionCode="3" android:versionName="200.5.0">
<application android:allowBackup="true" android:usesCleartextTraffic="true" android:icon="@mipmap/appiconandroid" android:roundIcon="@mipmap/appiconandroid_round" android:supportsRtl="true" android:label="ArcGIS Maps .NET MAUI Samples"></application>
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="34" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand All @@ -10,7 +10,6 @@
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!--https://github.com/dotnet/maui/issues/3760#issuecomment-1046241094-->
Expand Down
8 changes: 0 additions & 8 deletions src/MAUI/Maui.Samples/Platforms/iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,6 @@
<string>Your location information is used to enable location display on maps and to find points of interest nearby.</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>UIBackgroundModes</key>
<array>
<!--for connecting to devices (client)-->
<string>bluetooth-central</string>

<!--for server configurations if needed-->
<string>bluetooth-peripheral</string>
</array>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>The app needs bluetooth to scan for iBeacons</string>
<key>NSBluetoothPeripheralUsageDescription</key>
Expand Down
4 changes: 2 additions & 2 deletions src/MAUI/Maui.Samples/Resources/SettingsPage/about.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# ArcGIS Maps SDK for Native Apps samples (.NET MAUI)
# ArcGIS Maps SDK .NET MAUI Samples

This sample viewer shows how different features of the ArcGIS Maps SDK for Native Apps can be implemented on Microsoft .NET MAUI.

----

## Resources

[Project on GitHub](https://github.com/Esri/arcgis-maps-sdk-dotnet-samples) | [Tutorials](https://developers.arcgis.com/labs/browse/?topic=any&product=NET) | [License](https://github.com/Esri/arcgis-maps-sdk-dotnet-samples/blob/master/license.txt)
[Project on GitHub](https://github.com/Esri/arcgis-maps-sdk-dotnet-samples) | [Tutorials](https://developers.arcgis.com/labs/browse/?topic=any&product=NET) | [License](https://github.com/Esri/arcgis-maps-sdk-dotnet-samples/blob/master/license.txt) | [Privacy Policy](https://www.esri.com/en-us/privacy/overview)

----

Expand Down
Loading