All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.android.tools.lint.checks.HardcodedDebugModeDetector Maven / Gradle / Ivy

Go to download

A packaging of the IntelliJ Community Edition lint-checks library. This is release number 1 of trunk branch 142.

The newest version!
/*
 * 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.android.tools.lint.checks;

import static com.android.SdkConstants.ANDROID_MANIFEST_XML;
import static com.android.SdkConstants.ANDROID_URI;
import static com.android.SdkConstants.ATTR_DEBUGGABLE;

import com.android.annotations.NonNull;
import com.android.tools.lint.detector.api.Category;
import com.android.tools.lint.detector.api.Context;
import com.android.tools.lint.detector.api.Detector;
import com.android.tools.lint.detector.api.Implementation;
import com.android.tools.lint.detector.api.Issue;
import com.android.tools.lint.detector.api.Scope;
import com.android.tools.lint.detector.api.Severity;
import com.android.tools.lint.detector.api.Speed;
import com.android.tools.lint.detector.api.XmlContext;

import org.w3c.dom.Attr;

import java.io.File;
import java.util.Collection;
import java.util.Collections;

/**
 * Checks for hardcoded debug mode in manifest files
 */
public class HardcodedDebugModeDetector extends Detector implements Detector.XmlScanner {

    /** The main issue discovered by this detector */
    public static final Issue ISSUE = Issue.create(
            "HardcodedDebugMode", //$NON-NLS-1$
            "Hardcoded value of `android:debuggable` in the manifest",

            "It's best to leave out the `android:debuggable` attribute from the manifest. " +
            "If you do, then the tools will automatically insert `android:debuggable=true` when " +
            "building an APK to debug on an emulator or device. And when you perform a " +
            "release build, such as Exporting APK, it will automatically set it to `false`.\n" +
            "\n" +
            "If on the other hand you specify a specific value in the manifest file, then " +
            "the tools will always use it. This can lead to accidentally publishing " +
            "your app with debug information.",

            Category.SECURITY,
            5,
            Severity.FATAL,
            new Implementation(
                    HardcodedDebugModeDetector.class,
                    Scope.MANIFEST_SCOPE));

    /** Constructs a new {@link HardcodedDebugModeDetector} check */
    public HardcodedDebugModeDetector() {
    }

    @NonNull
    @Override
    public Speed getSpeed() {
        return Speed.FAST;
    }

    @Override
    public boolean appliesTo(@NonNull Context context, @NonNull File file) {
        return file.getName().equals(ANDROID_MANIFEST_XML);
    }

    // ---- Implements Detector.XmlScanner ----

    @Override
    public Collection getApplicableAttributes() {
        return Collections.singleton(ATTR_DEBUGGABLE);
    }

    @Override
    public void visitAttribute(@NonNull XmlContext context, @NonNull Attr attribute) {
        if (attribute.getNamespaceURI().equals(ANDROID_URI)) {
        //if (attribute.getOwnerElement().getTagName().equals(TAG_APPLICATION)) {
            context.report(ISSUE, attribute, context.getLocation(attribute),
                    "Avoid hardcoding the debug mode; leaving it out allows debug and " +
                    "release builds to automatically assign one");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy