web-dev-qa-db-ja.com

LOCAL_MODULE_TAGSの用途は何ですか?

新しいパッケージをビルドするためにパッケージ内のAndroid.mkファイルを更新したいのですが、LOCAL_MODULE_TAGSの目的がわかりません。

LOCAL_MODULE_TAGSは何をしますか?

27
Bhaumik Shukla




補正:
ユーザータグの使用は推奨されなくなりました。
代わりに、

Add "LOCAL_MODULE_TAGS := optional"
Then add "LOCAL_MODULE" value to PRODUCT_PACKAGES section of product makefile.

元の投稿:

LOCAL_MODULE_TAGSは、このモジュールをインストールするビルドフレーバーを定義します。
モジュールを(user、userdebug、eng)のすべてにインストールする場合は、「user」タグを付けます。

あなたは完全なドキュメントを見つけることができます ここ

eng     This is the default flavor. A plain make is the same as make 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    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   make userdebug

The same as user, except:

* Also installs modules tagged with debug.
* ro.debuggable=1
* adb is enabled by default. 
33
JonA