Skip to content
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.
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
@@ -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>
Loading