博客
关于我
android 在lunch选项中添加项目名
阅读量:793 次
发布时间:2019-03-25

本文共 575 字,大约阅读时间需要 1 分钟。

在alps\device\mediateksample\project-name\AndroidProducts.mk中添加你的项目名aaa,便于后续配置。

你将看到以下设置:

full_aaaa_101-engfull_aaaa_101-userdebugfull_aaaa_101-user

如果需要过滤这些选项,可以在envsetup.sh文件中进行如下修改:

@@ -577,6 +577,11 @@ function print_lunch_menu()         if [[ $choice == vnd_* ]]; then             continue         fi@@ -631,6 +636,14 @@ function lunch()         fi++        if [[ $product == vnd_* ]]; then+            echo+            echo "Invalid lunch combo: KTE filter out $selection"+            return 1+        fi+     if [ -z "$product" ]      then

请确保在项目路径中正确配置这些脚本文件,以便顺利构建项目。

转载地址:http://mfguk.baihongyu.com/

你可能感兴趣的文章
PAT1093 Count PAT's (25)(逻辑题)
查看>>
PATA1038题解(需复习)
查看>>
Patching Array
查看>>
Spring源码学习(二):Spring容器之prepareContext和BeanFactoryPostProcessor的介绍
查看>>
PatchMatchStereo可能会需要的Rectification
查看>>
Path does not chain with any of the trust anchors
查看>>
Path形状获取字符串型变量数据
查看>>
PAT甲级——1001 A+B Format (20分)
查看>>
Skywalking原理
查看>>
PAT甲级——1006 Sign In and Sign Out (25分)
查看>>
PAT甲级——1007 Maximum Subsequence Sum (25分)
查看>>
PAT甲级——1009 Product of Polynomials (25分)(最后一个测试点段错误)
查看>>
Spring对jdbc的支持
查看>>
vagrant 的安装
查看>>
PayPal网站付款标准版(for PHP)
查看>>
Paystack Android SDK 集成与使用指南
查看>>
pbf格式详解,javascript加载导出pbf文件示例
查看>>
PBOC2.0与3.0的区别
查看>>
PbootCMS entrance.php SQL注入漏洞复现
查看>>
PbootCMS 前台RCE漏洞复现
查看>>