use of com.android.sdklib.repository.AndroidSdkHandler in project android by JetBrains.
the class InstantRunPositionManager method getAllPlatformSourcePackages.
private static Collection<? extends LocalPackage> getAllPlatformSourcePackages() {
AndroidSdkHandler sdkHandler = AndroidSdks.getInstance().tryToChooseSdkHandler();
RepoManager sdkManager = sdkHandler.getSdkManager(new StudioLoggerProgressIndicator(InstantRunPositionManager.class));
return sdkManager.getPackages().getLocalPackagesForPrefix(SdkConstants.FD_ANDROID_SOURCES);
}
use of com.android.sdklib.repository.AndroidSdkHandler in project android by JetBrains.
the class UnresolvedDependenciesReporter method getRemotePackages.
@NotNull
private static Collection<RemotePackage> getRemotePackages(@NotNull ProgressIndicator indicator) {
AndroidSdkHandler sdkHandler = AndroidSdks.getInstance().tryToChooseSdkHandler();
RepositoryPackages packages = sdkHandler.getSdkManager(indicator).getPackages();
return packages.getRemotePackages().values();
}
use of com.android.sdklib.repository.AndroidSdkHandler in project android by JetBrains.
the class FormFactorApiComboBox method deriveValues.
/**
* Fill in the values that can be derived from the selected min SDK level:
*
* minApiLevel will be set to the selected api level (string or number)
* minApi will be set to the numerical equivalent
* buildApi will be set to the highest installed platform, or to the preview platform if a preview is selected
* buildApiString will be set to the corresponding string
* targetApi will be set to the highest installed platform or to the preview platform if a preview is selected
* targetApiString will be set to the corresponding string
*
* @param stateStore
* @param modified
*/
public void deriveValues(@NotNull ScopedStateStore stateStore, @NotNull Set<Key> modified) {
if (modified.contains(myTargetComboBoxKey) || modified.contains(myInclusionKey)) {
// First remove the last request, no need to install more than one platform
if (!myInstallRequests.isEmpty()) {
for (String request : myInstallRequests) {
stateStore.listRemove(INSTALL_REQUESTS_KEY, request);
}
myInstallRequests.clear();
}
// If this form factor is not included then there is nothing to do:
AndroidTargetComboBoxItem targetItem = stateStore.get(myTargetComboBoxKey);
if (targetItem == null || !stateStore.getNotNull(myInclusionKey, false)) {
return;
}
stateStore.put(FormFactorUtils.getMinApiKey(myFormFactor), targetItem.getData());
stateStore.put(FormFactorUtils.getMinApiLevelKey(myFormFactor), targetItem.myApiLevel);
IAndroidTarget target = targetItem.target;
if (target != null && (target.getVersion().isPreview() || !target.isPlatform())) {
// Make sure we set target and build to the preview version as well
populateApiLevels(targetItem.myApiLevel, target, stateStore);
} else {
int targetApiLevel;
if (ourHighestInstalledApiTarget != null) {
targetApiLevel = ourHighestInstalledApiTarget.getVersion().getFeatureLevel();
} else {
targetApiLevel = 0;
}
populateApiLevels(targetApiLevel, ourHighestInstalledApiTarget, stateStore);
}
AndroidVersion androidVersion = targetItem.myAndroidVersion;
String platformPath = DetailsTypes.getPlatformPath(androidVersion);
// Update build tools: use preview versions with preview platforms, etc
BuildToolInfo buildTool = (target == null) ? null : target.getBuildToolInfo();
if (buildTool == null) {
final AndroidSdkHandler sdkHandler = AndroidSdks.getInstance().tryToChooseSdkHandler();
buildTool = sdkHandler.getLatestBuildTool(new StudioLoggerProgressIndicator(ConfigureAndroidProjectPath.class), false);
}
if (buildTool != null) {
stateStore.put(WizardConstants.BUILD_TOOLS_VERSION_KEY, buildTool.getRevision().toString());
}
// Check to see if this is installed. If not, request that we install it
if (targetItem.myAddon != null) {
// The user selected a non platform SDK (e.g. for Google Glass). Let us install it:
String packagePath = targetItem.myAddon.getPath();
stateStore.listPush(INSTALL_REQUESTS_KEY, packagePath);
myInstallRequests.add(packagePath);
// We also need the platform if not already installed:
AndroidTargetManager targetManager = AndroidSdks.getInstance().tryToChooseSdkHandler().getAndroidTargetManager(REPO_LOG);
if (targetManager.getTargetFromHashString(AndroidTargetHash.getPlatformHashString(androidVersion), REPO_LOG) == null) {
stateStore.listPush(INSTALL_REQUESTS_KEY, platformPath);
myInstallRequests.add(platformPath);
}
// The selected minVersion should also be the buildApi:
populateApiLevels(targetItem.myApiLevel, null, stateStore);
} else if (target == null) {
// unlikely, so this logic can wait for a followup CL.
if (ourHighestInstalledApiTarget == null || (androidVersion.getApiLevel() > ourHighestInstalledApiTarget.getVersion().getApiLevel() && !ourInstalledVersions.contains(androidVersion))) {
// Let us install the HIGHEST_KNOWN_STABLE_API.
platformPath = DetailsTypes.getPlatformPath(new AndroidVersion(SdkVersionInfo.HIGHEST_KNOWN_STABLE_API, null));
stateStore.listPush(INSTALL_REQUESTS_KEY, platformPath);
myInstallRequests.add(platformPath);
// HIGHEST_KNOWN_STABLE_API would also be the highest sdkVersion after this install, so specify buildApi again here:
populateApiLevels(SdkVersionInfo.HIGHEST_KNOWN_STABLE_API, null, stateStore);
}
}
PropertiesComponent.getInstance().setValue(getPropertiesComponentMinSdkKey(myFormFactor), targetItem.getData());
// Check Java language level; should be 7 for L; eventually this will be automatically defaulted by the Android Gradle plugin
// instead: https://code.google.com/p/android/issues/detail?id=76252
String javaVersion = null;
if (ourHighestInstalledApiTarget != null && ourHighestInstalledApiTarget.getVersion().getFeatureLevel() >= 21) {
AndroidSdkData sdkData = AndroidSdks.getInstance().tryToChooseAndroidSdk();
if (sdkData != null) {
JavaSdk jdk = JavaSdk.getInstance();
Sdk sdk = ProjectJdkTable.getInstance().findMostRecentSdkOfType(jdk);
if (sdk != null) {
JavaSdkVersion version = jdk.getVersion(sdk);
if (version != null && version.isAtLeast(JavaSdkVersion.JDK_1_7)) {
javaVersion = JavaSdkVersion.JDK_1_7.getDescription();
}
}
}
}
stateStore.put(FormFactorUtils.getLanguageLevelKey(myFormFactor), javaVersion);
}
}
use of com.android.sdklib.repository.AndroidSdkHandler in project android by JetBrains.
the class IdeSdks method getAndroidNdkPath.
@Nullable
public File getAndroidNdkPath() {
AndroidSdkHandler sdkHandler = myAndroidSdks.tryToChooseSdkHandler();
LocalPackage ndk = sdkHandler.getLocalPackage(SdkConstants.FD_NDK, new StudioLoggerProgressIndicator(IdeSdks.class));
return ndk == null ? null : ndk.getLocation();
}
use of com.android.sdklib.repository.AndroidSdkHandler in project android by JetBrains.
the class AndroidSdkUtils method isGlassInstalled.
public static boolean isGlassInstalled() {
StudioLoggerProgressIndicator progress = new StudioLoggerProgressIndicator(AndroidSdkUtils.class);
AndroidSdkHandler handler = AndroidSdks.getInstance().tryToChooseSdkHandler();
Collection<IAndroidTarget> targets = handler.getAndroidTargetManager(progress).getTargets(progress);
for (IAndroidTarget target : targets) {
if (!target.isPlatform() && target.getName().startsWith("Glass Development Kit")) {
return true;
}
}
return false;
}
Aggregations