com.jayway.maven.plugins.android.AndroidSigner 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;
/**
* Can sign Android applications (apk's).
*
* @author [email protected]
*/
public class AndroidSigner {
public enum Debug {TRUE, FALSE, BOTH, AUTO}
;
private final Debug debug;
public AndroidSigner(String debug) {
if (debug == null) {
throw new IllegalArgumentException("android.sign.debug must be 'true', 'false', 'both' or 'auto'.");
}
try {
this.debug = Debug.valueOf(debug.toUpperCase());
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException("android.sign.debug must be 'true', 'false', 'both' or 'auto'.", e);
}
}
public AndroidSigner(Debug debug) {
this.debug = debug;
}
public boolean isSignWithDebugKeyStore() {
if (debug == Debug.TRUE) {
return true;
}
if (debug == Debug.BOTH) {
return true;
}
if (debug == Debug.FALSE) {
return false;
}
if (debug == Debug.AUTO) {
//TODO: This is where to add logic for skipping debug sign if there are other keystores configured.
return true;
}
throw new IllegalStateException("Could not determine whether to sign with debug keystore.");
}
public boolean shouldCreateBothSignedAndUnsignedApk() {
return debug == Debug.BOTH;
}
}