Skip to content

Commit c1fd6cb

Browse files
refactor: Auto-formatter, no functional changes
1 parent 3b435cc commit c1fd6cb

7 files changed

+176
-148
lines changed

patches/src/main/resources/custom-branding/drawable/revanced_adaptive_foreground_minimal.xml

Lines changed: 34 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,39 @@
55
android:height="108dp"
66
android:viewportWidth="256"
77
android:viewportHeight="256">
8-
<!-- Android launcher can hide the background layer if it's black or nearly black.
9-
The dark background is needed to see the V shape in day mode. To prevent hiding
10-
the layer it must be added to the foreground. -->
11-
<path
12-
android:pathData="M0,0 L256,0 L256,256 L0,256 Z"
13-
android:fillColor="#1B1B1B" />
14-
<group android:scaleX="0.24"
15-
android:scaleY="0.24"
16-
android:translateX="97.28"
17-
android:translateY="97.28">
8+
<!-- Android launcher can hide the background layer if it's black or nearly black.
9+
The dark background is needed to see the V shape in day mode. To prevent hiding
10+
the layer it must be added to the foreground. -->
1811
<path
19-
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z"
20-
android:fillColor="#FFFFFF"/>
21-
<path
22-
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z">
23-
<aapt:attr name="android:fillColor">
24-
<gradient
25-
android:startX="128"
26-
android:startY="-0"
27-
android:endX="128"
28-
android:endY="254.6"
29-
android:type="linear">
30-
<item android:offset="0" android:color="#FFF04E98"/>
31-
<item android:offset="0.5" android:color="#FF5F65D4"/>
32-
<item android:offset="1" android:color="#FF4E98F0"/>
33-
</gradient>
34-
</aapt:attr>
35-
</path>
36-
</group>
12+
android:fillColor="#1B1B1B"
13+
android:pathData="M0,0 L256,0 L256,256 L0,256 Z" />
14+
<group
15+
android:scaleX="0.24"
16+
android:scaleY="0.24"
17+
android:translateX="97.28"
18+
android:translateY="97.28">
19+
<path
20+
android:fillColor="#FFFFFF"
21+
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z" />
22+
<path android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z">
23+
<aapt:attr name="android:fillColor">
24+
<gradient
25+
android:endX="128"
26+
android:endY="254.6"
27+
android:startX="128"
28+
android:startY="-0"
29+
android:type="linear">
30+
<item
31+
android:color="#FFF04E98"
32+
android:offset="0" />
33+
<item
34+
android:color="#FF5F65D4"
35+
android:offset="0.5" />
36+
<item
37+
android:color="#FF4E98F0"
38+
android:offset="1" />
39+
</gradient>
40+
</aapt:attr>
41+
</path>
42+
</group>
3743
</vector>

patches/src/main/resources/custom-branding/drawable/revanced_adaptive_foreground_rounded.xml

Lines changed: 55 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -5,47 +5,59 @@
55
android:height="108dp"
66
android:viewportWidth="800"
77
android:viewportHeight="800">
8-
<group android:scaleX="0.5"
9-
android:scaleY="0.5"
10-
android:translateX="200"
11-
android:translateY="200">
12-
<path
13-
android:pathData="M400,400m-400,0a400,400 0,1 1,800 0a400,400 0,1 1,-800 0"
14-
android:fillColor="#1B1B1B"/>
15-
<path
16-
android:pathData="M400,0c220.77,0 400,179.23 400,400c-0,220.77 -179.23,400 -400,400c-220.77,-0 -400,-179.23 -400,-400c0,-220.77 179.23,-400 400,-400ZM400,36c200.9,-0 364,163.1 364,364c0,200.9 -163.1,364 -364,364c-200.9,0 -364,-163.1 -364,-364c-0,-200.9 163.1,-364 364,-364Z"
17-
android:strokeLineJoin="round"
18-
android:fillType="evenOdd">
19-
<aapt:attr name="android:fillColor">
20-
<gradient
21-
android:startX="400"
22-
android:startY="0"
23-
android:endX="400"
24-
android:endY="800"
25-
android:type="linear">
26-
<item android:offset="0" android:color="#FFF04E98"/>
27-
<item android:offset="0.5" android:color="#FF5F65D4"/>
28-
<item android:offset="1" android:color="#FF4E98F0"/>
29-
</gradient>
30-
</aapt:attr>
31-
</path>
32-
<path
33-
android:pathData="M538.74,269.87c1.48,-3.38 1.16,-7.28 -0.86,-10.37c-2.02,-3.09 -5.46,-4.95 -9.16,-4.95c-5.15,0 -10.44,0 -14.16,0c-3.1,0 -5.91,1.83 -7.15,4.67c-12.47,28.4 -78.27,178.27 -100.25,228.33c-1.25,2.84 -4.05,4.67 -7.15,4.67c-3.1,0 -5.91,-1.83 -7.15,-4.67c-21.98,-50.06 -87.78,-199.93 -100.25,-228.33c-1.25,-2.84 -4.05,-4.67 -7.15,-4.67c-3.73,0 -9.02,0 -14.16,0c-3.69,0 -7.14,1.86 -9.16,4.95c-2.02,3.09 -2.34,6.99 -0.86,10.37c23.56,53.77 101.87,232.52 117.87,269.03c1.74,3.98 5.67,6.55 10.02,6.55c6.29,-0 15.41,-0 21.7,-0c4.34,-0 8.27,-2.57 10.02,-6.55c16,-36.51 94.32,-215.27 117.87,-269.03Z"
34-
android:fillColor="#FFFFFF"/>
35-
<path
36-
android:pathData="M408.12,395.31c-1.67,2.9 -4.77,4.69 -8.12,4.69c-3.35,-0 -6.44,-1.79 -8.12,-4.69c-17,-29.44 -56.16,-97.26 -73.15,-126.7c-1.67,-2.9 -1.67,-6.47 0,-9.38c1.67,-2.9 4.77,-4.69 8.12,-4.69c33.99,0 112.31,0 146.31,0c3.35,0 6.44,1.79 8.12,4.69c1.67,2.9 1.67,6.47 -0,9.38c-17,29.44 -56.16,97.26 -73.15,126.7Z">
37-
<aapt:attr name="android:fillColor">
38-
<gradient
39-
android:startX="400"
40-
android:startY="254.54"
41-
android:endX="400"
42-
android:endY="543.86"
43-
android:type="linear">
44-
<item android:offset="0" android:color="#FFF04E98"/>
45-
<item android:offset="0.5" android:color="#FF5F65D4"/>
46-
<item android:offset="1" android:color="#FF4E98F0"/>
47-
</gradient>
48-
</aapt:attr>
49-
</path>
50-
</group>
8+
<group
9+
android:scaleX="0.5"
10+
android:scaleY="0.5"
11+
android:translateX="200"
12+
android:translateY="200">
13+
<path
14+
android:fillColor="#1B1B1B"
15+
android:pathData="M400,400m-400,0a400,400 0,1 1,800 0a400,400 0,1 1,-800 0" />
16+
<path
17+
android:fillType="evenOdd"
18+
android:pathData="M400,0c220.77,0 400,179.23 400,400c-0,220.77 -179.23,400 -400,400c-220.77,-0 -400,-179.23 -400,-400c0,-220.77 179.23,-400 400,-400ZM400,36c200.9,-0 364,163.1 364,364c0,200.9 -163.1,364 -364,364c-200.9,0 -364,-163.1 -364,-364c-0,-200.9 163.1,-364 364,-364Z"
19+
android:strokeLineJoin="round">
20+
<aapt:attr name="android:fillColor">
21+
<gradient
22+
android:endX="400"
23+
android:endY="800"
24+
android:startX="400"
25+
android:startY="0"
26+
android:type="linear">
27+
<item
28+
android:color="#FFF04E98"
29+
android:offset="0" />
30+
<item
31+
android:color="#FF5F65D4"
32+
android:offset="0.5" />
33+
<item
34+
android:color="#FF4E98F0"
35+
android:offset="1" />
36+
</gradient>
37+
</aapt:attr>
38+
</path>
39+
<path
40+
android:fillColor="#FFFFFF"
41+
android:pathData="M538.74,269.87c1.48,-3.38 1.16,-7.28 -0.86,-10.37c-2.02,-3.09 -5.46,-4.95 -9.16,-4.95c-5.15,0 -10.44,0 -14.16,0c-3.1,0 -5.91,1.83 -7.15,4.67c-12.47,28.4 -78.27,178.27 -100.25,228.33c-1.25,2.84 -4.05,4.67 -7.15,4.67c-3.1,0 -5.91,-1.83 -7.15,-4.67c-21.98,-50.06 -87.78,-199.93 -100.25,-228.33c-1.25,-2.84 -4.05,-4.67 -7.15,-4.67c-3.73,0 -9.02,0 -14.16,0c-3.69,0 -7.14,1.86 -9.16,4.95c-2.02,3.09 -2.34,6.99 -0.86,10.37c23.56,53.77 101.87,232.52 117.87,269.03c1.74,3.98 5.67,6.55 10.02,6.55c6.29,-0 15.41,-0 21.7,-0c4.34,-0 8.27,-2.57 10.02,-6.55c16,-36.51 94.32,-215.27 117.87,-269.03Z" />
42+
<path android:pathData="M408.12,395.31c-1.67,2.9 -4.77,4.69 -8.12,4.69c-3.35,-0 -6.44,-1.79 -8.12,-4.69c-17,-29.44 -56.16,-97.26 -73.15,-126.7c-1.67,-2.9 -1.67,-6.47 0,-9.38c1.67,-2.9 4.77,-4.69 8.12,-4.69c33.99,0 112.31,0 146.31,0c3.35,0 6.44,1.79 8.12,4.69c1.67,2.9 1.67,6.47 -0,9.38c-17,29.44 -56.16,97.26 -73.15,126.7Z">
43+
<aapt:attr name="android:fillColor">
44+
<gradient
45+
android:endX="400"
46+
android:endY="543.86"
47+
android:startX="400"
48+
android:startY="254.54"
49+
android:type="linear">
50+
<item
51+
android:color="#FFF04E98"
52+
android:offset="0" />
53+
<item
54+
android:color="#FF5F65D4"
55+
android:offset="0.5" />
56+
<item
57+
android:color="#FF4E98F0"
58+
android:offset="1" />
59+
</gradient>
60+
</aapt:attr>
61+
</path>
62+
</group>
5163
</vector>

patches/src/main/resources/custom-branding/drawable/revanced_adaptive_foreground_scaled.xml

Lines changed: 34 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,39 @@
55
android:height="108dp"
66
android:viewportWidth="256"
77
android:viewportHeight="256">
8-
<!-- Android launcher can hide the background layer if it's black or nearly black.
9-
The dark background is needed to see the V shape in day mode. To prevent hiding
10-
the layer it must be added to the foreground. -->
11-
<path
12-
android:pathData="M0,0 L256,0 L256,256 L0,256 Z"
13-
android:fillColor="#000000" />
14-
<group android:scaleX="0.3"
15-
android:scaleY="0.3"
16-
android:translateX="89.6"
17-
android:translateY="89.6">
8+
<!-- Android launcher can hide the background layer if it's black or nearly black.
9+
The dark background is needed to see the V shape in day mode. To prevent hiding
10+
the layer it must be added to the foreground. -->
1811
<path
19-
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z"
20-
android:fillColor="#FFFFFF"/>
21-
<path
22-
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z">
23-
<aapt:attr name="android:fillColor">
24-
<gradient
25-
android:startX="128"
26-
android:startY="0"
27-
android:endX="128"
28-
android:endY="254.6"
29-
android:type="linear">
30-
<item android:offset="0" android:color="#FFF04E98"/>
31-
<item android:offset="0.5" android:color="#FF5F65D4"/>
32-
<item android:offset="1" android:color="#FF4E98F0"/>
33-
</gradient>
34-
</aapt:attr>
35-
</path>
36-
</group>
12+
android:fillColor="#000000"
13+
android:pathData="M0,0 L256,0 L256,256 L0,256 Z" />
14+
<group
15+
android:scaleX="0.3"
16+
android:scaleY="0.3"
17+
android:translateX="89.6"
18+
android:translateY="89.6">
19+
<path
20+
android:fillColor="#FFFFFF"
21+
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z" />
22+
<path android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z">
23+
<aapt:attr name="android:fillColor">
24+
<gradient
25+
android:endX="128"
26+
android:endY="254.6"
27+
android:startX="128"
28+
android:startY="0"
29+
android:type="linear">
30+
<item
31+
android:color="#FFF04E98"
32+
android:offset="0" />
33+
<item
34+
android:color="#FF5F65D4"
35+
android:offset="0.5" />
36+
<item
37+
android:color="#FF4E98F0"
38+
android:offset="1" />
39+
</gradient>
40+
</aapt:attr>
41+
</path>
42+
</group>
3743
</vector>

