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

Commit 815153a8 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

Merge branch 'epic34-s-app_redesign' into 'v1-s'

Keyboard: Redesign app according to our palette

See merge request !22
parents 2085b147 a24f8974
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ android_app {
        "jsr305",
        "latinime-common",
        "androidx.legacy_legacy-support-v4",
        "elib",
    ],

    // Do not compress dictionary files to mmap dict data runtime
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
     package="com.android.inputmethod.latin"
     android:versionCode="30">

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

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
+33 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2015, 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_focused="true"
        android:drawable="@drawable/ic_emoji_activity_activated_lxx_dark" />
    <item
        android:state_pressed="true"
        android:drawable="@drawable/ic_emoji_activity_activated_lxx_dark" />
    <item
        android:state_selected="true"
        android:drawable="@drawable/ic_emoji_activity_activated_lxx_dark" />
    <item
        android:drawable="@drawable/ic_emoji_activity_normal_lxx_dark" />
</selector>
+32 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 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:state_focused="true"
        android:drawable="@drawable/ic_emoji_emoticons_activated_lxx_dark" />
    <item
        android:state_pressed="true"
        android:drawable="@drawable/ic_emoji_emoticons_activated_lxx_dark" />
    <item
        android:state_selected="true"
        android:drawable="@drawable/ic_emoji_emoticons_activated_lxx_dark" />
    <item android:drawable="@drawable/ic_emoji_emoticons_normal_lxx_dark" />
</selector>
+33 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2015, 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_focused="true"
        android:drawable="@drawable/ic_emoji_flag_activated_lxx_dark" />
    <item
        android:state_pressed="true"
        android:drawable="@drawable/ic_emoji_flag_activated_lxx_dark" />
    <item
        android:state_selected="true"
        android:drawable="@drawable/ic_emoji_flag_activated_lxx_dark" />
    <item
        android:drawable="@drawable/ic_emoji_flag_normal_lxx_dark" />
</selector>
Loading