replicant-vendor_cmsdk/samples/externalviews/keyguardviewprovider/AndroidManifest.xml
d34d 10da08aa5e cmsdk: correct naming of THIRD_PARTY_KEYGUARD perm
Change-Id: If2d062a90db340f8415d12897b16667fc834a848
TICKET: CYNGNOS-1705
2016-04-13 12:21:24 -07:00

40 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 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.samples.keyguardextview"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="23" />
<!-- Required permission for third party keyguard components -->
<uses-permission android:name="cyanogenmod.permission.THIRD_PARTY_KEYGUARD" />
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<service android:name=".SampleKeyguardProviderService"
android:exported="true">
<intent-filter>
<action android:name="cyanogenmod.externalviews.KeyguardExternalViewProviderService" />
</intent-filter>
<meta-data
android:name="cyanogenmod.externalviews.keyguard"
android:resource="@xml/mylockscreen" />
</service>
<activity android:name=".Settings" />
</application>
</manifest>