Skip to content
This repository was archived by the owner on May 2, 2024. It is now read-only.

Fix issue with some roms not loading bootanimation #1

Open
wants to merge 2 commits into
base: thirteen
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions AndroidProducts.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
#

PRODUCT_MAKEFILES := \
$(LOCAL_DIR)/aosp_star2lte.mk
$(LOCAL_DIR)/lineage_star2lte.mk

COMMON_LUNCH_CHOICES := \
aosp_star2lte-eng \
aosp_star2lte-user \
aosp_star2lte-userdebug
lineage_star2lte-eng \
lineage_star2lte-user \
lineage_star2lte-userdebug
File renamed without changes.
10 changes: 5 additions & 5 deletions aosp_star2lte.mk → lineage_star2lte.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ $(call inherit-product, $(SRC_TARGET_DIR)/product/product_launched_with_o.mk)
$(call inherit-product, device/samsung/star2lte/device.mk)

# Boot Animation
TARGET_SCREEN_HEIGHT := 2960
TARGET_SCREEN_WIDTH := 1440
TARGET_BOOT_ANIMATION_RES := 1440
#TARGET_SCREEN_HEIGHT := 2960
#TARGET_SCREEN_WIDTH := 1440
TARGET_BOOT_ANIMATION_RES := 1080

## Inherit some common AOSP stuff
$(call inherit-product, vendor/aosp/config/common_full_phone.mk)
$(call inherit-product, vendor/lineage/config/common_full_phone.mk)

## Device identifier, this must come after all inclusions
PRODUCT_NAME := aosp_star2lte
PRODUCT_NAME := lineage_star2lte
PRODUCT_DEVICE := star2lte
PRODUCT_BRAND := samsung
PRODUCT_MODEL := SM-G965F
Expand Down