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

com.jayway.maven.plugins.android.Sign Maven / Gradle / Ivy

/*
 * Copyright (C) 2009 Jayway AB
 *
 * 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.jayway.maven.plugins.android;

/**
 * Configuration for signing. Only receives config parameter values, and there is no logic in here. Logic is in
 * {@link AndroidSigner}.
 *
 * @author [email protected]
 */
public class Sign {

    /**
     * Whether to sign with the debug keystore. Valid values are:
     * 
    *
  • true = sign with the debug keystore. *
  • false = don't sign with the debug keystore. *
  • auto (default) = sign with debug keystore, unless another keystore is defined. (Signing with * other keystores is not yet implemented. See * Issue 2.) *
* * @parameter expression="${android.sign.debug}" default-value="auto" */ private String debug; public String getDebug() { return debug; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy