Skip to content

Commit

Permalink
SDK 10.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msft-cofitz committed Apr 4, 2024
1 parent dcb6e67 commit 5b38d76
Show file tree
Hide file tree
Showing 76 changed files with 10,644 additions and 1,904 deletions.
16 changes: 10 additions & 6 deletions BuildTool/bin/BuildToolCLI
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ done
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}.." && pwd -P ) || exit

# Add default JVM options here. You can also use JAVA_OPTS and BUILD_TOOL_CLI_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum

Expand Down Expand Up @@ -133,26 +130,29 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -197,6 +197,10 @@ if "$cygwin" || "$msys" ; then
done
fi


# Add default JVM options here. You can also use JAVA_OPTS and BUILD_TOOL_CLI_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""

# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $BUILD_TOOL_CLI_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
Expand Down
Binary file modified BuildTool/lib/com.microsoft.intune.mam.build.cli.jar
Binary file not shown.
Binary file modified BuildTool/lib/com.microsoft.intune.mam.build.core.jar
Binary file not shown.
Binary file modified BuildTool/lib/com.microsoft.intune.mam.rewrite.jar
Binary file not shown.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
Version 10.2.1
-------------
* Ensure that app always connects to Company Portal if App Config policy is in use.

Version 10.2.0
-------------
* MAM SDK API methods that take UPNs to specify identities are deprecated.
They will be removed completely at the next major version increment.
New methods that specify identities by OID (also known as AAD User ID,
AAD ID or Entra ID) should be used instead. See the MAM SDK integration
guide and javadocs for details.

Version 10.1.2
-------------
* Remove single identity assumptions from implicit wipe behavior.
* Handle `ClassNotFoundException` and `BadParcelableException` thrown when un-parceling intent extras in offline mode.

Version 10.1.1
-------------
* Fix `NullPointerException` in MAM logger initialization.

Version 10.1.0
-------------
* Remove single identity assumptions in the enrolled identity and MAM service URL caches.
* IMPORTANT: this update performs cache migrations that are **not compatible for rollback**.
After updating to 9.7.5 and deploying, your app cannot downgrade to an earlier SDK version in a subsequent release.
* Remove redundant offline enrollment status caching.
* Improve heuristic for primary offline identity.
* Add MAMDiagnosticLogManager and MAMLogCollectionNotification to support M365 log collection feature.

Version 10.0.0
-------------
* Support for Android 14 targeting.
Expand Down
Binary file modified GradlePlugin/com.microsoft.intune.mam.build.jar
Binary file not shown.
Binary file modified Microsoft.Intune.MAM.SDK-javadoc.jar
Binary file not shown.
Binary file modified Microsoft.Intune.MAM.SDK.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Microsoft Intune App SDK for Android

Version [10.0.0](https://github.com/msintuneappsdk/ms-intune-app-sdk-android/releases)
Version [10.2.1](https://github.com/msintuneappsdk/ms-intune-app-sdk-android/releases)

See [release notes](https://github.com/msintuneappsdk/ms-intune-app-sdk-android/releases) for more information. GitHub users can receive email notifications for new releases to this repo by clicking on **Releases only** from the "Watch" drop-down menu in the upper right-hand corner.

Expand Down
6 changes: 3 additions & 3 deletions docs/assets/navtree_data.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5b38d76

Please sign in to comment.