am a399a681: Add support for add-on based on preview of platforms.

Merge commit 'a399a681d50d820fe530bf7521fa2d95fe0ca998'

* commit 'a399a681d50d820fe530bf7521fa2d95fe0ca998':
  Add support for add-on based on preview of platforms.
This commit is contained in:
Xavier Ducrohet
2009-07-23 13:29:46 -07:00
committed by Android Git Automerger
15 changed files with 156 additions and 114 deletions

View File

@@ -22,6 +22,7 @@ import com.android.sdklib.SdkManager;
import com.android.sdklib.IAndroidTarget.IOptionalLibrary; import com.android.sdklib.IAndroidTarget.IOptionalLibrary;
import com.android.sdklib.internal.project.ProjectProperties; import com.android.sdklib.internal.project.ProjectProperties;
import com.android.sdklib.xml.AndroidXPathFactory; import com.android.sdklib.xml.AndroidXPathFactory;
import com.android.sdklib.xml.ManifestConstants;
import org.apache.tools.ant.BuildException; import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;
@@ -225,8 +226,10 @@ public final class SetupTask extends ImportTask {
XPath xPath = AndroidXPathFactory.newXPath(); XPath xPath = AndroidXPathFactory.newXPath();
String value = xPath.evaluate("/manifest/uses-sdk/@" + String value = xPath.evaluate("/" + ManifestConstants.NODE_MANIFEST +"/" +
AndroidXPathFactory.DEFAULT_NS_PREFIX + ":minSdkVersion", ManifestConstants.NODE_USES_SDK + "/@" +
AndroidXPathFactory.DEFAULT_NS_PREFIX + ":" +
ManifestConstants.ATTRIBUTE_MIN_SDK_VERSION,
new InputSource(new FileInputStream(manifest))); new InputSource(new FileInputStream(manifest)));
if (codename.equals(value) == false) { if (codename.equals(value) == false) {

View File

@@ -1,6 +1,7 @@
0.9.2: 0.9.2:
- New wizard to create Android JUnit Test Projects. - New wizard to create Android JUnit Test Projects.
- New AVD wizard.
- SDK Updater
0.9.1: 0.9.1:
- Added an AVD creation wizard to ADT. It is automatically displayed during a launch if no compatible AVDs are found. - Added an AVD creation wizard to ADT. It is automatically displayed during a launch if no compatible AVDs are found.

View File

@@ -97,8 +97,11 @@ Export-Package: com.android.ide.eclipse.adt;x-friends:="com.android.ide.eclipse.
com.android.sdklib.internal.project;x-friends:="com.android.ide.eclipse.tests", com.android.sdklib.internal.project;x-friends:="com.android.ide.eclipse.tests",
com.android.sdklib.internal.repository;x-friends:="com.android.ide.eclipse.tests", com.android.sdklib.internal.repository;x-friends:="com.android.ide.eclipse.tests",
com.android.sdklib.repository;x-friends:="com.android.ide.eclipse.tests", com.android.sdklib.repository;x-friends:="com.android.ide.eclipse.tests",
com.android.sdklib.xml;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkstats;x-friends:="com.android.ide.eclipse.tests", com.android.sdkstats;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkuilib.internal.repository;x-friends:="com.android.ide.eclipse.tests", com.android.sdkuilib.internal.repository;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkuilib.internal.repository.icons;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkuilib.internal.tasks;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkuilib.internal.widgets;x-friends:="com.android.ide.eclipse.tests", com.android.sdkuilib.internal.widgets;x-friends:="com.android.ide.eclipse.tests",
com.android.sdkuilib.repository;x-friends:="com.android.ide.eclipse.tests" com.android.sdkuilib.repository;x-friends:="com.android.ide.eclipse.tests"

View File

@@ -27,6 +27,7 @@ import com.android.ide.eclipse.adt.internal.sdk.Sdk;
import com.android.sdklib.AndroidVersion; import com.android.sdklib.AndroidVersion;
import com.android.sdklib.IAndroidTarget; import com.android.sdklib.IAndroidTarget;
import com.android.sdklib.SdkConstants; import com.android.sdklib.SdkConstants;
import com.android.sdklib.xml.ManifestConstants;
import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFile;
@@ -332,7 +333,7 @@ public class PreCompilerBuilder extends BaseBuilder {
// integer minSdk when the target is a preview => fatal error // integer minSdk when the target is a preview => fatal error
String msg = String.format( String msg = String.format(
"Platform %1$s is a preview and requires appication manifests to set %2$s to '%3$s'", "Platform %1$s is a preview and requires appication manifests to set %2$s to '%3$s'",
codename, AndroidManifestParser.ATTRIBUTE_MIN_SDK_VERSION, codename, ManifestConstants.ATTRIBUTE_MIN_SDK_VERSION,
codename); codename);
AdtPlugin.printErrorToConsole(project, msg); AdtPlugin.printErrorToConsole(project, msg);
BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg, BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg,
@@ -355,7 +356,7 @@ public class PreCompilerBuilder extends BaseBuilder {
// platform is not a preview => fatal error // platform is not a preview => fatal error
String msg = String.format( String msg = String.format(
"Manifest attribute '%1$s' is set to '%2$s'. Integer is expected.", "Manifest attribute '%1$s' is set to '%2$s'. Integer is expected.",
AndroidManifestParser.ATTRIBUTE_MIN_SDK_VERSION, codename); ManifestConstants.ATTRIBUTE_MIN_SDK_VERSION, codename);
AdtPlugin.printErrorToConsole(project, msg); AdtPlugin.printErrorToConsole(project, msg);
BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg, BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg,
IMarker.SEVERITY_ERROR); IMarker.SEVERITY_ERROR);
@@ -364,7 +365,7 @@ public class PreCompilerBuilder extends BaseBuilder {
// platform and manifest codenames don't match => fatal error. // platform and manifest codenames don't match => fatal error.
String msg = String.format( String msg = String.format(
"Value of manifest attribute '%1$s' does not match platform codename '%2$s'", "Value of manifest attribute '%1$s' does not match platform codename '%2$s'",
AndroidManifestParser.ATTRIBUTE_MIN_SDK_VERSION, codename); ManifestConstants.ATTRIBUTE_MIN_SDK_VERSION, codename);
AdtPlugin.printErrorToConsole(project, msg); AdtPlugin.printErrorToConsole(project, msg);
BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg, BaseProjectHelper.addMarker(manifest, AdtConstants.MARKER_ADT, msg,
IMarker.SEVERITY_ERROR); IMarker.SEVERITY_ERROR);

View File

@@ -20,6 +20,7 @@ import com.android.ide.eclipse.adt.AdtPlugin;
import com.android.ide.eclipse.adt.AndroidConstants; import com.android.ide.eclipse.adt.AndroidConstants;
import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener; import com.android.ide.eclipse.adt.internal.project.XmlErrorHandler.XmlErrorListener;
import com.android.sdklib.SdkConstants; import com.android.sdklib.SdkConstants;
import com.android.sdklib.xml.ManifestConstants;
import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IMarker; import org.eclipse.core.resources.IMarker;
@@ -47,26 +48,6 @@ import javax.xml.parsers.SAXParserFactory;
public class AndroidManifestParser { public class AndroidManifestParser {
private final static String ATTRIBUTE_PACKAGE = "package"; //$NON-NLS-1$
private final static String ATTRIBUTE_NAME = "name"; //$NON-NLS-1$
private final static String ATTRIBUTE_PROCESS = "process"; //$NON-NLS-$
private final static String ATTRIBUTE_DEBUGGABLE = "debuggable"; //$NON-NLS-$
public final static String ATTRIBUTE_MIN_SDK_VERSION = "minSdkVersion"; //$NON-NLS-$
private final static String ATTRIBUTE_TARGET_PACKAGE = "targetPackage"; //$NON-NLS-1$
private final static String ATTRIBUTE_EXPORTED = "exported"; //$NON-NLS-1$
private final static String NODE_MANIFEST = "manifest"; //$NON-NLS-1$
private final static String NODE_APPLICATION = "application"; //$NON-NLS-1$
private final static String NODE_ACTIVITY = "activity"; //$NON-NLS-1$
private final static String NODE_SERVICE = "service"; //$NON-NLS-1$
private final static String NODE_RECEIVER = "receiver"; //$NON-NLS-1$
private final static String NODE_PROVIDER = "provider"; //$NON-NLS-1$
private final static String NODE_INTENT = "intent-filter"; //$NON-NLS-1$
private final static String NODE_ACTION = "action"; //$NON-NLS-1$
private final static String NODE_CATEGORY = "category"; //$NON-NLS-1$
private final static String NODE_USES_SDK = "uses-sdk"; //$NON-NLS-1$
private final static String NODE_INSTRUMENTATION = "instrumentation"; //$NON-NLS-1$
private final static String NODE_USES_LIBRARY = "uses-library"; //$NON-NLS-1$
private final static int LEVEL_MANIFEST = 0; private final static int LEVEL_MANIFEST = 0;
private final static int LEVEL_APPLICATION = 1; private final static int LEVEL_APPLICATION = 1;
private final static int LEVEL_ACTIVITY = 2; private final static int LEVEL_ACTIVITY = 2;
@@ -304,50 +285,55 @@ public class AndroidManifestParser {
String value; String value;
switch (mValidLevel) { switch (mValidLevel) {
case LEVEL_MANIFEST: case LEVEL_MANIFEST:
if (NODE_MANIFEST.equals(localName)) { if (ManifestConstants.NODE_MANIFEST.equals(localName)) {
// lets get the package name. // lets get the package name.
mPackage = getAttributeValue(attributes, ATTRIBUTE_PACKAGE, mPackage = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_PACKAGE,
false /* hasNamespace */); false /* hasNamespace */);
mValidLevel++; mValidLevel++;
} }
break; break;
case LEVEL_APPLICATION: case LEVEL_APPLICATION:
if (NODE_APPLICATION.equals(localName)) { if (ManifestConstants.NODE_APPLICATION.equals(localName)) {
value = getAttributeValue(attributes, ATTRIBUTE_PROCESS, value = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_PROCESS,
true /* hasNamespace */); true /* hasNamespace */);
if (value != null) { if (value != null) {
addProcessName(value); addProcessName(value);
} }
value = getAttributeValue(attributes, ATTRIBUTE_DEBUGGABLE, value = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_DEBUGGABLE,
true /* hasNamespace*/); true /* hasNamespace*/);
if (value != null) { if (value != null) {
mDebuggable = Boolean.parseBoolean(value); mDebuggable = Boolean.parseBoolean(value);
} }
mValidLevel++; mValidLevel++;
} else if (NODE_USES_SDK.equals(localName)) { } else if (ManifestConstants.NODE_USES_SDK.equals(localName)) {
mApiLevelRequirement = getAttributeValue(attributes, mApiLevelRequirement = getAttributeValue(attributes,
ATTRIBUTE_MIN_SDK_VERSION, true /* hasNamespace */); ManifestConstants.ATTRIBUTE_MIN_SDK_VERSION,
} else if (NODE_INSTRUMENTATION.equals(localName)) { true /* hasNamespace */);
} else if (ManifestConstants.NODE_INSTRUMENTATION.equals(localName)) {
processInstrumentationNode(attributes); processInstrumentationNode(attributes);
} }
break; break;
case LEVEL_ACTIVITY: case LEVEL_ACTIVITY:
if (NODE_ACTIVITY.equals(localName)) { if (ManifestConstants.NODE_ACTIVITY.equals(localName)) {
processActivityNode(attributes); processActivityNode(attributes);
mValidLevel++; mValidLevel++;
} else if (NODE_SERVICE.equals(localName)) { } else if (ManifestConstants.NODE_SERVICE.equals(localName)) {
processNode(attributes, AndroidConstants.CLASS_SERVICE); processNode(attributes, AndroidConstants.CLASS_SERVICE);
mValidLevel++; mValidLevel++;
} else if (NODE_RECEIVER.equals(localName)) { } else if (ManifestConstants.NODE_RECEIVER.equals(localName)) {
processNode(attributes, AndroidConstants.CLASS_BROADCASTRECEIVER); processNode(attributes, AndroidConstants.CLASS_BROADCASTRECEIVER);
mValidLevel++; mValidLevel++;
} else if (NODE_PROVIDER.equals(localName)) { } else if (ManifestConstants.NODE_PROVIDER.equals(localName)) {
processNode(attributes, AndroidConstants.CLASS_CONTENTPROVIDER); processNode(attributes, AndroidConstants.CLASS_CONTENTPROVIDER);
mValidLevel++; mValidLevel++;
} else if (NODE_USES_LIBRARY.equals(localName)) { } else if (ManifestConstants.NODE_USES_LIBRARY.equals(localName)) {
value = getAttributeValue(attributes, ATTRIBUTE_NAME, value = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (value != null) { if (value != null) {
mLibraries.add(value); mLibraries.add(value);
@@ -356,24 +342,27 @@ public class AndroidManifestParser {
break; break;
case LEVEL_INTENT_FILTER: case LEVEL_INTENT_FILTER:
// only process this level if we are in an activity // only process this level if we are in an activity
if (mCurrentActivity != null && NODE_INTENT.equals(localName)) { if (mCurrentActivity != null &&
ManifestConstants.NODE_INTENT.equals(localName)) {
mCurrentActivity.resetIntentFilter(); mCurrentActivity.resetIntentFilter();
mValidLevel++; mValidLevel++;
} }
break; break;
case LEVEL_CATEGORY: case LEVEL_CATEGORY:
if (mCurrentActivity != null) { if (mCurrentActivity != null) {
if (NODE_ACTION.equals(localName)) { if (ManifestConstants.NODE_ACTION.equals(localName)) {
// get the name attribute // get the name attribute
String action = getAttributeValue(attributes, ATTRIBUTE_NAME, String action = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (action != null) { if (action != null) {
mCurrentActivity.setHasAction(true); mCurrentActivity.setHasAction(true);
mCurrentActivity.setHasMainAction( mCurrentActivity.setHasMainAction(
ACTION_MAIN.equals(action)); ACTION_MAIN.equals(action));
} }
} else if (NODE_CATEGORY.equals(localName)) { } else if (ManifestConstants.NODE_CATEGORY.equals(localName)) {
String category = getAttributeValue(attributes, ATTRIBUTE_NAME, String category = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (CATEGORY_LAUNCHER.equals(category)) { if (CATEGORY_LAUNCHER.equals(category)) {
mCurrentActivity.setHasLauncherCategory(true); mCurrentActivity.setHasLauncherCategory(true);
@@ -473,13 +462,14 @@ public class AndroidManifestParser {
*/ */
private void processActivityNode(Attributes attributes) { private void processActivityNode(Attributes attributes) {
// lets get the activity name, and add it to the list // lets get the activity name, and add it to the list
String activityName = getAttributeValue(attributes, ATTRIBUTE_NAME, String activityName = getAttributeValue(attributes, ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (activityName != null) { if (activityName != null) {
activityName = combinePackageAndClassName(mPackage, activityName); activityName = combinePackageAndClassName(mPackage, activityName);
// get the exported flag. // get the exported flag.
String exportedStr = getAttributeValue(attributes, ATTRIBUTE_EXPORTED, true); String exportedStr = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_EXPORTED, true);
boolean exported = exportedStr == null || boolean exported = exportedStr == null ||
exportedStr.toLowerCase().equals("true"); // $NON-NLS-1$ exportedStr.toLowerCase().equals("true"); // $NON-NLS-1$
mCurrentActivity = new Activity(activityName, exported); mCurrentActivity = new Activity(activityName, exported);
@@ -495,7 +485,7 @@ public class AndroidManifestParser {
mCurrentActivity = null; mCurrentActivity = null;
} }
String processName = getAttributeValue(attributes, ATTRIBUTE_PROCESS, String processName = getAttributeValue(attributes, ManifestConstants.ATTRIBUTE_PROCESS,
true /* hasNamespace */); true /* hasNamespace */);
if (processName != null) { if (processName != null) {
addProcessName(processName); addProcessName(processName);
@@ -510,7 +500,7 @@ public class AndroidManifestParser {
*/ */
private void processNode(Attributes attributes, String superClassName) { private void processNode(Attributes attributes, String superClassName) {
// lets get the class name, and check it if required. // lets get the class name, and check it if required.
String serviceName = getAttributeValue(attributes, ATTRIBUTE_NAME, String serviceName = getAttributeValue(attributes, ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (serviceName != null) { if (serviceName != null) {
serviceName = combinePackageAndClassName(mPackage, serviceName); serviceName = combinePackageAndClassName(mPackage, serviceName);
@@ -520,7 +510,7 @@ public class AndroidManifestParser {
} }
} }
String processName = getAttributeValue(attributes, ATTRIBUTE_PROCESS, String processName = getAttributeValue(attributes, ManifestConstants.ATTRIBUTE_PROCESS,
true /* hasNamespace */); true /* hasNamespace */);
if (processName != null) { if (processName != null) {
addProcessName(processName); addProcessName(processName);
@@ -534,11 +524,13 @@ public class AndroidManifestParser {
*/ */
private void processInstrumentationNode(Attributes attributes) { private void processInstrumentationNode(Attributes attributes) {
// lets get the class name, and check it if required. // lets get the class name, and check it if required.
String instrumentationName = getAttributeValue(attributes, ATTRIBUTE_NAME, String instrumentationName = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_NAME,
true /* hasNamespace */); true /* hasNamespace */);
if (instrumentationName != null) { if (instrumentationName != null) {
String instrClassName = combinePackageAndClassName(mPackage, instrumentationName); String instrClassName = combinePackageAndClassName(mPackage, instrumentationName);
String targetPackage = getAttributeValue(attributes, ATTRIBUTE_TARGET_PACKAGE, String targetPackage = getAttributeValue(attributes,
ManifestConstants.ATTRIBUTE_TARGET_PACKAGE,
true /* hasNamespace */); true /* hasNamespace */);
mInstrumentations.add(new Instrumentation(instrClassName, targetPackage)); mInstrumentations.add(new Instrumentation(instrClassName, targetPackage));
if (mMarkErrors) { if (mMarkErrors) {

View File

@@ -1,4 +1,4 @@
# begin plugin.prop # begin plugin.prop
plugin.version=0.9.0 plugin.version=0.9.1
plugin.platform=android plugin.platform=android
# end plugin.prop # end plugin.prop

View File

@@ -425,7 +425,7 @@ class Main {
if (target.getDescription() != null) { if (target.getDescription() != null) {
mSdkLog.printf(" Description: %s\n", target.getDescription()); mSdkLog.printf(" Description: %s\n", target.getDescription());
} }
mSdkLog.printf(" Based on Android %s (API level %d)\n", mSdkLog.printf(" Based on Android %s (API level %s)\n",
target.getVersionName(), target.getVersion().getApiString()); target.getVersionName(), target.getVersion().getApiString());
// display the optional libraries. // display the optional libraries.

View File

@@ -32,7 +32,7 @@ final class AddOnTarget implements IAndroidTarget {
* String to compute hash for add-on targets. * String to compute hash for add-on targets.
* Format is vendor:name:apiVersion * Format is vendor:name:apiVersion
* */ * */
private final static String ADD_ON_FORMAT = "%s:%s:%d"; //$NON-NLS-1$ private final static String ADD_ON_FORMAT = "%s:%s:%s"; //$NON-NLS-1$
private final static class OptionalLibrary implements IOptionalLibrary { private final static class OptionalLibrary implements IOptionalLibrary {
private final String mJarName; private final String mJarName;
@@ -218,25 +218,20 @@ final class AddOnTarget implements IAndroidTarget {
return true; return true;
} }
// if the receiver has no optional library, then anything with api version number >= to // if the receiver has optional libraries, then the target is only compatible if the
// the receiver is compatible. // vendor and name are the same
if (mLibraries.length == 0) { if (mLibraries.length != 0 &&
return target.getVersion().getApiLevel() >= getVersion().getApiLevel(); (mVendor.equals(target.getVendor()) == false ||
} mName.equals(target.getName()) == false)) {
// Otherwise, target is only compatible if the vendor and name are equals with the api
// number greater or equal (ie target is a newer version of this add-on).
if (target.isPlatform() == false) {
return (mVendor.equals(target.getVendor()) && mName.equals(target.getName()) &&
target.getVersion().getApiLevel() >= getVersion().getApiLevel());
}
return false; return false;
} }
return mBasePlatform.equals(target);
}
public String hashString() { public String hashString() {
return String.format(ADD_ON_FORMAT, mVendor, mName, return String.format(ADD_ON_FORMAT, mVendor, mName,
mBasePlatform.getVersion().getApiLevel()); mBasePlatform.getVersion().getApiString());
} }
@Override @Override
@@ -250,10 +245,10 @@ final class AddOnTarget implements IAndroidTarget {
AddOnTarget addon = (AddOnTarget)obj; AddOnTarget addon = (AddOnTarget)obj;
return mVendor.equals(addon.mVendor) && mName.equals(addon.mName) && return mVendor.equals(addon.mVendor) && mName.equals(addon.mName) &&
mBasePlatform.getVersion().getApiLevel() == addon.mBasePlatform.getVersion().getApiLevel(); mBasePlatform.getVersion().equals(addon.mBasePlatform.getVersion());
} }
return super.equals(obj); return false;
} }
/* /*
@@ -267,17 +262,25 @@ final class AddOnTarget implements IAndroidTarget {
return +1; return +1;
} }
// vendor // compare vendor
int value = mVendor.compareTo(target.getVendor()); int value = mVendor.compareTo(target.getVendor());
// name // if same vendor, compare name
if (value == 0) { if (value == 0) {
value = mName.compareTo(target.getName()); value = mName.compareTo(target.getName());
} }
// api version // if same vendor/name, compare version
if (value == 0) { if (value == 0) {
value = getVersion().getApiLevel() - target.getVersion().getApiLevel(); if (getVersion().isPreview() == true) {
value = target.getVersion().isPreview() == true ?
getVersion().getApiString().compareTo(target.getVersion().getApiString()) :
+1; // put the preview at the end.
} else {
value = target.getVersion().isPreview() == true ?
-1 : // put the preview at the end :
getVersion().getApiLevel() - target.getVersion().getApiLevel();
}
} }
return value; return value;

View File

@@ -172,12 +172,17 @@ public class AndroidVersion {
} }
} else if (obj instanceof String) { } else if (obj instanceof String) {
// if we have a code name, this must match.
if (mCodename != null) {
return mCodename.equals((String)obj);
}
// else we try to convert to a int and compare to the api level
try { try {
int value = Integer.parseInt((String)obj); int value = Integer.parseInt((String)obj);
return value == mApiLevel; return value == mApiLevel;
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
// not a number? compare to the code name // not a number? we'll return false below.
return obj.equals(mCodename);
} }
} }

View File

@@ -26,8 +26,7 @@ import java.util.Map;
*/ */
final class PlatformTarget implements IAndroidTarget { final class PlatformTarget implements IAndroidTarget {
/** String used to get a hash to the platform target */ /** String used to get a hash to the platform target */
private final static String PLATFORM_HASH_API_LEVEL = "android-%d"; private final static String PLATFORM_HASH = "android-%s";
private final static String PLATFORM_HASH_CODENAME = "android-%s";
private final static String PLATFORM_VENDOR = "Android Open Source Project"; private final static String PLATFORM_VENDOR = "Android Open Source Project";
@@ -199,9 +198,9 @@ final class PlatformTarget implements IAndroidTarget {
} }
// if the platform has a codename (ie it's a preview of an upcoming platform), then // if the platform has a codename (ie it's a preview of an upcoming platform), then
// both platform must be exactly identical. // both platforms must be exactly identical.
if (mVersion.getCodename() != null) { if (mVersion.getCodename() != null) {
return equals(target); return mVersion.equals(target.getVersion());
} }
// target is compatible wit the receiver as long as its api version number is greater or // target is compatible wit the receiver as long as its api version number is greater or
@@ -210,11 +209,7 @@ final class PlatformTarget implements IAndroidTarget {
} }
public String hashString() { public String hashString() {
if (mVersion.getCodename() != null) { return String.format(PLATFORM_HASH, mVersion.getApiString());
return String.format(PLATFORM_HASH_CODENAME, mVersion.getCodename());
}
return String.format(PLATFORM_HASH_API_LEVEL, mVersion.getApiLevel());
} }
@Override @Override

View File

@@ -448,31 +448,20 @@ public final class SdkManager {
displayAddonManifestError(log, addon.getName(), ADDON_API); displayAddonManifestError(log, addon.getName(), ADDON_API);
return null; return null;
} else { } else {
try { // Look for a platform that has a matching api level or codename.
int apiValue = Integer.parseInt(api);
for (IAndroidTarget target : targetList) { for (IAndroidTarget target : targetList) {
if (target.isPlatform() && target.getVersion().equals(apiValue)) { if (target.isPlatform() && target.getVersion().equals(api)) {
baseTarget = (PlatformTarget)target; baseTarget = (PlatformTarget)target;
break; break;
} }
} }
if (baseTarget == null) { if (baseTarget == null) {
if (log != null) {
log.error(null,
"Ignoring add-on '%1$s': Unable to find base platform with API level %2$d",
addon.getName(), apiValue);
}
return null;
}
} catch (NumberFormatException e) {
// looks like apiNumber does not parse to a number.
// Ignore this add-on. // Ignore this add-on.
if (log != null) { if (log != null) {
log.error(null, log.error(null,
"Ignoring add-on '%1$s': %2$s is not a valid number in %3$s.", "Ignoring add-on '%1$s': Unable to find base platform with API level '%2$s'",
addon.getName(), ADDON_API, SdkConstants.FN_BUILD_PROP); addon.getName(), api);
} }
return null; return null;
} }

View File

@@ -74,10 +74,12 @@ public class AddonPackage extends Package {
super(source, packageNode, licenses); super(source, packageNode, licenses);
mVendor = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_VENDOR); mVendor = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_VENDOR);
mName = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_NAME); mName = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_NAME);
mVersion = new AndroidVersion( int apiLevel = XmlParserUtils.getXmlInt (packageNode, SdkRepository.NODE_API_LEVEL, 0);
XmlParserUtils.getXmlInt (packageNode, SdkRepository.NODE_API_LEVEL, 0), String codeName = XmlParserUtils.getXmlString(packageNode, SdkRepository.NODE_CODENAME);
null); // add-ons on platform previews is not supported, so the codename is always if (codeName.length() == 0) {
// null in this case. codeName = null;
}
mVersion = new AndroidVersion(apiLevel, codeName);
mLibs = parseLibs(XmlParserUtils.getFirstChild(packageNode, SdkRepository.NODE_LIBS)); mLibs = parseLibs(XmlParserUtils.getFirstChild(packageNode, SdkRepository.NODE_LIBS));
} }
@@ -181,10 +183,10 @@ public class AddonPackage extends Package {
/** Returns a short description for an {@link IDescription}. */ /** Returns a short description for an {@link IDescription}. */
@Override @Override
public String getShortDescription() { public String getShortDescription() {
return String.format("%1$s by %2$s for Android API %3$d", return String.format("%1$s by %2$s for Android API %3$s",
getName(), getName(),
getVendor(), getVendor(),
mVersion.getApiLevel()); mVersion.getApiString());
} }
/** Returns a long description for an {@link IDescription}. */ /** Returns a long description for an {@link IDescription}. */
@@ -229,7 +231,8 @@ public class AddonPackage extends Package {
String name = suggestedDir; String name = suggestedDir;
if (suggestedDir == null || suggestedDir.length() == 0) { if (suggestedDir == null || suggestedDir.length() == 0) {
name = String.format("addon-%s-%s-%d", getName(), getVendor(), mVersion.getApiLevel()); //$NON-NLS-1$ name = String.format("addon-%s-%s-%s", getName(), getVendor(), //$NON-NLS-1$
mVersion.getApiString());
name = name.toLowerCase(); name = name.toLowerCase();
name = name.replaceAll("[^a-z0-9_-]+", "_"); //$NON-NLS-1$ //$NON-NLS-2$ name = name.replaceAll("[^a-z0-9_-]+", "_"); //$NON-NLS-1$ //$NON-NLS-2$
name = name.replaceAll("_+", "_"); //$NON-NLS-1$ //$NON-NLS-2$ name = name.replaceAll("_+", "_"); //$NON-NLS-1$ //$NON-NLS-2$
@@ -271,7 +274,7 @@ public class AddonPackage extends Package {
String newId = newPkg.getName() + "+" + newPkg.getVendor(); //$NON-NLS-1$ String newId = newPkg.getName() + "+" + newPkg.getVendor(); //$NON-NLS-1$
return thisId.equalsIgnoreCase(newId) && return thisId.equalsIgnoreCase(newId) &&
mVersion.getApiLevel() == newPkg.getVersion().getApiLevel() && mVersion.equals(newPkg.getVersion()) &&
newPkg.getRevision() > this.getRevision(); newPkg.getRevision() > this.getRevision();
} }
} }

View File

@@ -86,6 +86,8 @@
<xsd:element name="vendor" type="xsd:normalizedString" /> <xsd:element name="vendor" type="xsd:normalizedString" />
<!-- The Android API Level for the add-on. An int > 0. --> <!-- The Android API Level for the add-on. An int > 0. -->
<xsd:element name="api-level" type="xsd:positiveInteger" /> <xsd:element name="api-level" type="xsd:positiveInteger" />
<!-- The optional codename for this add-on, if it's a preview. -->
<xsd:element name="codename" type="xsd:string" minOccurs="0" />
<!-- The revision, an int > 0, incremented each time a new <!-- The revision, an int > 0, incremented each time a new
package is generated. --> package is generated. -->

View File

@@ -0,0 +1,45 @@
/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.sdklib.xml;
/**
* Constants for nodes and attributes of the AndroidManifest.xml file.
*
*/
public final class ManifestConstants {
public final static String NODE_MANIFEST = "manifest"; //$NON-NLS-1$
public final static String NODE_APPLICATION = "application"; //$NON-NLS-1$
public final static String NODE_ACTIVITY = "activity"; //$NON-NLS-1$
public final static String NODE_SERVICE = "service"; //$NON-NLS-1$
public final static String NODE_RECEIVER = "receiver"; //$NON-NLS-1$
public final static String NODE_PROVIDER = "provider"; //$NON-NLS-1$
public final static String NODE_INTENT = "intent-filter"; //$NON-NLS-1$
public final static String NODE_ACTION = "action"; //$NON-NLS-1$
public final static String NODE_CATEGORY = "category"; //$NON-NLS-1$
public final static String NODE_USES_SDK = "uses-sdk"; //$NON-NLS-1$
public final static String NODE_INSTRUMENTATION = "instrumentation"; //$NON-NLS-1$
public final static String NODE_USES_LIBRARY = "uses-library"; //$NON-NLS-1$
public final static String ATTRIBUTE_PACKAGE = "package"; //$NON-NLS-1$
public final static String ATTRIBUTE_NAME = "name"; //$NON-NLS-1$
public final static String ATTRIBUTE_PROCESS = "process"; //$NON-NLS-$
public final static String ATTRIBUTE_DEBUGGABLE = "debuggable"; //$NON-NLS-$
public final static String ATTRIBUTE_MIN_SDK_VERSION = "minSdkVersion"; //$NON-NLS-$
public final static String ATTRIBUTE_TARGET_PACKAGE = "targetPackage"; //$NON-NLS-1$
public final static String ATTRIBUTE_EXPORTED = "exported"; //$NON-NLS-1$
}