summaryrefslogtreecommitdiff
path: root/src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java')
-rw-r--r--src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java110
1 files changed, 110 insertions, 0 deletions
diff --git a/src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java b/src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java
new file mode 100644
index 0000000..7ae3d1b
--- /dev/null
+++ b/src/plugins/preflighting.checkers.ui/src/com/motorolamobility/preflighting/checkers/ui/MissingMinSdkQuickFix.java
@@ -0,0 +1,110 @@
+/*
+* Copyright (C) 2012 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.motorolamobility.preflighting.checkers.ui;
+
+import java.io.File;
+
+import org.eclipse.core.resources.IMarker;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.swt.graphics.Image;
+import org.eclipse.ui.IMarkerResolution2;
+
+import com.motorola.studio.android.common.utilities.AndroidUtils;
+import com.motorola.studio.android.common.utilities.EclipseUtils;
+import com.motorola.studio.android.manifest.AndroidProjectManifestFile;
+import com.motorola.studio.android.model.manifest.AndroidManifestFile;
+import com.motorola.studio.android.model.manifest.dom.ManifestNode;
+import com.motorola.studio.android.model.manifest.dom.UsesSDKNode;
+import com.motorolamobility.preflighting.checkers.ui.i18n.CheckersUiNLS;
+
+/**
+ * This class implements the fix for Android Market filter - Missing minSdk condition.
+ * The fix consists in adding <uses-sdk android:minSdkVersion="targetDeclaredOnproject.properties"/> to AndroidManifest.xml.
+ */
+public class MissingMinSdkQuickFix implements IMarkerResolution2
+{
+ private static final String ANDROID_PREFIX = "android-";
+
+ /* (non-Javadoc)
+ * @see org.eclipse.ui.IMarkerResolution#getLabel()
+ */
+ public String getLabel()
+ {
+ return CheckersUiNLS.MissingMinSdkQuickFix_Label;
+ }
+
+ /**
+ * Adds android:minSdkVersion="targetDeclaredOnproject.properties" for the uses-sdk in AndroidManifest.xml.
+ *
+ * @param marker
+ *
+ * @see org.eclipse.ui.IMarkerResolution#run(org.eclipse.core.resources.IMarker)
+ */
+ public void run(IMarker marker)
+ {
+ try
+ {
+ //get the AndroidManifest file
+ IProject project = marker.getResource().getProject();
+ AndroidManifestFile manifestFile = AndroidProjectManifestFile.getFromProject(project);
+ ManifestNode manifestNode = manifestFile.getManifestNode();
+
+ File projectAPITargetFile =
+ AndroidUtils.getAndroidTargetPathForProject(project.getLocation().toFile());
+ String projectTargetAPI = projectAPITargetFile.getName();
+
+ UsesSDKNode usesSDKNode = manifestNode.getUsesSdkNode();
+ if (usesSDKNode == null)
+ {
+ //element uses-sdk does not exist - add the entire element with minSdkVersion attribute
+ usesSDKNode = new UsesSDKNode();
+ manifestNode.addUsesSdkNode(usesSDKNode);
+ }
+ //in both cases (if element uses-sdk exists or not) - add minSdkVersion attribute
+ if (projectTargetAPI.contains(ANDROID_PREFIX))
+ {
+ projectTargetAPI = projectTargetAPI.replace(ANDROID_PREFIX, "");
+ }
+ usesSDKNode.setMinSdkVersion(projectTargetAPI);
+
+ //save the project with the new/updated uses-sdk element
+ AndroidProjectManifestFile.saveToProject(project, manifestFile, true);
+
+ marker.delete();
+ }
+ catch (Exception e)
+ {
+ EclipseUtils.showErrorDialog(CheckersUiNLS.QuickFix_MarkerResolutionFailed,
+ CheckersUiNLS.QuickFix_CouldNotFixTheProblem + e.getMessage());
+ }
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.ui.IMarkerResolution2#getDescription()
+ */
+ public String getDescription()
+ {
+ return CheckersUiNLS.MissingMinSdkQuickFix_Description;
+ }
+
+ /* (non-Javadoc)
+ * @see org.eclipse.ui.IMarkerResolution2#getImage()
+ */
+ public Image getImage()
+ {
+ return null;
+ }
+}