Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81e13fbe authored by linuxx's avatar linuxx Committed by Steve Kondik
Browse files

Eleven: materialize

-Material Ui theme
-New launcher icon
-Better tabs

Change-Id: I712ac2eb5256841cf89d198eed775ce8afe9d09c
parent dc144e3c
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -6,15 +6,23 @@ LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := src/com/cyanogenmod/eleven/IElevenService.aidl
LOCAL_SRC_FILES += $(call all-java-files-under, src)

LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, res) \
frameworks/support/v7/cardview/res

LOCAL_STATIC_JAVA_LIBRARIES := \
    android-support-v8-renderscript \
    android-support-v7-palette \
    android-support-v7-cardview \
    android-common \
    android-visualizer \
    eleven_support_v4 \
    eleven_recyclerview \
    guava

LOCAL_AAPT_FLAGS := \
    --auto-add-overlay \
    --extra-packages android.support.v7.cardview

LOCAL_PACKAGE_NAME := Eleven
LOCAL_OVERRIDES_PACKAGES := Music

+4 −4
Original line number Diff line number Diff line
@@ -17,10 +17,10 @@
<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" >

    <uses-sdk
        android:minSdkVersion="17"
        android:minSdkVersion="21"
        android:targetSdkVersion="21" />

    <!-- Used for caching and creating new playlists -->
@@ -41,7 +41,7 @@
    <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 -->
@@ -141,7 +141,7 @@
            android:name="com.cyanogenmod.eleven.ui.activities.SearchActivity"
            android:windowSoftInputMode="adjustResize"
            android:exported="true"
            android:theme="@style/Theme.ActionBarIcon"
            android:theme="@style/Eleven.Theme"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.SEARCH" />
+1 −2
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
<h3>Notices for files:</h3>
<ul>
<li>ActionBarSherlock</li>
<li>ViewPagerIndicator</li>
<li>NineOldAndroids.jar</li>
</ul>
<pre>
+21 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2014 The Android Open Source 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
  -->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/white" android:state_selected="true"/>
    <item android:color="@color/header_action_bar_text_color" />
</selector>

res/color/vpi__light_theme.xml

deleted100644 → 0
+0 −26
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 The Android Open Source 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.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_enabled="false" android:color="@color/vpi__bright_foreground_disabled_holo_light"/>
    <item android:state_window_focused="false" android:color="@color/vpi__bright_foreground_holo_light"/>
    <item android:state_pressed="true" android:color="@color/vpi__bright_foreground_holo_light"/>
    <item android:state_selected="true" android:color="@color/vpi__bright_foreground_holo_light"/>
    <!--item android:state_activated="true" android:color="@color/vpi__bright_foreground_holo_light"/-->
    <item android:color="@color/vpi__bright_foreground_holo_light"/> <!-- not selected -->
    
</selector>
Loading