OSDN Git Service

Avoid NPE
[android-x86/packages-apps-Eleven.git] / AndroidManifest.xml
index ec82ea2..e52f9f9 100644 (file)
@@ -1,5 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- Copyright (C) 2012 Andrew Neal
+     Copyright (C) 2014 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.
      limitations under the License.
  -->
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="com.andrew.apollo"
-    android:versionCode="2"
-    android:versionName="1.1" >
+    package="com.cyanogenmod.eleven"
+    android:versionCode="3"
+    android:versionName="3.0" >
 
-    <!-- ICS to Jelly Bean -->
     <uses-sdk
-        android:minSdkVersion="14"
-        android:targetSdkVersion="17" />
+        android:minSdkVersion="24"
+        android:targetSdkVersion="24" />
 
     <!-- Used for caching and creating new playlists -->
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <!-- Used to create launcher shortcuts -->
     <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
     <!-- Used to check if the app is in the background -->
-    <uses-permission android:name="android.permission.GET_TASKS" />
+    <uses-permission android:name="android.permission.REAL_GET_TASKS" />
+    <!-- Allows Eleven to read from External Storage -->
+    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
+
+    <!-- Audio Visualizer Permissions -->
+    <uses-permission android:name="android.permission.RECORD_AUDIO" />
+    <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
+
+    <!-- Accelerometer feature for shake to play -->
+    <uses-feature android:name="android.hardware.sensor.accelerometer" />
 
     <application
-        android:name=".ApolloApplication"
+        android:name="com.cyanogenmod.eleven.ElevenApplication"
         android:allowBackup="true"
         android:allowTaskReparenting="true"
         android:hardwareAccelerated="@bool/config_hardwareAccelerated"
-        android:icon="@drawable/ic_launcher"
+        android:icon="@mipmap/ic_launcher_eleven"
         android:label="@string/app_name"
         android:largeHeap="@bool/config_largeHeap"
-        android:taskAffinity="com.andrew.apollo.task" >
+        android:taskAffinity="com.cyanogenmod.eleven.task"
+        android:theme="@style/Eleven.Theme">
 
         <!-- Searchable -->
         <meta-data
             android:value=".ui.activities.SearchActivity" />
         <!-- Main activity -->
         <activity
-            android:name=".ui.activities.HomeActivity"
-            android:windowSoftInputMode="adjustPan" >
+            android:name="com.cyanogenmod.eleven.ui.activities.HomeActivity"
+            android:windowSoftInputMode="adjustPan"
+            android:launchMode="singleTop"
+            android:exported="true"
+            android:theme="@style/Eleven.Theme.ActionBar.Overlay">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <action android:name="android.intent.action.MUSIC_PLAYER" />
                 <category android:name="android.intent.category.APP_MUSIC" />
                 <category android:name="android.intent.category.DEFAULT" />
             </intent-filter>
+            <intent-filter>
+                <action android:name="android.intent.action.VIEW" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+
+                <data android:mimeType="vnd.android.cursor.dir/playlist" />
+                <data android:mimeType="vnd.android.cursor.dir/albums" />
+                <data android:mimeType="vnd.android.cursor.dir/artists" />
+            </intent-filter>
+            <intent-filter>
+                <action android:name="com.cyanogenmod.eleven.AUDIO_PLAYER" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
         </activity>
-        <!-- Now playing -->
+
+        <!-- Search interface -->
         <activity
-            android:name=".ui.activities.AudioPlayerActivity"
-            android:clearTaskOnLaunch="true"
+            android:name="com.cyanogenmod.eleven.ui.activities.SearchActivity"
+            android:windowSoftInputMode="adjustResize"
             android:exported="true"
+            android:theme="@style/Eleven.Theme">
+            <intent-filter>
+                <action android:name="android.intent.action.SEARCH" />
+                <action android:name="android.intent.action.MEDIA_SEARCH" />
+
+                <category android:name="android.intent.category.DEFAULT" />
+            </intent-filter>
+
+            <meta-data
+                android:name="android.app.searchable"
+                android:resource="@xml/searchable" />
+        </activity>
+        <!-- Used to set options -->
+        <activity
+            android:name="com.cyanogenmod.eleven.ui.activities.SettingsActivity"
+            android:label="@string/menu_settings"/>
+        <!-- Audio Preview -->
+        <activity
+            android:name=".ui.activities.preview.AudioPreviewActivity"
             android:launchMode="singleTask"
-            android:windowSoftInputMode="adjustPan" >
+            android:excludeFromRecents="true"
+            android:taskAffinity=""
+            android:theme="@style/Theme.AudioPreview">
             <intent-filter>
                 <action android:name="android.intent.action.VIEW" />
 
                 <category android:name="android.intent.category.DEFAULT" />
 
                 <data android:scheme="content" />
