OSDN Git Service

Automatic translation import
[android-x86/packages-apps-Eleven.git] / AndroidManifest.xml
index e198b99..8faba5b 100644 (file)
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.cyanogenmod.eleven"
     android:versionCode="2"
-    android:versionName="1.1" >
+    android:versionName="2.0" >
 
-    <!-- ICS to Jelly Bean -->
     <uses-sdk
-        android:minSdkVersion="17"
-        android:targetSdkVersion="20" />
+        android:minSdkVersion="21"
+        android:targetSdkVersion="21" />
 
     <!-- Used for caching and creating new playlists -->
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <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" />
-    <!-- Allows Apollo to read from External Storage -->
+    <!-- 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="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.cyanogenmod.eleven.task"
@@ -70,7 +72,6 @@
             android:windowSoftInputMode="adjustPan"
             android:launchMode="singleTop"
             android:exported="true"
-            android:screenOrientation="portrait"
             android:theme="@style/Eleven.Theme.ActionBar.Overlay">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
 
                 <category android:name="android.intent.category.DEFAULT" />
             </intent-filter>
-            <intent-filter>
-                <action android:name="android.intent.action.PICK" />
-                <category android:name="android.intent.category.DEFAULT" />
-                <category android:name="android.intent.category.OPENABLE" />
-                <data android:mimeType="vnd.android.cursor.dir/audio"/>
-            </intent-filter>
         </activity>
 
         <!-- Search interface -->
             android:name="com.cyanogenmod.eleven.ui.activities.SearchActivity"
             android:windowSoftInputMode="adjustResize"
             android:exported="true"
-            android:theme="@style/Theme.ActionBarIcon"
-            android:screenOrientation="portrait">
+            android:theme="@style/Eleven.Theme">
             <intent-filter>
                 <action android:name="android.intent.action.SEARCH" />
                 <action android:name="android.intent.action.MEDIA_SEARCH" />
         <!-- Used to set options -->
         <activity
             android:name="com.cyanogenmod.eleven.ui.activities.SettingsActivity"
-            android:label="@string/menu_settings"
-            android:screenOrientation="portrait"/>
+            android:label="@string/menu_settings"/>
         <!-- 4x1 App Widget -->
         <receiver
             android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetSmall"
                 <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="com.cyanogenmod.eleven.MusicPlaybackService"