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

Commit bd91bb1c authored by narinder Rana's avatar narinder Rana Committed by Amit Kumar
Browse files

Implement icons from e-ui-sdk

parent 550a1d35
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -23,11 +23,15 @@ LOCAL_STATIC_ANDROID_LIBRARIES := \
    androidx.palette_palette \
    androidx.legacy_legacy-support-v4

LOCAL_JAVA_LIBRARIES := voip-common

LOCAL_STATIC_JAVA_LIBRARIES := \
    android-common \
    com.android.vcard \
    guava \
    libphonenumber
    libphonenumber \
    org.lineageos.platform.sdk \


LOCAL_USE_AAPT2 := true

@@ -43,7 +47,7 @@ LOCAL_REQUIRED_MODULES := privapp_whitelist_com.android.contacts

LOCAL_PROGUARD_FLAG_FILES := proguard.flags

LOCAL_SDK_VERSION := current
LOCAL_PRIVATE_PLATFORM_APIS := true
LOCAL_MIN_SDK_VERSION := 21

include $(BUILD_PACKAGE)
+1 −0
Original line number Diff line number Diff line
@@ -118,3 +118,4 @@
-keepclassmembers class * {
  @com.google.common.annotations.VisibleForTesting *;
}
-dontwarn lineageos.**
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@

    <ImageView
        android:id="@+id/kind_icon"
        android:src="@drawable/quantum_ic_person_vd_theme_24"
        android:src="@lineageos.platform:drawable/ic_person_stroked"
        android:contentDescription="@string/header_name_entry"
        style="@style/EditKindIconStyle"/>

+1 −1
Original line number Diff line number Diff line
@@ -1337,7 +1337,7 @@ public class PeopleActivity extends AppCompatContactsActivity implements
        //getSupportActionBar().setBackgroundDrawable(new ColorDrawable(color_accent));
        getSupportActionBar().getThemedContext();

        mToolbar.setTitleTextColor(color_default_blue1);
        mToolbar.setTitleTextColor(color_default_primary_text);
        return color;
    }

+3 −3
Original line number Diff line number Diff line
@@ -157,7 +157,7 @@ public class EditorUiUtils {
        switch (mimeType) {
            case StructuredName.CONTENT_ITEM_TYPE:
                return ResourcesCompat.getDrawable(context.getResources(),
                        R.drawable.quantum_ic_person_vd_theme_24, null);
                        lineageos.platform.R.drawable.ic_person_stroked, null);
            case StructuredPostal.CONTENT_ITEM_TYPE:
                return ResourcesCompat.getDrawable(context.getResources(),
                        R.drawable.quantum_ic_place_vd_theme_24, null);
@@ -166,10 +166,10 @@ public class EditorUiUtils {
                        R.drawable.quantum_ic_dialer_sip_vd_theme_24, null);
            case Phone.CONTENT_ITEM_TYPE:
                return ResourcesCompat.getDrawable(context.getResources(),
                        R.drawable.quantum_ic_phone_vd_theme_24, null);
                        lineageos.platform.R.drawable.ic_phone, null);
            case Im.CONTENT_ITEM_TYPE:
                return ResourcesCompat.getDrawable(context.getResources(),
                        R.drawable.quantum_ic_message_vd_theme_24, null);
                        lineageos.platform.R.drawable.ic_message, null);
            case Event.CONTENT_ITEM_TYPE:
                return ResourcesCompat.getDrawable(context.getResources(),
                        R.drawable.quantum_ic_event_vd_theme_24, null);
Loading