-                <data android:host="media" />
                 <data android:mimeType="audio/*" />
                 <data android:mimeType="application/ogg" />
                 <data android:mimeType="application/x-ogg" />
                 <data android:mimeType="application/x-ogg" />
                 <data android:mimeType="application/itunes" />
             </intent-filter>
-            <intent-filter>
-                <action android:name="android.intent.action.VIEW" />
-
-                <category android:name="android.intent.category.DEFAULT" />
-
-                <data android:mimeType="vnd.android.cursor.dir/playlist" />
-            </intent-filter>
-            <intent-filter>
-                <action android:name="com.andrew.apollo.AUDIO_PLAYER" />
-
-                <category android:name="android.intent.category.DEFAULT" />
-            </intent-filter>
-        </activity>
-
-        <!-- Profile phone Activity -->
-        <activity
-            android:name=".ui.activities.ProfileActivity"
-            android:excludeFromRecents="true" />
-        <!-- Shortcut launcher Activity -->
-        <activity
-            android:name=".ui.activities.ShortcutActivity"
-            android:excludeFromRecents="true"
-            android:exported="true"
-            android:theme="@style/Theme.Transparent" >
-            <intent-filter>
-                <action android:name="android.media.action.MEDIA_PLAY_FROM_SEARCH" />
-
-                <category android:name="android.intent.category.DEFAULT" />
-            </intent-filter>
-        </activity>
-        <!-- Search interface -->
-        <activity
-            android:name=".ui.activities.SearchActivity"
-            android:exported="true" >
-            <intent-filter>
-                <action android:name="android.intent.action.SEARCH" />
-                <action android:name="android.intent.action.MEDIA_SEARCH" />
-
-                <category android:name="android.intent.category.DEFAULT" />
-            </intent-filter>
-
-            <meta-data
-                android:name="android.app.searchable"
-                android:resource="@xml/searchable" />
         </activity>
-        <!-- Used to set options -->
-        <activity
-            android:name=".ui.activities.SettingsActivity"
-            android:label="@string/menu_settings"
-            android:theme="@style/Apollo.Theme.Dark" />
-        <!-- Themes Activity -->
-        <activity
-            android:name=".ui.activities.ThemesActivity"
-            android:excludeFromRecents="true" />
         <!-- 4x1 App Widget -->
         <receiver
-            android:name="com.andrew.apollo.appwidgets.AppWidgetSmall"
+            android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetSmall"
             android:exported="false"
             android:label="@string/app_widget_small" >
             <intent-filter>
         </receiver>
         <!-- 4x2  App Widget -->
         <receiver
-            android:name="com.andrew.apollo.appwidgets.AppWidgetLarge"
+            android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLarge"
             android:exported="false"
             android:label="@string/app_widget_large" >
             <intent-filter>
         </receiver>
         <!-- 4x2 alternate App Widget -->
         <receiver
-            android:name="com.andrew.apollo.appwidgets.AppWidgetLargeAlternate"
+            android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLargeAlternate"
             android:exported="false"
             android:label="@string/app_widget_large_alt" >
             <intent-filter>
                 android:name="android.appwidget.provider"
                 android:resource="@xml/app_widget_large_alternate" />
         </receiver>
-        <!-- Resizable recently listened App Widget -->
-        <receiver
-            android:name="com.andrew.apollo.appwidgets.RecentWidgetProvider"
-            android:exported="false"
-            android:label="@string/app_widget_recent" >
-            <intent-filter>
-                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
-            </intent-filter>
-            <!-- This specifies the widget provider info -->
-            <meta-data
-                android:name="android.appwidget.provider"
-                android:resource="@xml/app_widget_recents" />
-        </receiver>
-        <!-- The service serving the RemoteViews to the recently listened App Widget -->
-        <service
-            android:name="com.andrew.apollo.appwidgets.RecentWidgetService"
-            android:permission="android.permission.BIND_REMOTEVIEWS" />
         <!-- Media button receiver -->
-        <receiver android:name=".MediaButtonIntentReceiver" >
+        <receiver android:name="com.cyanogenmod.eleven.MediaButtonIntentReceiver" >
             <intent-filter>
                 <action android:name="android.intent.action.MEDIA_BUTTON" />
                 <action android:name="android.media.AUDIO_BECOMING_NOISY" />
             </intent-filter>
         </receiver>
+        <!-- Used to recalculate sorting of songs based on the user's locale -->
+        <receiver android:name=".locale.LocaleChangeReceiver">
+            <intent-filter>
+                <action android:name="android.intent.action.LOCALE_CHANGED"/>
+            </intent-filter>
+        </receiver>
         <!-- Music service -->
         <service
-            android:name=".MusicPlaybackService"
+            android:name="com.cyanogenmod.eleven.MusicPlaybackService"
             android:label="@string/app_name"
             android:process=":main" />
     </application>