Loading Android.mk +1 −1 Original line number Original line Diff line number Diff line Loading @@ -3,7 +3,7 @@ include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := src/com/cyngn/eleven/IElevenService.aidl LOCAL_SRC_FILES := src/com/cyanogenmod/eleven/IElevenService.aidl LOCAL_SRC_FILES += $(call all-java-files-under, src) LOCAL_SRC_FILES += $(call all-java-files-under, src) LOCAL_STATIC_JAVA_LIBRARIES := \ LOCAL_STATIC_JAVA_LIBRARIES := \ Loading AndroidManifest.xml +13 −12 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 Andrew Neal <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading @@ -14,7 +15,7 @@ limitations under the License. limitations under the License. --> --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.cyngn.eleven" package="com.cyanogenmod.eleven" android:versionCode="2" android:versionCode="2" android:versionName="1.1" > android:versionName="1.1" > Loading Loading @@ -49,14 +50,14 @@ <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <application <application android:name=".ElevenApplication" android:name="com.cyanogenmod.eleven.ElevenApplication" android:allowBackup="true" android:allowBackup="true" android:allowTaskReparenting="true" android:allowTaskReparenting="true" android:hardwareAccelerated="@bool/config_hardwareAccelerated" android:hardwareAccelerated="@bool/config_hardwareAccelerated" android:icon="@drawable/ic_launcher" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:label="@string/app_name" android:largeHeap="@bool/config_largeHeap" android:largeHeap="@bool/config_largeHeap" android:taskAffinity="com.cyngn.eleven.task" android:taskAffinity="com.cyanogenmod.eleven.task" android:theme="@style/Eleven.Theme"> android:theme="@style/Eleven.Theme"> <!-- Searchable --> <!-- Searchable --> Loading @@ -65,7 +66,7 @@ android:value=".ui.activities.SearchActivity" /> android:value=".ui.activities.SearchActivity" /> <!-- Main activity --> <!-- Main activity --> <activity <activity android:name=".ui.activities.HomeActivity" android:name="com.cyanogenmod.eleven.ui.activities.HomeActivity" android:windowSoftInputMode="adjustPan" android:windowSoftInputMode="adjustPan" android:launchMode="singleTop" android:launchMode="singleTop" android:exported="true" android:exported="true" Loading Loading @@ -124,7 +125,7 @@ <data android:mimeType="vnd.android.cursor.dir/artists" /> <data android:mimeType="vnd.android.cursor.dir/artists" /> </intent-filter> </intent-filter> <intent-filter> <intent-filter> <action android:name="com.cyngn.eleven.AUDIO_PLAYER" /> <action android:name="com.cyanogenmod.eleven.AUDIO_PLAYER" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </intent-filter> Loading @@ -138,7 +139,7 @@ <!-- Search interface --> <!-- Search interface --> <activity <activity android:name=".ui.activities.SearchActivity" android:name="com.cyanogenmod.eleven.ui.activities.SearchActivity" android:windowSoftInputMode="adjustResize" android:windowSoftInputMode="adjustResize" android:exported="true" android:exported="true" android:theme="@style/Theme.ActionBarIcon" android:theme="@style/Theme.ActionBarIcon" Loading @@ -156,12 +157,12 @@ </activity> </activity> <!-- Used to set options --> <!-- Used to set options --> <activity <activity android:name=".ui.activities.SettingsActivity" android:name="com.cyanogenmod.eleven.ui.activities.SettingsActivity" android:label="@string/menu_settings" android:label="@string/menu_settings" android:screenOrientation="portrait"/> android:screenOrientation="portrait"/> <!-- 4x1 App Widget --> <!-- 4x1 App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetSmall" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetSmall" android:exported="false" android:exported="false" android:label="@string/app_widget_small" > android:label="@string/app_widget_small" > <intent-filter> <intent-filter> Loading @@ -174,7 +175,7 @@ </receiver> </receiver> <!-- 4x2 App Widget --> <!-- 4x2 App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetLarge" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLarge" android:exported="false" android:exported="false" android:label="@string/app_widget_large" > android:label="@string/app_widget_large" > <intent-filter> <intent-filter> Loading @@ -187,7 +188,7 @@ </receiver> </receiver> <!-- 4x2 alternate App Widget --> <!-- 4x2 alternate App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetLargeAlternate" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLargeAlternate" android:exported="false" android:exported="false" android:label="@string/app_widget_large_alt" > android:label="@string/app_widget_large_alt" > <intent-filter> <intent-filter> Loading @@ -199,7 +200,7 @@ android:resource="@xml/app_widget_large_alternate" /> android:resource="@xml/app_widget_large_alternate" /> </receiver> </receiver> <!-- Media button receiver --> <!-- Media button receiver --> <receiver android:name=".MediaButtonIntentReceiver" > <receiver android:name="com.cyanogenmod.eleven.MediaButtonIntentReceiver" > <intent-filter> <intent-filter> <action android:name="android.intent.action.MEDIA_BUTTON" /> <action android:name="android.intent.action.MEDIA_BUTTON" /> <action android:name="android.media.AUDIO_BECOMING_NOISY" /> <action android:name="android.media.AUDIO_BECOMING_NOISY" /> Loading @@ -207,7 +208,7 @@ </receiver> </receiver> <!-- Music service --> <!-- Music service --> <service <service android:name=".MusicPlaybackService" android:name="com.cyanogenmod.eleven.MusicPlaybackService" android:label="@string/app_name" android:label="@string/app_name" android:process=":main" /> android:process=":main" /> </application> </application> Loading res/drawable/action_bar.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading res/drawable/audio_player_pager_container.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading res/drawable/audio_player_seekbar.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading Loading
Android.mk +1 −1 Original line number Original line Diff line number Diff line Loading @@ -3,7 +3,7 @@ include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := src/com/cyngn/eleven/IElevenService.aidl LOCAL_SRC_FILES := src/com/cyanogenmod/eleven/IElevenService.aidl LOCAL_SRC_FILES += $(call all-java-files-under, src) LOCAL_SRC_FILES += $(call all-java-files-under, src) LOCAL_STATIC_JAVA_LIBRARIES := \ LOCAL_STATIC_JAVA_LIBRARIES := \ Loading
AndroidManifest.xml +13 −12 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (C) 2012 Andrew Neal <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading @@ -14,7 +15,7 @@ limitations under the License. limitations under the License. --> --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.cyngn.eleven" package="com.cyanogenmod.eleven" android:versionCode="2" android:versionCode="2" android:versionName="1.1" > android:versionName="1.1" > Loading Loading @@ -49,14 +50,14 @@ <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> <application <application android:name=".ElevenApplication" android:name="com.cyanogenmod.eleven.ElevenApplication" android:allowBackup="true" android:allowBackup="true" android:allowTaskReparenting="true" android:allowTaskReparenting="true" android:hardwareAccelerated="@bool/config_hardwareAccelerated" android:hardwareAccelerated="@bool/config_hardwareAccelerated" android:icon="@drawable/ic_launcher" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:label="@string/app_name" android:largeHeap="@bool/config_largeHeap" android:largeHeap="@bool/config_largeHeap" android:taskAffinity="com.cyngn.eleven.task" android:taskAffinity="com.cyanogenmod.eleven.task" android:theme="@style/Eleven.Theme"> android:theme="@style/Eleven.Theme"> <!-- Searchable --> <!-- Searchable --> Loading @@ -65,7 +66,7 @@ android:value=".ui.activities.SearchActivity" /> android:value=".ui.activities.SearchActivity" /> <!-- Main activity --> <!-- Main activity --> <activity <activity android:name=".ui.activities.HomeActivity" android:name="com.cyanogenmod.eleven.ui.activities.HomeActivity" android:windowSoftInputMode="adjustPan" android:windowSoftInputMode="adjustPan" android:launchMode="singleTop" android:launchMode="singleTop" android:exported="true" android:exported="true" Loading Loading @@ -124,7 +125,7 @@ <data android:mimeType="vnd.android.cursor.dir/artists" /> <data android:mimeType="vnd.android.cursor.dir/artists" /> </intent-filter> </intent-filter> <intent-filter> <intent-filter> <action android:name="com.cyngn.eleven.AUDIO_PLAYER" /> <action android:name="com.cyanogenmod.eleven.AUDIO_PLAYER" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </intent-filter> Loading @@ -138,7 +139,7 @@ <!-- Search interface --> <!-- Search interface --> <activity <activity android:name=".ui.activities.SearchActivity" android:name="com.cyanogenmod.eleven.ui.activities.SearchActivity" android:windowSoftInputMode="adjustResize" android:windowSoftInputMode="adjustResize" android:exported="true" android:exported="true" android:theme="@style/Theme.ActionBarIcon" android:theme="@style/Theme.ActionBarIcon" Loading @@ -156,12 +157,12 @@ </activity> </activity> <!-- Used to set options --> <!-- Used to set options --> <activity <activity android:name=".ui.activities.SettingsActivity" android:name="com.cyanogenmod.eleven.ui.activities.SettingsActivity" android:label="@string/menu_settings" android:label="@string/menu_settings" android:screenOrientation="portrait"/> android:screenOrientation="portrait"/> <!-- 4x1 App Widget --> <!-- 4x1 App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetSmall" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetSmall" android:exported="false" android:exported="false" android:label="@string/app_widget_small" > android:label="@string/app_widget_small" > <intent-filter> <intent-filter> Loading @@ -174,7 +175,7 @@ </receiver> </receiver> <!-- 4x2 App Widget --> <!-- 4x2 App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetLarge" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLarge" android:exported="false" android:exported="false" android:label="@string/app_widget_large" > android:label="@string/app_widget_large" > <intent-filter> <intent-filter> Loading @@ -187,7 +188,7 @@ </receiver> </receiver> <!-- 4x2 alternate App Widget --> <!-- 4x2 alternate App Widget --> <receiver <receiver android:name="com.cyngn.eleven.appwidgets.AppWidgetLargeAlternate" android:name="com.cyanogenmod.eleven.appwidgets.AppWidgetLargeAlternate" android:exported="false" android:exported="false" android:label="@string/app_widget_large_alt" > android:label="@string/app_widget_large_alt" > <intent-filter> <intent-filter> Loading @@ -199,7 +200,7 @@ android:resource="@xml/app_widget_large_alternate" /> android:resource="@xml/app_widget_large_alternate" /> </receiver> </receiver> <!-- Media button receiver --> <!-- Media button receiver --> <receiver android:name=".MediaButtonIntentReceiver" > <receiver android:name="com.cyanogenmod.eleven.MediaButtonIntentReceiver" > <intent-filter> <intent-filter> <action android:name="android.intent.action.MEDIA_BUTTON" /> <action android:name="android.intent.action.MEDIA_BUTTON" /> <action android:name="android.media.AUDIO_BECOMING_NOISY" /> <action android:name="android.media.AUDIO_BECOMING_NOISY" /> Loading @@ -207,7 +208,7 @@ </receiver> </receiver> <!-- Music service --> <!-- Music service --> <service <service android:name=".MusicPlaybackService" android:name="com.cyanogenmod.eleven.MusicPlaybackService" android:label="@string/app_name" android:label="@string/app_name" android:process=":main" /> android:process=":main" /> </application> </application> Loading
res/drawable/action_bar.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading
res/drawable/audio_player_pager_container.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading
res/drawable/audio_player_seekbar.xml +2 −1 Original line number Original line Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?> <!-- <!-- Copyright (C) 2012 Andrew Neal Copyright (C) 2012 Andrew Neal Copyright (C) 2014 The CyanogenMod Project Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. you may not use this file except in compliance with the License. Loading