Re: [android-porting] New Display Porting

2018-10-18 Thread Tranphong Vu
Hi. Base on my knowledge I don’t know why you want to port display controller. It fits to snapdragon soc. about touch controller it bases on the peripheral interface that you connect your touch controller to soc. you only need to integrate the touch controller driver to your android bsp. Vào Th

[android-porting] New Display Porting

2018-10-18 Thread Elif Kaplan
Hi All! I am working with Qualcomm Snapdragon820 Board and try to port a new display. My board is APS8096 Dev Board with Android 8.1 on it. There is a Display Porting Guide by Qualcomm however for Snapdragon410. Still very useful, easy to adapt for SnapD.820. Still there are things that make

[android-porting] Disabling Android Boot Animation in Oreo and after.

2018-10-18 Thread parthibx24
Did you just added the line "debug.sf.nobootanimation=1" in your device.mk file? -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting --- You received this message because you are subscribed to the Google Groups

Re: [android-porting] Disabling Android Boot Animation in Oreo and after.

2018-10-18 Thread Satish Patel
Hi, Another way of achieving this is - Add below line to BoardConfig.mk TARGET_SYSTEM_PROP := $(LOCAL_PATH)/system.prop and add system.prop file to device// with debug.sf.nobootanimation=1 or if you would like to include inside device.mk then use PRODUCT_PROPERTY_OVERRIDES += \