diff options
author | fluxi <linflux@arcor.de> | 2016-10-29 21:45:27 +0100 |
---|---|---|
committer | Davide Garberi <dade.garberi@gmail.com> | 2018-10-07 15:22:49 +0200 |
commit | 0945b3d5e10dfc4ac20ef9d677316e458ec1bdca (patch) | |
tree | d91a5bab99fe98781ef57a368342483ce44a90ab /pocketmode/AndroidManifest.xml | |
parent | 49ccf360945d119b2dd5595a8280f0667551ad71 (diff) |
msm8996-common: Add pocketmode app
Change-Id: I71e47d5f203adb7e28d37447e19a8041a1d02840
msm8996-common: PocketMode: Apply LineageOS rebrand
Change-Id: I1de627062f56bd125f430033e8bb7aad8fe48f69
msm8996-common: pocketmode: Bump sdk version
Change-Id: Ic521e380868bdc886e15c6a8a472564a98dbc094
msm8996-common: PocketMode: Explicitly include Android support libs
* Fixes non-jack build
Change-Id: I9d8346193577c7be218e12efb20f52ca9946eb14
msm8996-common: PocketMode: Properly depend on Lineage SDK
* This is actually the proper library to include
(only spotted while buidling with Jack disabled,
because app compilation was failing).
Change-Id: Ib61f93704c6411a4cb1f91d9e8693a1775934037
msm8996-common: PocketMode: Remove useless cast
Change-Id: I655b0b80ccafdaae422a2464d2b8409f70be0e8c
msm8996-common: Adapt to Zuk
Change-Id: I9050faac37de0a8392b31fed5c3562d4553c546f
msm8996-common: Set LOCAL_SDK_VERSION where possible.
This change sets LOCAL_SDK_VERSION for all packages where
this is possible without breaking the build, and
LOCAL_PRIVATE_PLATFORM_APIS := true otherwise.
Setting one of these two will be made required soon, and this
is a change in preparation for that. Not setting LOCAL_SDK_VERSION
makes the app implicitly depend on the bootclasspath, which is
often not required. This change effectively makes depending on
private apis opt-in rather than opt-out.
Test: make relevant packages
Bug: 73535841
Change-Id: Ic906adbd670c4dbfe2cdf0b71cdbeaf9ac08a27e
msm8996-common: sepolicy: Address a fingerprint denial
Change-Id: I07c75d58357f7eea2dcc68ed80dacbab76bb30f5
Signed-off-by: Davide Garberi <dade.garberi@gmail.com>
Diffstat (limited to 'pocketmode/AndroidManifest.xml')
-rw-r--r-- | pocketmode/AndroidManifest.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/pocketmode/AndroidManifest.xml b/pocketmode/AndroidManifest.xml new file mode 100644 index 0000000..e462eb2 --- /dev/null +++ b/pocketmode/AndroidManifest.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" + package="org.lineageos.pocketmode" + android:versionCode="1" + android:versionName="1.1" + android:sharedUserId="android.uid.system"> + + <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> + + <uses-sdk + android:minSdkVersion="27" + android:targetSdkVersion="27"/> + + <application + android:label="ZukPocketMode" + android:persistent="true"> + + <receiver android:name="org.lineageos.pocketmode.BootCompletedReceiver"> + <intent-filter> + <action android:name="android.intent.action.BOOT_COMPLETED" /> + <category android:name="android.intent.category.DEFAULT" /> + </intent-filter> + </receiver> + + <service android:name="org.lineageos.pocketmode.PocketModeService" + android:permission="ZukPocketModeService"> + </service> + + <activity android:name="PocketMode" + android:label="PocketMode" + android:excludeFromRecents="true" + android:launchMode="singleInstance" + android:screenOrientation="portrait" + android:windowAnimationStyle="@null"> + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + </intent-filter> + </activity> + + </application> +</manifest> |