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

Vs 2022 1 basic code changes needed #191

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="UserDetailsClient.Droid">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="30" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="UserDetailsClient.Droid" xmlns:tools="http://schemas.android.com/tools" android:installLocation="auto">
<uses-sdk android:minSdkVersion="28" android:targetSdkVersion="31" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:label="UserDetailsClient.Droid">
<application android:label="UserDetailsClient.Droid" xmlns="urn:schemas-microsoft-com:asm.v3" tools:replace="android:label, android:debuggable">
<activity android:name="microsoft.identity.client.BrowserTabActivity" android:configChanges="orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -12,6 +12,9 @@
<data android:scheme="msal4a1aa1d5-c567-49d0-ad0b-cd957a47f842" android:host="auth" />
</intent-filter>
</activity>
<windowsSettings xmlns:ws2="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<ws2:longPathAware>true</ws2:longPathAware>
</windowsSettings>
</application>
<!-- Required for API Level 30 to make sure we can detect browsers and other apps we want to
be able to talk to.-->
Expand All @@ -33,4 +36,5 @@
<action android:name="android.support.customtabs.action.CustomTabsService" />
</intent>
</queries>
<application />
</manifest>