android studio properties文件,Android local.properties配置文件的使用

local.properties文件在Android Studio中是用来配置SDK目录的,也可以在文件中配置一些本地化的变量。这个文件不会被提交到版本控制中。

为了安全起见签名文件不可以放在项目中,那么可能每个开发人员的存放地方不同,这种情况下就可以使用local.properties来配置路径然后在app目录下的build.gradle中引用。

## This file is automatically generated by Android Studio.

# Do not modify this file -- YOUR CHANGES WILL BE ERASED!

#

# This file must *NOT* be checked into Version Control Systems,

# as it contains information specific to your local configuration.

#

# Location of the SDK. This is only used by Gradle.

# For customization when using a Version Control System, please read the

# header note.

#Mon Nov 06 14:20:07 CST 2017

sdk.dir=/Users/baiduo/Library/Android/sdk

#配置keystore文件路径

RELEASE_STORE_FILE=/Users/baiduo/Desktop/Lottery

在build.gradle中引用:

signingConfigs {

autoSigning {

#加载properties

def properties = new Properties()

def inputStream = project.rootProject.file('local.properties').newDataInputStream()

properties.load( inputStream )

keyAlias 'IKicker'

keyPassword '*******'

storeFile file(properties.getProperty('RELEASE_STORE_FILE'))

storePassword '*******'

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值