HomeSort by relevance Sort by last modified time
    Searched defs:sdk (Results 26 - 44 of 44) sorted by null

12

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 25 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
63 /** The build target SDK */
96 /** The minimum SDK version to use with the project (may be null or blank) */
98 /** True if the minimum SDK version has been manually edited by the user */
101 * A list of paths to each of the available samples for the current SDK.
194 * Extract information (package name, application name, minimum SDK etc) from
294 * Try to find an SDK Target that matches the current MinSdkVersion.
296 * There can be multiple targets with the same sdk api version, so don't change
306 Sdk sdk = Sdk.getCurrent() local
351 Sdk sdk = Sdk.getCurrent(); local
    [all...]
SdkSelectionPage.java 20 import com.android.ide.common.sdk.LoadStatus;
24 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
25 import com.android.ide.eclipse.adt.internal.sdk.Sdk.ITargetChangeListener;
55 /** A page in the New Project wizard where you select the target SDK */
116 setDescription("Choose an SDK to select a sample from");
118 setDescription("Choose an SDK to target");
144 * Called when an SDK target is modified.
146 * Also changes the minSdkVersion field to reflect the sdk api level that ha
214 Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/
AttributeInfoTest.java 294 "SDK git repository", sdkPath);
295 File sdk = new File(sdkPath); local
296 assertNotNull("$ADT_SDK_SOURCE_PATH (" + sdk.getPath() + ") is not a directory",
297 sdk.isDirectory());
298 File git = sdk.getParentFile();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 24 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
25 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
26 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
146 * Installs the Android Support library into the SDK extras/ folder. If a minimum
161 final Sdk sdk = Sdk.getCurrent(); local
162 if (sdk == null) {
165 "Error: Android SDK is not loaded yet."); //$NON-NLS-1
224 final Sdk sdk = Sdk.getCurrent(); local
297 final Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderService.java 53 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
54 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
162 Sdk sdk = Sdk.getCurrent(); local
163 if (sdk != null) {
164 AndroidTargetData targetData = sdk.getTargetData(target);
305 * application bar etc depending on the SDK target and theme. The default is true.
RenderPreview.java 54 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
55 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
530 Sdk sdk = Sdk.getCurrent(); local
531 if (sdk != null) {
532 data = sdk.getTargetData(target);
620 Sdk sdk = Sdk.getCurrent() local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmulatorConfigTab.java 26 import com.android.ide.eclipse.adt.internal.sdk.AdtConsoleSdkLog;
27 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
155 // SDK can be null if the user opens the dialog before ADT finished
156 // initializing the SDK itself. In this case just don't reload anything
158 Sdk sdk = Sdk.getCurrent(); local
159 if (sdk != null) {
160 AvdManager avdMan = sdk.getAvdManager()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 17 package com.android.ide.eclipse.adt.internal.sdk;
58 * Parser for the platform data in an SDK.
84 * @return True if the SDK path was valid and parsing has been attempted.
89 String.format("Parsing SDK %1$s", mAndroidTarget.getName()),
297 Sdk.getCurrent().setTargetData(mAndroidTarget, targetData);
301 AdtPlugin.logAndPrintError(e, TAG, "SDK parser failed"); //$NON-NLS-1$
302 AdtPlugin.printToConsole("SDK parser failed", e.getMessage());
303 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, "SDK parser failed", e);
308 * Preloads all "interesting" classes from the framework SDK jar.
312 * @param classLoader The framework SDK jar classloade
    [all...]
ProjectState.java 17 package com.android.ide.eclipse.adt.internal.sdk;
169 * out to other classes (especially those protected by {@link Sdk#getLock()}.)
274 * should be followed by a call to {@link Sdk#loadTarget(ProjectState)}.
Sdk.java 17 package com.android.ide.eclipse.adt.internal.sdk;
28 import com.android.ide.common.sdk.LoadStatus;
41 import com.android.ide.eclipse.adt.internal.sdk.ProjectState.LibraryDifference;
42 import com.android.ide.eclipse.adt.internal.sdk.ProjectState.LibraryState;
103 * Central point to load, manipulate and deal with the Android SDK. Only one SDK can be used
106 * To start using an SDK, call {@link #loadSdk(String)} which returns the instance of
107 * the Sdk object.
109 * To get the list of platforms or add-ons present in the SDK, call {@link #getTargets()}.
111 public final class Sdk {
    [all...]
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java 28 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
484 IAndroidTarget target = Sdk.getCurrent().getTarget(mProject);
546 // Define PROGUARD_HOME to point to $SDK/tools/proguard if it's not yet defined.
551 envMap.put("PROGUARD_HOME", Sdk.getCurrent().getSdkLocation() + //$NON-NLS-1$
703 Sdk sdk = Sdk.getCurrent(); local
704 DexWrapper wrapper = sdk.getDexWrapper(mBuildToolInfo);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 68 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
69 import com.android.ide.eclipse.adt.internal.sdk.ProjectState;
70 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
197 // in the SDK data directory (path found via
426 File sdkLocation = new File(Sdk.getCurrent().getSdkLocation());
778 Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationMatcher.java 37 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
486 Sdk sdk = Sdk.getCurrent(); local
487 if (sdk != null) {
488 IAndroidTarget projectTarget = sdk.getTarget(mEditedFile.getProject());
540 Sdk current = Sdk.getCurrent();
    [all...]
ConfigurationChooser.java 48 import com.android.ide.common.sdk.LoadStatus;
63 import com.android.ide.eclipse.adt.internal.sdk.AndroidTargetData;
64 import com.android.ide.eclipse.adt.internal.sdk.Sdk;
124 /** Serialized state to use when initializing the configuration after the SDK is loaded */
175 /** Whether the SDK has changed since the last model reload; if so we must reload targets */
467 final Sdk sdk = Sdk.getCurrent(); local
468 if (sdk != null)
868 final Sdk sdk = Sdk.getCurrent(); local
1369 final Sdk sdk = Sdk.getCurrent(); local
    [all...]
  /prebuilts/devtools/tools/lib/
uiautomatorviewer.jar 
sdk-common.jar 
ant-tasks.jar 
lint-checks.jar 

Completed in 1113 milliseconds

12