Android 1.6 で追加されたパーミッション(Permissions)は、以下のとおりです。
- android.permission.CHANGE_WIFI_MULTICAST_STATE
Allows applications to enter Wi-Fi Multicast mode.
"Wi-Fiマルチキャストの受信を許可する"
"端末を直接の宛先とはしていないパケットの受信をアプリケーションに許可します。近隣で提供中のサービスを検出したい場合に便利です。マルチキャスト以外のモードよりも電力を消費します。"
- android.permission.GLOBAL_SEARCH
Allows the global search system to access the data of a specified content provider.
- android.permission.INSTALL_LOCATION_PROVIDER
Allows an application to install a location provider into the Location Manager
"位置情報提供元のインストールを許可する"
"テスト用に仮の位置情報を作成します。これにより悪意のあるアプリケーションが、GPSやネットワークプロバイダなどから返される本当の位置情報や状況を改ざんしたり、端末の現在地を監視して外部に報告したりする恐れがあります。"
- com.android.browser.permission.READ_HISTORY_BOOKMARKS
Allows an application to read (but not write) the user's browsing history and bookmarks.
"ブラウザの履歴とブックマークを読み取る"
"ブラウザでアクセスしたすべてのURLおよびブラウザのすべてのブックマークの読み取りをアプリケーションに許可します。"
- com.android.browser.permission.WRITE_HISTORY_BOOKMARKS
Allows an application to write (but not read) the user's browsing history and bookmarks.
"ブラウザの履歴とブックマークを書き込む"
"携帯電話に保存されているブラウザの履歴やブックマークの修正をアプリケーショに許可します。これにより悪意のあるアプリケーションが、ブラウザのデータを消去または変更する恐れがあります。"
- android.permission.WRITE_EXTERNAL_STORAGE
Allows an application to write to external storage. Applications using API Level 3 and lower will be implicitly granted this permission (and this will be visible to the user); Applications using API Level 4 or higher must explicitly request this permission.
上記の日本語文字列は、以下のリンク先(GitWeb)から引用しました。
GLOBAL_SEARCH と WRITE_EXTERNAL_STORAGE が、なぜか発見できず。。。
そのままの意味だからいいかな。。。^^;
