您的位置:首页 > 其它

user,debug,userdebug版本

2015-08-28 17:35 288 查看
eng
This is the default flavor. A plain "[code]make" is the same as "
make eng
".
droid
is an alias for
eng
.

Installs modules tagged with:
eng
,
debug
,
user
, and/or
development
.
Installs non-APK modules that have no tags specified.
Installs APKs according to the product definition files, in addition to tagged APKs.
ro.secure=0

ro.debuggable=1

ro.kernel.android.checkjni=1

adb
is enabled by default.

user
"[code]make user"
This is the flavor intended to be the final release bits.

Installs modules tagged with
user
.
Installs non-APK modules that have no tags specified.
Installs APKs according to the product definition files; tags are ignored for APK modules.
ro.secure=1

ro.debuggable=0

adb
is disabled by default.

userdebug
"[code]make userdebug"
The same as
user
, except:

Also installs modules tagged with
debug
.
ro.debuggable=1

adb
is enabled by default.

build/core/build-system.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: