如何读取 build.gradle 中 local.properties 中定义的属性
- 作者: 连云新司机
- 来源: 51数据库
- 2022-10-26
问题描述
我在local.properties中设置了sdk.dir和ndk.dir.
如何读取build.gradle文件中sdk.dir和ndk.dir中定义的值?
How do I read the values defined in sdk.dir and ndk.dir in the build.gradle file?
推荐答案
你可以这样做:
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
def sdkDir = properties.getProperty('sdk.dir')
def ndkDir = properties.getProperty('ndk.dir')
如果您正在读取子项目 build.gradle 中的属性文件,请使用 project.rootProject:
Use project.rootProject if you are reading the properties file in a sub-project build.gradle:
. ├── app │?? ├── build.gradle <-- You are reading the local.properties in this gradle build file │?? └── src ├── build.gradle ├── gradle ├── gradlew ├── gradlew.bat ├── settings.gradle └── local.properties
如果属性文件在同一个子项目目录中,您可以只使用 project.
In case the properties file is in the same sub-project directory you can use just project.
推荐阅读
热点文章
检查拆分键盘
0
带有“上一个"的工具栏和“下一个"用于键盘输入AccessoryView
0
Activity 启动时显示软键盘
0
UIWebView 键盘 - 摆脱“上一个/下一个/完成"酒吧
0
在 iOS7 中边缘滑动时,使键盘与 UIView 同步动画
0
我的 iOS 应用程序中的键盘在 iPhone 6 上太高了.如何在 XCode 中调整键盘的分辨率?
0
android:inputType="textEmailAddress";- '@' 键和 '.com' 键?
0
禁用 iPhone 中键盘的方向
0
Android 2.3 模拟器上的印地语键盘问题
0
keyDown 没有被调用
0