patches/src/main/resources/custom-branding/drawable/revanced_adaptive_monochrome_custom.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
44
android:height="108dp"
55
android:viewportWidth="256"
66
android:viewportHeight="256">
7-
<group android:scaleX="0.24"
8-
android:scaleY="0.24"
9-
android:translateX="97.28"
10-
android:translateY="97.28">
11-
<path
12-
android:fillColor="#ff000000"
13-
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z"/>
14-
<path
15-
android:fillColor="#ff000000"
16-
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z"/>
17-
</group>
7+
<group
8+
android:scaleX="0.24"
9+
android:scaleY="0.24"
10+
android:translateX="97.28"
11+
android:translateY="97.28">
12+
<path
13+
android:fillColor="#FF000000"
14+
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z" />
15+
<path
16+
android:fillColor="#FF000000"
17+
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z" />
18+
</group>
1819
</vector>

patches/src/main/resources/custom-branding/drawable/revanced_adaptive_monochrome_minimal.xml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
44
android:height="108dp"
55
android:viewportWidth="256"
66
android:viewportHeight="256">
7-
<group android:scaleX="0.24"
8-
android:scaleY="0.24"
9-
android:translateX="97.28"
10-
android:translateY="97.28">
11-
<path
12-
android:fillColor="#ff000000"
13-
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z"/>
14-
<path
15-
android:fillColor="#ff000000"
16-
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z"/>
17-
</group>
7+
<group
8+
android:scaleX="0.24"
9+
android:scaleY="0.24"
10+
android:translateX="97.28"
11+
android:translateY="97.28">
12+
<path
13+
android:fillColor="#FF000000"
14+
android:pathData="M250.09,13.49C251.39,10.51 251.11,7.08 249.33,4.36C247.55,1.64 244.52,0 241.27,0L228.81,0C226.08,0 223.61,1.62 222.51,4.11C211.54,29.1 153.63,160.99 134.29,205.04C133.2,207.54 130.73,209.15 128,209.15C125.27,209.15 122.8,207.54 121.7,205.04C102.36,160.99 44.46,29.1 33.49,4.11C32.39,1.62 29.92,0 27.19,0L14.73,0C11.48,0 8.45,1.64 6.67,4.36C4.89,7.08 4.61,10.51 5.91,13.49C26.64,60.8 95.56,218.1 109.63,250.24C111.17,253.74 114.63,256 118.45,256L137.55,256C141.37,256 144.83,253.74 146.36,250.24C160.44,218.1 229.36,60.8 250.09,13.49Z" />
15+
<path
16+
android:fillColor="#FF000000"
17+
android:pathData="M135.14,123.87C133.67,126.43 130.94,128 128,128C125.05,128 122.33,126.43 120.85,123.87C105.89,97.97 71.44,38.28 56.48,12.37C55,9.82 55,6.68 56.48,4.12C57.95,1.57 60.68,-0 63.62,-0L192.37,-0C195.32,-0 198.04,1.57 199.52,4.12C200.99,6.68 200.99,9.82 199.52,12.37C184.56,38.28 150.1,97.97 135.14,123.87Z" />
18+
</group>
1819
</vector>

0 commit comments

Comments
 (0)