DEV Community

Avinash Dalvi
Avinash Dalvi

Posted on

3 1

How to remove white color circular border in google devices like pixel

Here is step :

Go to tiapp.xml
Edit android->mainfest->application touple
Previously it was :

<application android:theme="@style/Theme.connectMobileTheme" >
After changed :

<application android:theme="@style/Theme.connectMobileTheme" android:roundIcon="@mipmap/ic_launcher_round" android:icon="@drawable/appicon" >

This will manipulate below file :
/Projects/titanium/build/android/AndroidManifest.xml file to apply.

For this you required to maintain icon inside /Projects/titanium/platform/android/res/

Screenshot of file structure
https://i.stack.imgur.com/34c0N.png

Top comments (0)

Postmark Image

Speedy emails, satisfied customers

Are delayed transactional emails costing you user satisfaction? Postmark delivers your emails almost instantly, keeping your customers happy and connected.

Sign up

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay