diff options
author | Alin Jerpelea <jerpelea@gmail.com> | 2013-01-16 08:00:53 +0200 |
---|---|---|
committer | Alin Jerpelea <jerpelea@gmail.com> | 2013-01-21 18:26:59 +0200 |
commit | 73f454cc0790e782ffdd361768482a2b38570084 (patch) | |
tree | 2550d436682b4dd6e9348f5aff79fd8bff2215b3 | |
parent | 5d0e1286329f39347d8a3de0610522444c9cf93c (diff) | |
download | frameworks_native-73f454cc0790e782ffdd361768482a2b38570084.zip frameworks_native-73f454cc0790e782ffdd361768482a2b38570084.tar.gz frameworks_native-73f454cc0790e782ffdd361768482a2b38570084.tar.bz2 |
FM Radio: Add support for FM Radio in Android
moved permissions to frameworks/native
Change-Id: I27ded70f7bc116a1b1c9cff2383c4899afe746ec
-rw-r--r-- | data/etc/com.stericsson.hardware.fm.receiver.xml | 20 | ||||
-rw-r--r-- | data/etc/com.stericsson.hardware.fm.transmitter.xml | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/data/etc/com.stericsson.hardware.fm.receiver.xml b/data/etc/com.stericsson.hardware.fm.receiver.xml new file mode 100644 index 0000000..13092fa --- /dev/null +++ b/data/etc/com.stericsson.hardware.fm.receiver.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This is the standard feature indicating that the device includes FM receiver. --> +<permissions> + <feature name="com.stericsson.hardware.fm.receiver" /> +</permissions> diff --git a/data/etc/com.stericsson.hardware.fm.transmitter.xml b/data/etc/com.stericsson.hardware.fm.transmitter.xml new file mode 100644 index 0000000..9b51c03 --- /dev/null +++ b/data/etc/com.stericsson.hardware.fm.transmitter.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2009 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<!-- This is the standard feature indicating that the device includes FM transmitter. --> +<permissions> + <feature name="com.stericsson.hardware.fm.transmitter" /> +</permissions> |