Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 1.99 KB

keystore.md

File metadata and controls

40 lines (36 loc) · 1.99 KB

/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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. */ {namespace keystore} /***/ {template .soyweb} {call buck.page} {param title: 'keystore()' /} {param navid: 'rule_keystore' /} {param prettify: true /} {param description} A rule that is used to define the important data for a key pair created by the keytool executable. {/param} {param content} {call buck.rule} {param status: 'FROZEN' /} {param overview} A keystore() contains the data for a key pair created by the keytool executable that comes with the JDK. This is a required input for an {call buck.android_binary /} rule. {/param} {param args} {call buck.name_arg /} {call buck.arg} {param name: 'store' /} {param desc} The path to the file that contains the key. This is the path that was passed as the -keystore argument when you ran keytool. {/param} {/call} {call buck.arg} {param name: 'properties' /} {param desc} The path to the .properties file that contains the following values: {literal}

# The value that you passed as the argument to -alias
# when you ran keytool.
key.alias=my_alias

# The value that you entered in response to
# the "Enter keystore password:" prompt.
key.store.password=store_password

# The value that you entered in response to
# the "Enter key password for <my_alias>" prompt.
key.alias.password=alias_password

{/literal} {/param} {/call} {/param} // close args {/call} // close buck.rule {/param} {/call} {/template}