summaryrefslogtreecommitdiffstats
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAdnan Begovic <adnan@cyngn.com>2016-05-05 02:01:57 -0700
committerAdnan Begovic <adnan@cyngn.com>2016-05-05 02:01:57 -0700
commit8194502f0dd19e0199955322f2ad26dc4989c911 (patch)
tree59196e6530e4772a7af5ee428673bc05eb329c7e /app/src/main/AndroidManifest.xml
downloadandroid_packages_apps_YahooWeatherProvider-8194502f0dd19e0199955322f2ad26dc4989c911.tar.gz
android_packages_apps_YahooWeatherProvider-8194502f0dd19e0199955322f2ad26dc4989c911.tar.bz2
android_packages_apps_YahooWeatherProvider-8194502f0dd19e0199955322f2ad26dc4989c911.zip
YahooCM: Initial checkin.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..48b4540
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 The CyanogenMod 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.
+-->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.cyanogenmod.yahooweatherprovider">
+
+ <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
+ <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
+ <uses-permission android:name="android.permission.INTERNET" />
+
+ <uses-permission android:name="cyanogenmod.permission.ACCESS_WEATHER_MANAGER" />
+
+ <uses-feature android:name="org.cyanogenmod.weather" android:required="true" />
+
+ <application
+ android:name=".YahooCMWeatherApplication"
+ android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:supportsRtl="true"
+ android:theme="@style/AppTheme">
+
+ <service android:name=".YahooWeatherProviderService"
+ android:permission="cyanogenmod.permission.BIND_WEATHER_PROVIDER_SERVICE">
+ <intent-filter>
+ <action android:name="cyanogenmod.weatherservice.WeatherProviderService" />
+ </intent-filter>
+ </service>
+
+ </application>
+
+</manifest>