Skip to content

Commit 4550136

Browse files
authored
Update AndroidSdk.java
add todo
1 parent 41bbf85 commit 4550136

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/main/java/com/simpligility/maven/plugins/android/AndroidSdk.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,16 @@ public AndroidSdk( File sdkPath, String apiLevel, @Nullable String buildToolsVer
9797
throw invalidSdkException( sdkPath, apiLevel );
9898
}
9999
}
100-
loadSDKToolsMajorVersion();
100+
101+
/**
102+
* Note: The Android SDK Command-Line Tools package, located in cmdline-tools, replaces the SDK Tools package,
103+
* located in tools. With the new package, you can select the version of the command line tools you want to
104+
* install, and you can install multiple versions at a time. With the old package, you can only install the
105+
* latest version of the tools. Thus, the new package lets you depend on specific versions of the command-line
106+
* tools without having your code break when new versions are released. For information about the deprecated
107+
* SDK Tools package, see the SDK Tools release notes. TODO: Android SDK Command-Line Tools
108+
*/
109+
//loadSDKToolsMajorVersion();
101110

102111
if ( apiLevel == null )
103112
{

0 commit comments

Comments
 (0)