Initial commit
This initial commit includes HUSH specific changes starting at this commit:
d14637012c
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="10dp" />
|
||||
<solid android:color="@color/background_banner"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#CF000000"/>
|
||||
<stroke android:color="#60000000" android:width="4dp" />
|
||||
</shape>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#CF868686"/>
|
||||
<stroke android:color="#60000000" android:width="4dp" />
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/background_banner.xml
Normal file
7
app/src/main/res/drawable/background_banner.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="10dp" />
|
||||
<stroke android:width="1dp" android:color="@color/background_banner_stroke"/>
|
||||
<solid android:color="@color/background_banner"/>
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/background_banner_large.xml
Normal file
7
app/src/main/res/drawable/background_banner_large.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="16dp" />
|
||||
<stroke android:width="1dp" android:color="#282828"/>
|
||||
<solid android:color="@color/background_banner"/>
|
||||
</shape>
|
||||
10
app/src/main/res/drawable/background_button_rounded.xml
Normal file
10
app/src/main/res/drawable/background_button_rounded.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="34dp" />
|
||||
<gradient
|
||||
android:startColor="@color/zcashYellow_dark"
|
||||
android:endColor="@color/zcashYellow"
|
||||
android:angle="180"
|
||||
android:type="linear" />
|
||||
</shape>
|
||||
9
app/src/main/res/drawable/background_circle.xml
Normal file
9
app/src/main/res/drawable/background_circle.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<size
|
||||
android:width="48dp"
|
||||
android:height="48dp"/>
|
||||
<solid
|
||||
android:color="@color/zcashWhite_60" />
|
||||
</shape>
|
||||
9
app/src/main/res/drawable/background_circle_solid.xml
Normal file
9
app/src/main/res/drawable/background_circle_solid.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<size
|
||||
android:width="48dp"
|
||||
android:height="48dp"/>
|
||||
<solid
|
||||
android:color="#fff" />
|
||||
</shape>
|
||||
29
app/src/main/res/drawable/background_footer.xml
Normal file
29
app/src/main/res/drawable/background_footer.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:height="16dp">
|
||||
<shape>
|
||||
<corners
|
||||
android:bottomLeftRadius="10dp"
|
||||
android:bottomRightRadius="10dp"
|
||||
android:topLeftRadius="0dp"
|
||||
android:topRightRadius="0dp" />
|
||||
<solid android:color="@color/text_light_dimmed" />
|
||||
</shape>
|
||||
</item>
|
||||
<item
|
||||
android:end="1dp"
|
||||
android:start="1dp"
|
||||
android:left="1dp"
|
||||
android:right="1dp"
|
||||
android:bottom="1dp"
|
||||
android:height="15dp">
|
||||
<shape>
|
||||
<corners
|
||||
android:bottomLeftRadius="10dp"
|
||||
android:bottomRightRadius="10dp"
|
||||
android:topLeftRadius="0dp"
|
||||
android:topRightRadius="0dp" />
|
||||
<solid android:color="@color/background_banner" />
|
||||
</shape>
|
||||
</item></layer-list>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="8dp" />
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="#2d2d33"
|
||||
android:startColor="#2a2933" />
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/background_gradient_bottom.xml
Normal file
7
app/src/main/res/drawable/background_gradient_bottom.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="@color/background_banner"
|
||||
android:startColor="@android:color/transparent" />
|
||||
</shape>
|
||||
27
app/src/main/res/drawable/background_header.xml
Normal file
27
app/src/main/res/drawable/background_header.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp"
|
||||
android:topLeftRadius="10dp"
|
||||
android:topRightRadius="10dp" />
|
||||
<solid android:color="@color/text_light_dimmed" />
|
||||
</shape>
|
||||
</item>
|
||||
<item
|
||||
android:end="1dp"
|
||||
android:start="1dp"
|
||||
android:top="1dp">
|
||||
<shape>
|
||||
<corners
|
||||
android:bottomLeftRadius="0dp"
|
||||
android:bottomRightRadius="0dp"
|
||||
android:topLeftRadius="10dp"
|
||||
android:topRightRadius="10dp" />
|
||||
<solid android:color="@color/background_banner" />
|
||||
</shape>
|
||||
</item></layer-list>
|
||||
11
app/src/main/res/drawable/background_home.xml
Normal file
11
app/src/main/res/drawable/background_home.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:endColor="#000000"
|
||||
android:startColor="#28282C"
|
||||
android:type="radial"
|
||||
android:centerY="0.36"
|
||||
android:centerX="0.50"
|
||||
android:gradientRadius="640dp"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<gradient android:startColor="@color/colorPrimary" android:endColor="@color/colorPrimaryDark" />
|
||||
</shape>
|
||||
10
app/src/main/res/drawable/background_indicator_inbound.xml
Normal file
10
app/src/main/res/drawable/background_indicator_inbound.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:centerColor="@color/zcashGreen"
|
||||
android:endColor="@color/zcashBlue"
|
||||
android:startColor="@color/zcashGreen" />
|
||||
</shape>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="@color/colorPrimaryMedium"
|
||||
android:startColor="@color/colorPrimary" />
|
||||
</shape>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp" />
|
||||
<gradient
|
||||
android:angle="270"
|
||||
android:endColor="@color/zcashWhite_12"
|
||||
android:startColor="@color/zcashWhite_60" />
|
||||
</shape>
|
||||
11
app/src/main/res/drawable/background_send_final.xml
Normal file
11
app/src/main/res/drawable/background_send_final.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:endColor="@color/colorPrimaryDark"
|
||||
android:startColor="@color/colorPrimary"
|
||||
android:type="radial"
|
||||
android:centerY="0.36"
|
||||
android:centerX="0.50"
|
||||
android:gradientRadius="640dp"/>
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/background_title_primary.xml
Normal file
7
app/src/main/res/drawable/background_title_primary.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="10dp" />
|
||||
<stroke android:width="1dp" android:color="#282828"/>
|
||||
<solid android:color="#171717"/>
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/bg_chip_view.xml
Normal file
7
app/src/main/res/drawable/bg_chip_view.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="3dp" />
|
||||
<stroke android:width="1dp" android:color="#282828"/>
|
||||
<solid android:color="@color/background_banner"/>
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/chip_details_background.xml
Normal file
7
app/src/main/res/drawable/chip_details_background.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@color/zcashGray"/>
|
||||
<corners android:radius="2dp"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/ic_account_circle.xml
Normal file
5
app/src/main/res/drawable/ic_account_circle.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,5c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM12,19.2c-2.5,0 -4.71,-1.28 -6,-3.22 0.03,-1.99 4,-3.08 6,-3.08 1.99,0 5.97,1.09 6,3.08 -1.29,1.94 -3.5,3.22 -6,3.22z"/>
|
||||
</vector>
|
||||
138
app/src/main/res/drawable/ic_address_qr.xml
Normal file
138
app/src/main/res/drawable/ic_address_qr.xml
Normal file
@@ -0,0 +1,138 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="42dp"
|
||||
android:height="42dp"
|
||||
android:viewportWidth="42"
|
||||
android:viewportHeight="42">
|
||||
<path
|
||||
android:pathData="M14.5052,41.6579L0,41.6579L0,26.9363C0.3031,26.9363 0.6452,26.8627 0.9872,26.8627C5.1353,26.8627 9.2833,26.8627 13.4313,26.8367C14.319,26.8367 14.6134,27.0705 14.6047,27.9841C14.5614,32.2058 14.6047,36.4274 14.6047,40.6491C14.5961,40.9781 14.5355,41.3202 14.5052,41.6579ZM7.2569,38.7526C8.4823,38.7526 9.7076,38.7526 10.933,38.7526C11.5738,38.7526 11.8423,38.5447 11.8336,37.8866C11.8336,35.4402 11.8336,32.9895 11.8336,30.5258C11.8336,29.9109 11.6647,29.5862 10.9676,29.5905C8.4779,29.5905 5.9926,29.5905 3.5072,29.5905C2.9184,29.5905 2.6412,29.807 2.6629,30.4132C2.6629,32.8986 2.6629,35.3882 2.6629,37.8736C2.6629,38.5404 2.9357,38.7396 3.5678,38.7396C4.8062,38.7309 6.0315,38.7526 7.2569,38.7526Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M14.5181,0.0909C14.5441,0.4546 14.5918,0.7707 14.5918,1.0825C14.5918,5.2652 14.5918,9.4478 14.5918,13.6392C14.6047,14.2887 14.5485,14.7216 13.6998,14.7216C9.3353,14.6913 4.9751,14.7216 0.6105,14.7216C0.4044,14.6957 0.2004,14.6552 0,14.6004L0,0.0909L14.5181,0.0909ZM7.2396,11.9462C8.426,11.9462 9.6167,11.9202 10.8031,11.9462C11.5175,11.9722 11.8553,11.7643 11.8423,10.9806C11.8076,8.6035 11.812,6.2177 11.8423,3.8449C11.8423,3.1565 11.6041,2.888 10.8984,2.8923C8.488,2.9184 6.0748,2.9184 3.6588,2.8923C2.992,2.8923 2.6672,3.0742 2.6759,3.806C2.7019,6.2221 2.6759,8.6338 2.6759,11.0499C2.6759,11.6951 2.914,11.9548 3.5635,11.9419C4.7889,11.9245 6.0142,11.9462 7.2396,11.9462Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M26.8454,0.0476L41.3505,0.0476C41.3852,0.407 41.4414,0.7491 41.4414,1.0911C41.4414,5.2435 41.4414,9.3915 41.4631,13.5396C41.4631,14.4056 41.2293,14.7303 40.3157,14.7173C36.1287,14.674 31.946,14.687 27.759,14.7173C27.0575,14.7173 26.7198,14.5701 26.7285,13.7647C26.7588,9.4348 26.7285,5.1049 26.7501,0.7751C26.7674,0.5309 26.7992,0.288 26.8454,0.0476ZM29.5342,7.3262C29.5342,8.5862 29.5342,9.8505 29.5342,11.1105C29.5342,11.7037 29.7507,11.9548 30.3569,11.9506C32.8466,11.9506 35.332,11.9289 37.8173,11.9506C38.4841,11.9506 38.6833,11.6864 38.6833,11.0499C38.6631,8.6338 38.6631,6.2192 38.6833,3.806C38.6833,3.1652 38.4668,2.901 37.8173,2.9053C35.3666,2.9053 32.9159,2.9313 30.4565,2.9053C29.7377,2.9053 29.5039,3.1868 29.5256,3.8709C29.5429,5.0184 29.5212,6.1744 29.5212,7.3262L29.5342,7.3262Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M41.4371,23.6326C40.9002,23.6586 40.5452,23.6802 40.1901,23.6889C38.4885,23.7322 38.4581,23.3165 38.4581,25.4641C38.4581,26.5466 38.4581,27.6291 38.4581,28.7072C38.4581,29.3264 38.272,29.5992 37.5922,29.6252C35.4272,29.7118 35.4272,29.7377 35.5008,31.972C35.5008,32.1798 35.5441,32.4049 35.5831,32.76C36.0849,32.7904 36.5881,32.7904 37.0899,32.76C38.2157,32.6128 38.601,33.1194 38.4538,34.1802C38.4343,34.3948 38.4343,34.6108 38.4538,34.8254C38.4885,35.4315 38.2113,35.6524 37.6138,35.6394C36.2412,35.6091 34.873,35.6047 33.5047,35.6394C32.8293,35.6394 32.6388,35.3796 32.6388,34.7474C32.6691,33.4485 32.5825,32.1495 32.6691,30.8505C32.7383,29.8113 32.327,29.5515 31.3701,29.5992C29.8676,29.6641 28.3652,29.5992 26.7934,29.5992L26.7934,26.9146C27.1961,26.9146 27.5771,26.8497 27.9625,26.8497C30.1967,26.8497 32.4309,26.8237 34.6652,26.8497C35.4229,26.8497 35.674,26.5856 35.6524,25.8408C35.6047,24.5072 35.687,23.1736 35.6221,21.84C35.5831,21.0043 35.9035,20.8052 36.6829,20.8095C38.5924,20.8095 38.6313,20.8095 38.627,18.8784C38.627,18.0946 38.9258,17.8522 39.6445,17.9171C40.039,17.8943 40.4348,17.9088 40.8266,17.9604C41.0604,18.0254 41.3852,18.3328 41.3938,18.5449C41.4544,20.2033 41.4371,21.8573 41.4371,23.6326Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.5367,17.601C17.7829,17.9431 17.7829,17.9431 17.7829,15.3278C17.7829,14.5008 17.7829,13.6695 17.7829,12.8381C17.7829,12.2016 18.0124,11.9722 18.6489,11.9332C20.8398,11.8466 20.8138,11.8206 20.7359,9.6773C20.7099,9.0148 20.4674,8.8113 19.8353,8.7897C17.7656,8.7074 17.7656,8.6858 17.7656,6.5988C17.7656,4.7586 17.7915,2.9184 17.7656,1.0781C17.7656,0.3247 17.9388,-0.0346 18.7918,0.0043C20.3332,0.0693 21.879,0.0043 23.5546,0.0043C23.5546,0.8703 23.5893,1.6021 23.5287,2.3425C23.5287,2.533 23.2082,2.7278 23.0004,2.8707C22.9008,2.94 22.719,2.8707 22.5674,2.8707C20.5497,2.9313 20.1427,3.4379 20.606,5.4297C20.7495,5.7166 21.0214,5.9177 21.3377,5.9709C22.0583,6.02 22.7811,6.0286 23.5027,5.9969C23.5287,6.6334 23.572,7.1616 23.5763,7.6899C23.5763,9.712 23.5763,11.734 23.5763,13.7518C23.5763,14.3753 23.4074,14.648 22.7103,14.674C20.619,14.752 20.619,14.7823 20.5454,16.8779C20.593,17.1247 20.5627,17.3196 20.5367,17.601Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.6146,20.7402C20.6146,22.3942 20.5757,24.0526 20.6146,25.7066C20.6146,26.434 20.3592,26.6895 19.6751,26.6332C19.387,26.6072 19.0971,26.6072 18.8091,26.6332C18.0903,26.6895 17.7872,26.421 17.7699,25.6546C17.7223,23.6889 17.6876,23.6889 15.7219,23.6889C13.847,23.6889 11.9722,23.6456 10.093,23.6889C9.1491,23.7192 8.7464,23.5027 8.794,22.4462C8.8676,20.4111 8.9975,20.6363 7.0144,20.7142C5.9493,20.7489 5.854,20.2336 5.8757,19.4153C5.8973,18.5969 5.7891,17.8132 7.0534,17.9128C8.2417,17.9821 9.433,17.9821 10.6212,17.9128C11.3746,17.8868 11.6128,18.1856 11.6258,18.926C11.6604,20.8311 11.6907,20.8398 13.6348,20.8311C15.973,20.8311 18.3111,20.7922 20.6493,20.7705L20.6146,20.7402Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.8138,41.6276L20.8138,38.7526C23.4421,38.7526 26.0097,38.7223 28.547,38.7526C29.413,38.7526 29.7551,38.5231 29.7421,37.6052C29.7161,35.5485 29.3913,35.752 31.6645,35.7433C31.907,35.7433 32.1538,35.7866 32.4612,35.8126L32.4612,41.6276L20.8138,41.6276Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.6017,32.7817C21.2463,32.8168 21.8924,32.8168 22.5371,32.7817C23.4377,32.6777 23.6975,33.0718 23.6023,33.8944C23.6259,34.2512 23.6142,34.6094 23.5676,34.9639C23.481,35.2237 23.1736,35.4229 22.9441,35.6221C22.8792,35.6784 22.732,35.6221 22.6237,35.6221C20.6579,35.674 20.6233,35.674 20.619,37.6008C20.619,38.3802 20.3245,38.5794 19.6058,38.5924C17.7872,38.6227 17.7829,38.6487 17.7829,36.8604C17.7829,34.8773 17.8089,32.8986 17.7829,30.9198C17.7829,30.0885 18.0427,29.7031 18.9,29.807C19.2241,29.8352 19.5501,29.8352 19.8742,29.807C20.4241,29.781 20.6493,30.0235 20.6233,30.5821C20.5757,31.2705 20.6017,31.9503 20.6017,32.7817Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M32.5262,23.6759C31.7872,23.7053 31.0472,23.6952 30.3093,23.6456C30.1014,23.6456 29.8157,23.2775 29.7637,23.0351C29.6078,22.2903 29.7984,21.2555 29.3697,20.8441C28.941,20.4328 27.9365,20.7099 27.1831,20.6753C27.0354,20.6404 26.8906,20.5941 26.7501,20.5367C26.7105,19.909 26.7206,19.2792 26.7804,18.6532C26.8739,18.3263 27.1265,18.0688 27.4515,17.9691C28.9237,17.9041 30.4045,17.9085 31.881,17.9691C32.18,18.0529 32.4142,18.2856 32.5002,18.5839C32.5522,20.2293 32.5262,21.879 32.5262,23.6759Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M23.6196,29.5386L20.8052,29.5386L20.8052,26.8194C21.7188,26.88 22.8532,26.6375 23.3685,27.0922C23.8144,27.4862 23.5633,28.6726 23.6196,29.5386Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M35.713,41.8398L35.713,38.692C36.6353,38.7829 37.7437,38.5751 38.2763,39.034C38.7093,39.3934 38.7093,40.9089 38.3153,41.3159C37.8303,41.8095 36.7089,41.6753 35.713,41.8398Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.6493,20.7835C20.6796,20.1037 20.7445,19.4282 20.7315,18.7528C20.7186,18.0773 20.974,17.8868 21.5586,17.9388C21.5946,17.9409 21.6308,17.9409 21.6668,17.9388C23.6239,17.8565 23.8318,18.0687 23.5633,20.0128C23.4554,20.3339 23.1936,20.5795 22.8662,20.6666C22.118,20.7396 21.3661,20.7671 20.6146,20.7489L20.6493,20.7835Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M5.9103,20.7835C5.6635,22.0089 5.7371,23.0567 5.2522,23.5849C4.9231,23.9357 3.412,23.8274 3.1262,23.4247C2.7408,22.8878 2.6932,21.4936 3.1002,21.1515C3.6371,20.6796 4.7326,20.8788 5.9103,20.7835Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M29.6295,35.5614L26.6808,35.5614C26.7761,34.6392 26.6245,33.6 27.0532,32.9635C27.2957,32.5998 28.9194,32.5695 29.1922,32.9375C29.6425,33.5177 29.5039,34.5612 29.6295,35.5614Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M0,18.073C3.1132,17.7266 2.7625,17.7396 2.5979,20.6017L0,20.6017L0,18.073Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M23.7495,23.8404C24.2687,23.8695 24.7891,23.8695 25.3082,23.8404C26.2305,23.7278 26.6072,24.0309 26.5509,25.0181C26.486,26.5379 25.62,27.1831 24.1392,26.5856C23.937,26.4736 23.7991,26.2732 23.7668,26.0443C23.7235,25.3602 23.7495,24.6804 23.7495,23.8404Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M23.7408,32.6128C23.7719,32.085 23.7719,31.5558 23.7408,31.028C23.6153,30.0755 23.9746,29.7637 24.9359,29.8027C26.4167,29.8676 27.0705,30.8072 26.4816,32.2447C26.3607,32.4434 26.1543,32.5746 25.9231,32.5998C25.239,32.6431 24.5635,32.6128 23.7408,32.6128Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M41.6017,32.5565L38.64,32.5565C38.6963,31.6905 38.4971,30.6643 38.9085,30.0365C39.1509,29.6641 40.7183,29.6035 41.0431,29.9629C41.5194,30.5041 41.4241,31.5563 41.6017,32.5565Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M38.5361,35.8082L41.4891,35.8082C41.4068,36.7262 41.5887,37.761 41.16,38.3672C40.8959,38.7439 39.3241,38.8002 39.0254,38.4148C38.5621,37.8433 38.6833,36.8041 38.5361,35.8082Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M8.6598,34.4227C8.8893,35.3623 8.439,35.7216 7.3305,35.6437C5.8757,35.5528 5.8713,35.6437 5.8713,34.2581C5.8713,32.8076 5.8713,32.7946 7.2786,32.7903C8.6858,32.786 8.6598,32.786 8.6598,34.4227Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M7.5427,8.7984C5.893,8.7984 5.893,8.7984 5.8887,7.4474C5.8843,6.0965 5.8887,6.1138 7.3219,6.0186C8.413,5.9493 8.7637,6.287 8.7074,7.3911C8.6598,8.361 8.6295,9.0928 7.5427,8.7984Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M34.1672,6.0619C35.5052,6.0619 35.5052,6.0619 35.5052,7.4864C35.5052,8.7854 35.5052,8.7854 34.0113,8.7854C32.6431,8.7854 32.6431,8.7854 32.6474,7.3348C32.6691,6.0359 32.6691,6.0359 34.1672,6.0619Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
9
app/src/main/res/drawable/ic_arrow_back_black_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_arrow_back_black_24dp.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M20,11H7.83l5.59,-5.59L12,4l-8,8 8,8 1.41,-1.41L7.83,13H20v-2z"/>
|
||||
</vector>
|
||||
12
app/src/main/res/drawable/ic_background_qr.xml
Normal file
12
app/src/main/res/drawable/ic_background_qr.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="286dp"
|
||||
android:height="285dp"
|
||||
android:viewportWidth="286"
|
||||
android:viewportHeight="285">
|
||||
<path
|
||||
android:pathData="M13.406,0L272.594,0L286,13.364L286,270.914L272.594,285L13.406,285L0,271.641L0,13.364L13.406,0Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#2C2C2F"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_baseline_done_24.xml
Normal file
5
app/src/main/res/drawable/ic_baseline_done_24.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
|
||||
</vector>
|
||||
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M7.41,8.59L12,13.17l4.59,-4.58L18,10l-6,6 -6,-6 1.41,-1.41z"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_baseline_launch_24.xml
Normal file
5
app/src/main/res/drawable/ic_baseline_launch_24.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24" android:viewportWidth="24"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@android:color/white" android:pathData="M19,19H5V5h7V3H5c-1.11,0 -2,0.9 -2,2v14c0,1.1 0.89,2 2,2h14c1.1,0 2,-0.9 2,-2v-7h-2v7zM14,3v2h3.59l-9.83,9.83 1.41,1.41L19,6.41V10h2V3h-7z"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_cancel.xml
Normal file
5
app/src/main/res/drawable/ic_cancel.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2zM17,15.59L15.59,17 12,13.41 8.41,17 7,15.59 10.59,12 7,8.41 8.41,7 12,10.59 15.59,7 17,8.41 13.41,12 17,15.59z"/>
|
||||
</vector>
|
||||
14
app/src/main/res/drawable/ic_check_shield.xml
Normal file
14
app/src/main/res/drawable/ic_check_shield.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="17dp"
|
||||
android:height="21dp"
|
||||
android:viewportWidth="17"
|
||||
android:viewportHeight="21">
|
||||
<path
|
||||
android:pathData="M17,3.3876L17,11.6833C17,14.6427 15.3708,17.348 12.75,18.7407L8.5,21L4.25,18.7407C1.6292,17.348 0,14.6427 0,11.6833L0,3.3876L8.5,0L17,3.3876ZM8.0121,10.8519L11.9036,7L14,9.0741L8.0121,15L4,11.0298L6.0964,8.9558L8.0121,10.8519Z"
|
||||
android:strokeAlpha="0.4079706"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillAlpha="0.4079706"/>
|
||||
</vector>
|
||||
12
app/src/main/res/drawable/ic_check_shielded.xml
Normal file
12
app/src/main/res/drawable/ic_check_shielded.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="42dp"
|
||||
android:height="33dp"
|
||||
android:viewportWidth="42"
|
||||
android:viewportHeight="33">
|
||||
<path
|
||||
android:pathData="M16.8506,15.8889l16.3444,-15.8889l8.805,8.5555l-25.1494,24.4445l-16.8506,-16.377l8.805,-8.5555z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#666666"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
9
app/src/main/res/drawable/ic_close_black_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_close_black_24dp.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M19,6.41L17.59,5 12,10.59 6.41,5 5,6.41 10.59,12 5,17.59 6.41,19 12,13.41 17.59,19 19,17.59 13.41,12z"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_content_copy.xml
Normal file
5
app/src/main/res/drawable/ic_content_copy.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M16,1L4,1c-1.1,0 -2,0.9 -2,2v14h2L4,3h12L16,1zM19,5L8,5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h11c1.1,0 2,-0.9 2,-2L21,7c0,-1.1 -0.9,-2 -2,-2zM19,21L8,21L8,7h11v14z"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_done_24dp.xml
Normal file
5
app/src/main/res/drawable/ic_done_24dp.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z"/>
|
||||
</vector>
|
||||
24
app/src/main/res/drawable/ic_expand_memo_enabled.xml
Normal file
24
app/src/main/res/drawable/ic_expand_memo_enabled.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:width="22dp"
|
||||
android:height="22dp"
|
||||
android:viewportWidth="22"
|
||||
android:viewportHeight="22">
|
||||
<path
|
||||
android:pathData="M11,11m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#1F1F22"
|
||||
android:strokeColor="@color/tx_primary"/>
|
||||
<path
|
||||
android:pathData="M8.575,14.125l2.3,2.3311l2.3,-2.3311l0.7,0.7095l-3,3.0405l-3,-3.0405l0.7,-0.7095z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="@color/tx_primary"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M13.175,7.875l-2.3,-2.3311l-2.3,2.3311l-0.7,-0.7095l3,-3.0405l3,3.0405l-0.7,0.7095z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="@color/tx_primary"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_info_24dp.xml
Normal file
5
app/src/main/res/drawable/ic_info_24dp.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"/>
|
||||
</vector>
|
||||
48
app/src/main/res/drawable/ic_logo_landing.xml
Normal file
48
app/src/main/res/drawable/ic_logo_landing.xml
Normal file
@@ -0,0 +1,48 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:viewportWidth="345.8"
|
||||
android:viewportHeight="402.5"
|
||||
android:width="345.8dp"
|
||||
android:height="402.5dp">
|
||||
<path
|
||||
android:pathData="M270.8 175c-26 -32.3 5 -60 37.2 -64.1c-32 -5.7 -39.1 -2.3 -58.9 13.6c-4.8 -11.2 52.9 -98.5 52.9 -98.5s-82.9 84.7 -101.9 82.9c-24 -2.3 -26.9 -71.6 -27.2 -88.1c-0.3 16.4 -3.2 85.8 -27.2 88.1C126.7 110.8 43.8 26 43.8 26s57.8 87.2 52.9 98.5c-19.8 -15.9 -26.9 -19.3 -58.9 -13.6C70.1 115 101 142.7 75 175c61.7 -8 6.8 52.3 -13.6 63c80.2 -6.9 81.4 48.8 77.5 71.6c28.5 -1 34 29.7 34 29.7s5.6 -30.7 34 -29.7c-3.9 -22.8 -2.7 -78.5 77.5 -71.6C264 227.3 209.1 167 270.8 175zM164.9 115.5c0 -3.7 3 -6.7 6.7 -6.7c0 0 0 0 0 0c3.7 0 6.7 3 6.7 6.7v22.7c0 0 -1.7 -4 -7 -4c-4.6 0 -6.4 4 -6.4 4V115.5zM164.9 154.7c0 -3.7 3 -6.7 6.7 -6.7c0 0 0 0 0 0c3.7 0 6.7 3 6.7 6.7v26.5c0 2.1 -1.3 2.5 -2.3 2.5c-1 0 -1.2 -0.1 -4.1 -3.3c-2.9 -3.2 -7 -8.1 -7 -8.1V154.7zM166.1 196.4c1.5 -0.6 2.4 0.5 3.6 2c1.2 1.4 1.6 1.8 1.6 1.8c2.9 3.2 7 8.1 7 8.1v12.1c0 3.7 -3 6.7 -6.7 6.7c-3.7 0 -6.7 -3 -6.7 -6.7v-21.1C164.9 198.3 164.6 197 166.1 196.4zM138 123.4c0 -3.7 3 -6.7 6.7 -6.7s6.7 3 6.7 6.7v55.8c0 3.7 -3 6.7 -6.7 6.7s-6.7 -3 -6.7 -6.7V123.4zM125.6 232.9c0 3.7 -3 6.7 -6.6 6.7h-0.2c-3.7 0 -6.6 -3 -6.6 -6.7v-94.8c0 -3.7 3 -6.7 6.6 -6.7h0.2c3.7 0 6.6 3 6.6 6.7V232.9zM138 246.7v-41c0 -3.7 3 -6.7 6.8 -6.7c3.7 0 6.8 3 6.8 6.7v41c0 3.7 -3 6.7 -6.8 6.7C141 253.3 138 250.4 138 246.7zM162.2 302.3c-2.7 1.9 -7.5 -0.5 -10.7 -5.2c-3.2 -4.7 -3.6 -10.1 -0.8 -11.9c2.7 -1.9 7.5 0.5 10.7 5.2C164.6 295.1 164.9 300.4 162.2 302.3zM178.4 261c0 3.7 -3 6.7 -6.8 6.7c-3.7 0 -6.8 -3 -6.8 -6.7v-23.1c0 0 2 4 6.8 4c5.1 0 6.8 -4 6.8 -4V261zM194.4 297.1c-3.2 4.7 -8 7 -10.7 5.2c-2.7 -1.9 -2.4 -7.2 0.8 -11.9c3.2 -4.7 8 -7 10.7 -5.2C197.9 287 197.6 292.4 194.4 297.1zM206 246.7c0 3.7 -2.9 6.7 -6.5 6.7H199c-3.6 0 -6.5 -3 -6.5 -6.7v-60.9c0 -3.7 2.9 -6.7 6.5 -6.7h0.5c3.6 0 6.5 3 6.5 6.7V246.7zM206 158.9c0 3.8 -3 6.9 -6.8 6.9c-3.8 0 -6.8 -3.1 -6.8 -6.9v-35.3c0 -3.8 3 -6.9 6.8 -6.9c3.8 0 6.8 3.1 6.8 6.9V158.9zM233.7 138.1l0 94.8c0 3.7 -3 6.7 -6.6 6.7h-0.2c-3.7 0 -6.6 -3 -6.6 -6.7v-94.8c0 -3.7 3 -6.7 6.6 -6.7h0.2C230.7 131.4 233.7 134.4 233.7 138.1L233.7 138.1z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M188.7 55.2c0.4 3.1 0.9 6.3 1.4 9.4c0.1 0.6 0.2 1.2 0.3 1.8c12.6 2.1 24.6 6.3 35.4 12.2c2.7 -2.2 5.6 -4.6 8.9 -7.4C220.8 63.1 205.3 57.5 188.7 55.2zM287.1 132.2c-3.5 2.3 -6.4 4.9 -8.6 7.7c4.4 12.1 6.8 25.1 6.8 38.6c0 13.5 -2.4 26.5 -6.7 38.5c3.3 3 6.4 5.4 8.9 7.2c5.6 -14.2 8.7 -29.6 8.7 -45.7C296 162.2 292.9 146.5 287.1 132.2zM125.5 282.4c-16.1 -7.2 -30.2 -17.9 -41.3 -31.3c-3.1 -0.3 -6.3 -0.4 -9.7 -0.4c-1.4 0 -2.8 0 -4.2 0.1c14.1 19.7 33.7 35.1 56.6 43.9C126.8 290.9 126.4 286.7 125.5 282.4zM56.6 130.9c-6.1 14.7 -9.5 30.8 -9.5 47.7c0 16.7 3.3 32.6 9.3 47.1c2.3 -1.4 5.5 -3.7 8.9 -6.8c-4.8 -12.5 -7.4 -26.1 -7.4 -40.3c0 -14.4 2.7 -28.1 7.6 -40.8C63.1 135.2 60.1 132.9 56.6 130.9zM271.4 250.7c-4.5 0 -8.7 0.2 -12.7 0.8c-10.4 12.4 -23.3 22.5 -38 29.6c-1.1 4.3 -1.6 8.7 -1.7 12.6c21.7 -9 40.4 -24 53.9 -42.9C272.4 250.7 271.9 250.7 271.4 250.7zM110.1 70.4c3.2 2.8 6.2 5.3 8.9 7.5c11.2 -5.9 23.5 -10 36.6 -11.8c0.1 -0.4 0.2 -0.9 0.2 -1.3c0.6 -3.3 1.1 -6.6 1.5 -9.8C140.2 56.8 124.3 62.2 110.1 70.4z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M50.8 373.8c-6.1 0 -10.8 -3 -11 -8.7h7.3c0.2 2.2 1.6 3.2 3.5 3.2c2 0 3.3 -1 3.3 -2.7c0 -5.2 -14.1 -2.4 -14 -12.4c0 -5.3 4.4 -8.3 10.3 -8.3c6.1 0 10.3 3.1 10.6 8.4h-7.4c-0.1 -1.8 -1.4 -2.9 -3.3 -2.9c-1.6 0 -2.9 0.8 -2.9 2.6c0 4.9 13.9 2.7 13.9 12.1C61.1 369.8 57.4 373.8 50.8 373.8z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M64.7 345c0 -2.1 1.6 -3.7 4.1 -3.7c2.4 0 4.1 1.6 4.1 3.7c0 2 -1.6 3.7 -4.1 3.7C66.3 348.7 64.7 347.1 64.7 345zM65.3 351.1h6.9v22.4h-6.9V351.1z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M77.2 343.8h6.9v29.7h-6.9V343.8z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M99 373.8c-6.6 0 -11.3 -4.4 -11.3 -11.5c0 -7.1 4.7 -11.5 11.3 -11.5c6.5 0 11.2 4.3 11.2 11.2c0 0.6 0 1.3 -0.1 2H94.5c0.2 2.9 2 4.3 4.3 4.3c1.9 0 3 -1 3.6 -2.2h7.3C108.6 370.4 104.6 373.8 99 373.8zM94.5 360.1h8.6c0 -2.5 -1.9 -3.9 -4.2 -3.9C96.7 356.2 94.9 357.6 94.5 360.1z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M129.3 361.3c0 -3.1 -1.7 -4.7 -4.3 -4.7c-2.6 0 -4.3 1.7 -4.3 4.7v12.2h-6.9v-22.4h6.9v3c1.4 -1.9 3.8 -3.2 6.8 -3.2c5.2 0 8.6 3.5 8.6 9.6v13.1h-6.8V361.3z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M141.9 356.8h-2.7v-5.7h2.7v-5.5h6.9v5.5h4.5v5.7h-4.5v9c0 1.3 0.6 1.9 2.1 1.9h2.5v5.8h-3.5c-4.7 0 -7.9 -2 -7.9 -7.8V356.8z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M182.5 359.4c0 8.4 -5.8 14.1 -14.8 14.1h-10.6v-28.2h10.6C176.7 345.3 182.5 351 182.5 359.4zM167.3 367.5c5.2 0 8.2 -3 8.2 -8.2c0 -5.2 -3.1 -8.2 -8.2 -8.2H164v16.4H167.3z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M193.2 373.5h-6.9v-22.4h6.9v3.7c1.6 -2.4 4 -4 7 -4v7.3h-1.9c-3.3 0 -5.1 1.1 -5.1 5V373.5z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M212.1 350.7c3.3 0 5.7 1.5 6.9 3.5v-3.2h6.9v22.4H219v-3.2c-1.2 2 -3.6 3.5 -6.9 3.5c-5.5 0 -9.8 -4.5 -9.8 -11.6C202.2 355.2 206.6 350.7 212.1 350.7zM214.1 356.7c-2.6 0 -4.9 1.9 -4.9 5.5c0 3.6 2.3 5.6 4.9 5.6c2.6 0 4.9 -2 4.9 -5.5C219 358.7 216.7 356.7 214.1 356.7z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M239.4 350.7c3.3 0 5.7 1.5 6.9 3.5v-3.2h6.9v22.4c0 6 -3.5 11.1 -11.2 11.1c-6.7 0 -11 -3.4 -11.6 -8.7h6.8c0.4 1.7 2.1 2.8 4.5 2.8c2.6 0 4.7 -1.4 4.7 -5.1v-3.2c-1.2 2 -3.6 3.5 -6.9 3.5c-5.5 0 -9.9 -4.5 -9.9 -11.6C229.5 355.2 233.8 350.7 239.4 350.7zM241.4 356.7c-2.6 0 -4.9 1.9 -4.9 5.5c0 3.6 2.3 5.6 4.9 5.6c2.6 0 4.9 -2 4.9 -5.5C246.3 358.7 244 356.7 241.4 356.7z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M268.3 373.8c-6.6 0 -11.6 -4.4 -11.6 -11.5c0 -7.1 5.1 -11.5 11.6 -11.5c6.6 0 11.6 4.4 11.6 11.5C280 369.4 274.9 373.8 268.3 373.8zM268.3 367.9c2.5 0 4.7 -1.8 4.7 -5.6c0 -3.8 -2.2 -5.6 -4.7 -5.6c-2.5 0 -4.7 1.8 -4.7 5.6C263.7 366 265.8 367.9 268.3 367.9z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
<path
|
||||
android:pathData="M299.2 361.3c0 -3.1 -1.7 -4.7 -4.3 -4.7c-2.6 0 -4.3 1.7 -4.3 4.7v12.2h-6.9v-22.4h6.9v3c1.4 -1.9 3.8 -3.2 6.8 -3.2c5.2 0 8.6 3.5 8.6 9.6v13.1h-6.8V361.3z"
|
||||
android:fillColor="#FFFFFF" />
|
||||
</vector>
|
||||
12
app/src/main/res/drawable/ic_memo.xml
Normal file
12
app/src/main/res/drawable/ic_memo.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="16dp"
|
||||
android:height="16dp"
|
||||
android:viewportWidth="42"
|
||||
android:viewportHeight="42">
|
||||
<path
|
||||
android:pathData="M37.8,0L4.2,0C1.89,0 0.021,1.89 0.021,4.2L0,42L8.4,33.6L37.8,33.6C40.11,33.6 42,31.71 42,29.4L42,4.2C42,1.89 40.11,0 37.8,0ZM12,24L9,24L9,21L12,21L12,24ZM12,18L9,18L9,15L12,15L12,18ZM12,12L9,12L9,9L12,9L12,12ZM27,24L15,24L15,21L27,21L27,24ZM33,18L15,18L15,15L33,15L33,18ZM33,12L15,12L15,9L33,9L33,12Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#4A90E2"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
1252
app/src/main/res/drawable/ic_profile_zebra_01.xml
Normal file
1252
app/src/main/res/drawable/ic_profile_zebra_01.xml
Normal file
File diff suppressed because it is too large
Load Diff
1252
app/src/main/res/drawable/ic_profile_zebra_02.xml
Normal file
1252
app/src/main/res/drawable/ic_profile_zebra_02.xml
Normal file
File diff suppressed because it is too large
Load Diff
163
app/src/main/res/drawable/ic_qr_scan.xml
Normal file
163
app/src/main/res/drawable/ic_qr_scan.xml
Normal file
@@ -0,0 +1,163 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="42"
|
||||
android:viewportHeight="42">
|
||||
|
||||
<path
|
||||
android:pathData="M16.4055,35.5685L6.1345,35.5685L6.1345,25.1279C6.3509,25.1279 6.5927,25.0727 6.8345,25.0727C9.7745,25.0727 12.7145,25.0727 15.6545,25.0727C16.2824,25.0727 16.503,25.2382 16.503,25.883C16.4733,28.8739 16.503,31.8648 16.503,34.86C16.4691,35.0891 16.4267,35.3267 16.4055,35.5685ZM11.2721,33.5152C12.1206,33.5152 13.0073,33.5152 13.877,33.5152C14.3267,33.5152 14.5176,33.3667 14.5133,32.8958C14.5133,31.1592 14.5133,29.4226 14.5133,27.6861C14.5133,27.2618 14.3945,27.02 13.9109,27.0242C12.1503,27.0242 10.3855,27.0242 8.6248,27.0242C8.2006,27.0242 8.0224,27.1812 8.0224,27.6097C8.0224,29.3745 8.0224,31.1352 8.0224,32.8958C8.0224,33.3709 8.2133,33.5236 8.663,33.5152C9.5327,33.5152 10.4024,33.5152 11.2721,33.5152Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M16.4139,6.1048C16.4352,6.3636 16.4691,6.5885 16.4691,6.8091C16.4691,9.7788 16.4691,12.7485 16.4691,15.7182C16.4691,16.1848 16.4267,16.4903 15.8285,16.4861C12.7358,16.4606 9.643,16.4861 6.5503,16.4861C6.4075,16.4755 6.2657,16.4542 6.1261,16.4224L6.1261,6.1048L16.4139,6.1048ZM11.2552,14.5091C12.1036,14.5091 12.9521,14.5091 13.8006,14.5091C14.3055,14.5091 14.543,14.3776 14.5345,13.8218C14.5091,12.1248 14.5345,10.4533 14.5345,8.7648C14.5345,8.277 14.3648,8.0861 13.8642,8.0903C12.1673,8.1115 10.4448,8.0903 8.7309,8.0903C8.26,8.0903 8.0309,8.2218 8.0351,8.7394C8.0564,10.4364 8.0351,12.163 8.0351,13.8727C8.0351,14.3309 8.2048,14.5176 8.663,14.5048C9.52,14.4964 10.3897,14.5091 11.2552,14.5091Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M25.1448,6.0752L35.437,6.0752C35.437,6.3297 35.4964,6.5715 35.4964,6.8176C35.4964,9.7576 35.4964,12.6976 35.4964,15.6376C35.4964,16.2612 35.3309,16.4861 34.6818,16.4861C31.7121,16.4564 28.7424,16.4861 25.7727,16.4861C25.2764,16.4861 25.0345,16.38 25.0387,15.8115C25.0642,12.74 25.0387,9.6727 25.0387,6.6055C25.0646,6.4269 25.1,6.2499 25.1448,6.0752L25.1448,6.0752ZM27.0497,11.2339C27.0497,12.1291 27.0497,13.0242 27.0497,13.9152C27.0497,14.3394 27.2067,14.5133 27.6352,14.5133C29.3958,14.5133 31.1606,14.5133 32.9212,14.5133C33.3964,14.5133 33.5448,14.3267 33.5406,13.8727C33.5236,12.1758 33.5236,10.4646 33.5406,8.7394C33.5406,8.2855 33.3836,8.0988 32.917,8.103C31.1818,8.103 29.4424,8.103 27.7073,8.103C27.1982,8.103 27.0327,8.3024 27.0455,8.7861C27.0667,9.6006 27.0497,10.4152 27.0497,11.2339L27.0497,11.2339Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M35.4964,22.7903L34.6139,22.8327C33.4049,22.8624 33.3964,22.5655 33.3964,24.1055C33.3964,24.8691 33.3964,25.637 33.3964,26.4006C33.3964,26.8248 33.2606,27.0327 32.7812,27.0539C31.2455,27.1133 31.2455,27.1303 31.3048,28.717C31.3048,28.8655 31.3345,29.0097 31.36,29.2727C31.716,29.294 32.073,29.294 32.4291,29.2727C33.2267,29.1709 33.5024,29.5273 33.3964,30.2782C33.3815,30.4305 33.3815,30.584 33.3964,30.7364C33.3964,31.1606 33.2224,31.3218 32.7982,31.3133C31.8267,31.3133 30.8552,31.2879 29.8836,31.3133C29.4042,31.3133 29.26,31.1309 29.2727,30.6812C29.2727,29.7606 29.2303,28.8358 29.2727,27.9236C29.3194,27.1855 29.0309,27.003 28.3521,27.0327C27.2873,27.0794 26.2309,27.0327 25.1067,27.0327L25.1067,25.1236C25.3952,25.1236 25.6624,25.077 25.9552,25.077C27.5418,25.077 29.1242,25.0558 30.7067,25.077C31.2455,25.077 31.4236,24.8903 31.4067,24.3642C31.377,23.4182 31.4321,22.4721 31.4067,21.5303C31.3812,20.9364 31.6061,20.7921 32.1618,20.7964C33.5109,20.7964 33.5406,20.7964 33.5364,19.4303C33.5364,18.8703 33.7485,18.7006 34.2576,18.7473C34.5407,18.7309 34.8248,18.7408 35.1061,18.777C35.2715,18.8236 35.5006,19.0442 35.5048,19.2012C35.5091,20.3636 35.4964,21.5345 35.4964,22.7903Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.6818,18.5182C18.7303,18.76 18.7303,18.76 18.7303,16.9061C18.7303,16.3164 18.7303,15.7309 18.7303,15.1412C18.7303,14.6915 18.8958,14.5218 19.3582,14.5006C20.9109,14.437 20.8939,14.42 20.8388,12.9012C20.8388,12.4303 20.6479,12.2903 20.1982,12.2733C18.7345,12.2139 18.7345,12.197 18.7345,10.7206C18.7345,9.4139 18.7345,8.1115 18.7345,6.8048C18.7345,6.2703 18.8533,6.02 19.46,6.0455C20.5503,6.0879 21.6491,6.0455 22.8539,6.0455C22.8539,6.6436 22.8794,7.1739 22.8539,7.7C22.8539,7.8358 22.6248,7.9758 22.4764,8.0776C22.4085,8.1242 22.2812,8.0776 22.1752,8.0776C20.7455,8.1242 20.457,8.4806 20.7879,9.8933C20.8888,10.0966 21.0815,10.2387 21.3055,10.2752C21.8113,10.3032 22.3184,10.3032 22.8242,10.2752C22.8455,10.7291 22.8752,11.1024 22.8794,11.48C22.8794,12.9097 22.8794,14.3436 22.8794,15.7733C22.8794,16.1976 22.7564,16.4097 22.2727,16.4267C20.7879,16.5455 20.7879,16.5455 20.7242,18.0303C20.72,18.1788 20.6988,18.3273 20.6818,18.5182Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.737,20.7412C20.737,21.9164 20.7073,23.0915 20.737,24.2624C20.737,24.7758 20.5545,24.9582 20.0709,24.9158C19.8676,24.8988 19.6633,24.8988 19.46,24.9158C18.9509,24.9582 18.7345,24.7715 18.7218,24.2242C18.6879,22.8285 18.6624,22.8327 17.2667,22.8327C15.9388,22.8327 14.6109,22.803 13.2873,22.8327C12.617,22.8327 12.3327,22.7012 12.3582,21.9503C12.4091,20.5079 12.5024,20.6776 11.0855,20.7115C10.3303,20.737 10.2624,20.3764 10.2794,19.7867C10.2964,19.197 10.2158,18.6497 11.1279,18.7218C11.9686,18.7706 12.8114,18.7706 13.6521,18.7218C14.1867,18.7218 14.3564,18.9127 14.3648,19.4345C14.3903,20.7879 14.4115,20.7964 15.7903,20.7879C17.4448,20.7879 19.0909,20.7879 20.7624,20.7879L20.737,20.7412Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.877,35.543L20.877,33.5152C22.7436,33.5152 24.5509,33.5152 26.3624,33.5152C26.9818,33.5152 27.2109,33.3539 27.2109,32.7048C27.2109,31.2455 26.9606,31.3897 28.5727,31.3812C28.7467,31.3812 28.9206,31.4152 29.137,31.4364L29.137,35.5388L20.877,35.543Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.7285,29.2727C21.1849,29.2986 21.6424,29.2986 22.0988,29.2727C22.7394,29.1964 22.9218,29.4764 22.8582,30.0576C22.8721,30.3111 22.8622,30.5653 22.8285,30.817C22.7691,31.0036 22.5527,31.1436 22.4042,31.2836C22.3576,31.3218 22.2558,31.2836 22.1794,31.2836C20.7836,31.3218 20.7582,31.3218 20.7582,32.6879C20.7582,33.2394 20.5503,33.3836 20.0412,33.3921C18.7473,33.3921 18.7473,33.4303 18.7473,32.1703C18.7473,30.7703 18.7473,29.3661 18.7473,27.9618C18.7473,27.3721 18.9297,27.1133 19.5406,27.1727C19.7693,27.1918 19.9992,27.1918 20.2279,27.1727C20.6182,27.1727 20.7752,27.3255 20.7582,27.72C20.7115,28.2079 20.7285,28.6873 20.7285,29.2727Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M29.1794,22.8242C28.6537,22.8524 28.1269,22.8524 27.6012,22.8242C27.4527,22.8242 27.2533,22.5612 27.2152,22.4C27.1048,21.8697 27.2406,21.1273 26.9352,20.8473C26.6297,20.5673 25.9212,20.7497 25.3867,20.7242C25.2819,20.702 25.1795,20.6693 25.0812,20.6267C25.0537,20.1827 25.0622,19.7372 25.1067,19.2945C25.172,19.0633 25.3488,18.8801 25.5776,18.8067C26.6255,18.76 27.6733,18.7642 28.717,18.8067C28.9208,18.8677 29.0802,19.0271 29.1412,19.2309C29.1964,20.3636 29.1794,21.5473 29.1794,22.8242Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M22.8667,26.9776L20.8727,26.9776L20.8727,25.0515C21.5218,25.0939 22.3236,24.92 22.6885,25.2424C23.0533,25.5648 22.8285,26.3624 22.8667,26.9776Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M31.4364,35.6958L31.4364,33.4685C32.0939,33.5279 32.8788,33.3836 33.2564,33.7103C33.5491,33.9606 33.5703,35.0382 33.2818,35.3267C32.9933,35.6152 32.1448,35.5812 31.4364,35.6958Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M20.7624,20.7879C20.7836,20.3085 20.8303,19.8248 20.8176,19.3455C20.8048,18.8661 20.9915,18.7388 21.4073,18.7727L21.4836,18.7727C22.8709,18.7133 23.0236,18.8618 22.8285,20.2406C22.7503,20.4686 22.5645,20.6432 22.3321,20.7073C21.8019,20.7555 21.2693,20.7739 20.737,20.7624L20.7624,20.7879Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M10.3133,20.7624C10.1394,21.6321 10.1945,22.3745 9.8467,22.7436C9.6176,22.9939 8.5442,22.9176 8.3406,22.6333C8.0691,22.2515 8.0436,21.263 8.3406,21.0212C8.7055,20.6988 9.4818,20.843 10.3133,20.7624Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M27.1261,31.2497L25.0303,31.2497C25.0982,30.5921 24.9879,29.8582 25.2933,29.3915C25.463,29.137 26.6127,29.1158 26.8079,29.3915C27.1515,29.7988 27.037,30.5455 27.1261,31.2497Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M6.1261,18.8491C8.3321,18.6073 8.0861,18.6158 7.9545,20.6436L6.1261,20.6436L6.1261,18.8491Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M22.96,22.9388C23.3274,22.9607 23.6957,22.9607 24.063,22.9388C24.7164,22.8582 24.9752,23.0745 24.9455,23.7873C24.8988,24.8606 24.2879,25.3061 23.2485,24.8988C23.1049,24.8187 23.0074,24.6757 22.9855,24.5127C22.9388,24.0164 22.96,23.537 22.96,22.9388Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M22.9558,29.1582C22.9777,28.7838 22.9777,28.4084 22.9558,28.0339C22.8667,27.3594 23.1212,27.1388 23.8042,27.1855C24.8564,27.2321 25.3188,27.8982 24.903,28.9206C24.8155,29.0581 24.6704,29.1485 24.5085,29.1667C24.0164,29.1752 23.537,29.1582 22.9558,29.1582Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M35.6109,29.12L33.5152,29.12C33.5533,28.5048 33.4133,27.7752 33.7018,27.3297C33.8758,27.0667 34.9745,27.02 35.2164,27.2788C35.5558,27.6648 35.4836,28.4242 35.6109,29.12Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M33.4388,31.4236L35.5303,31.4236C35.4752,32.0727 35.6024,32.8067 35.3012,33.2352C35.1103,33.5024 33.9988,33.5279 33.7867,33.2691C33.4558,32.8661 33.5448,32.1236 33.4388,31.4236Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M12.2776,30.4394C12.4388,31.1055 12.1206,31.3558 11.3358,31.2879C10.3006,31.2242 10.3006,31.2879 10.3006,30.3036C10.3006,29.3194 10.3091,29.2727 11.2976,29.2727C12.2861,29.2727 12.2776,29.2727 12.2776,30.4394Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M11.4545,12.2776C10.2836,12.2776 10.2836,12.2776 10.2836,11.323C10.2836,10.3685 10.2836,10.3727 11.2976,10.3091C12.0697,10.2582 12.32,10.4958 12.2818,11.2806C12.2648,11.9679 12.2436,12.4812 11.4545,12.2776Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M30.3418,10.3218C31.3048,10.3218 31.3048,10.3218 31.3048,11.3485C31.3048,12.2818 31.3048,12.2818 30.2442,12.2776C29.277,12.2776 29.277,12.2776 29.277,11.2509C29.2727,10.3218 29.2727,10.3218 30.3418,10.3218Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M11.9679,0l-9.2061,0l-2.7618,0l0,2.7618l0,9.2061l2.7618,0l0,-9.2061l9.2061,0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M41.737,11.9679l0,-9.2061l0,-2.7618l-2.7618,0l-9.2061,0l0,2.7618l9.2061,0l0,9.2061z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M29.7691,41.737l9.2061,0l2.7618,0l0,-2.7618l0,-9.2061l-2.7618,0l0,9.2061l-9.2061,0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M0,29.7691l0,9.2061l0,2.7618l2.7618,0l9.2061,0l0,-2.7618l-9.2061,0l0,-9.2061z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
10
app/src/main/res/drawable/ic_qrcode_24dp.xml
Normal file
10
app/src/main/res/drawable/ic_qrcode_24dp.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
|
||||
<path
|
||||
android:fillColor="@android:color/black"
|
||||
android:pathData="M3,11H5V13H3V11M11,5H13V9H11V5M9,11H13V15H11V13H9V11M15,11H17V13H19V11H21V13H19V15H21V19H19V21H17V19H13V21H11V17H15V15H17V13H15V11M19,19V15H17V19H19M15,3H21V9H15V3M17,5V7H19V5H17M3,3H9V9H3V3M5,5V7H7V5H5M3,15H9V21H3V15M5,17V19H7V17H5Z"/>
|
||||
</vector>
|
||||
9
app/src/main/res/drawable/ic_receipt_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_receipt_24dp.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="@android:color/black"
|
||||
android:pathData="M18,17L6,17v-2h12v2zM18,13L6,13v-2h12v2zM18,9L6,9L6,7h12v2zM3,22l1.5,-1.5L6,22l1.5,-1.5L9,22l1.5,-1.5L12,22l1.5,-1.5L15,22l1.5,-1.5L18,22l1.5,-1.5L21,22L21,2l-1.5,1.5L18,2l-1.5,1.5L15,2l-1.5,1.5L12,2l-1.5,1.5L9,2 7.5,3.5 6,2 4.5,3.5 3,2v20z"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_receive.xml
Normal file
5
app/src/main/res/drawable/ic_receive.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="@color/zcashGreen" android:pathData="M20,5.41L18.59,4 7,15.59V9H5v10h10v-2H8.41z"/>
|
||||
</vector>
|
||||
12
app/src/main/res/drawable/ic_receive_funds.xml
Normal file
12
app/src/main/res/drawable/ic_receive_funds.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="23dp"
|
||||
android:height="28dp"
|
||||
android:viewportWidth="23"
|
||||
android:viewportHeight="28">
|
||||
<path
|
||||
android:pathData="M23,4.5167L23,15.5777C23,19.5236 20.7958,23.1307 17.25,24.9876L11.5,28L5.75,24.9876C2.2042,23.1307 0,19.5236 0,15.5777L0,4.5167L11.5,0L23,4.5167ZM11.2157,14.2963L16.2746,9L19,11.8519L11.2157,20L6,14.541L8.7254,11.6892L11.2157,14.2963Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#666666"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
496
app/src/main/res/drawable/ic_sadzebra.xml
Normal file
496
app/src/main/res/drawable/ic_sadzebra.xml
Normal file
File diff suppressed because one or more lines are too long
12
app/src/main/res/drawable/ic_scan_corner.xml
Normal file
12
app/src/main/res/drawable/ic_scan_corner.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="52dp"
|
||||
android:height="53dp"
|
||||
android:viewportWidth="52"
|
||||
android:viewportHeight="53">
|
||||
<path
|
||||
android:pathData="M0.0488,0l0,33.502l19.0122,18.7646l32.4937,0l0,-11.9263l-27.7486,0l-11.1138,-11.5889l0,-28.7515z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
36
app/src/main/res/drawable/ic_scan_frame.xml
Normal file
36
app/src/main/res/drawable/ic_scan_frame.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="279dp"
|
||||
android:height="280dp"
|
||||
android:viewportWidth="279"
|
||||
android:viewportHeight="280">
|
||||
<path
|
||||
android:pathData="M18.977,6L7,17.981L7,260.023L18.977,272L261.008,272L273,259.355L273,17.981L261.023,6L18.977,6Z"
|
||||
android:strokeWidth="2"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#FFFFFF"
|
||||
android:fillType="evenOdd"/>
|
||||
<path
|
||||
android:pathData="M1,227l0,33.502l19.012,18.765l32.494,0l0,-11.926l-27.749,0l-11.114,-11.589l0,-28.751z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M226.62,278.886l33.502,-0l18.765,-19.012l0,-32.494l-11.926,-0l0,27.749l-11.589,11.114l-28.751,-0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M278.506,52.267l-0,-33.502l-19.012,-18.765l-32.494,-0l-0,11.926l27.749,-0l11.114,11.589l-0,28.751z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M52.886,0.38l-33.502,0l-18.765,19.012l-0,32.494l11.926,0l-0,-27.749l11.589,-11.114l28.751,0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
48
app/src/main/res/drawable/ic_scan_overlay.xml
Normal file
48
app/src/main/res/drawable/ic_scan_overlay.xml
Normal file
@@ -0,0 +1,48 @@
|
||||
<vector
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="726dp"
|
||||
android:viewportHeight="726"
|
||||
android:viewportWidth="412"
|
||||
android:width="412dp">
|
||||
<path
|
||||
android:fillAlpha="0.6"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M412,0L412,732L0,732L0,0L412,0ZM351,135L61,135L46,150.005L46,440L61,455L351,455L366,439.184L366,150.005L351,135Z"
|
||||
android:strokeAlpha="0.5108352"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1" />
|
||||
<group android:scaleX="0.5" android:scaleY="0.5">
|
||||
|
||||
<path
|
||||
android:fillColor="#00000000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M61.414,136L47,150.419L47,439.586L61.414,454L350.57,454L365,438.785L365,150.419L350.586,136L61.414,136Z"
|
||||
android:strokeColor="#FFFFFF"
|
||||
android:strokeWidth="2" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M41.049,407l0,33.502l19.012,18.765l32.494,0l0,-11.926l-27.749,0l-11.114,-11.589l0,-28.751z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M319,460.451l33.502,-0l18.765,-19.012l0,-32.494l-11.926,-0l0,27.749l-11.589,11.114l-28.751,-0z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M371.218,182.451l-0,-33.502l-19.012,-18.765l-32.494,-0l-0,11.926l27.749,-0l11.114,11.589l-0,28.751z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:pathData="M93.267,129l-33.502,0l-18.765,19.012l-0,32.494l11.926,0l-0,-27.749l11.589,-11.114l28.751,0z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1" />
|
||||
</group>
|
||||
</vector>
|
||||
44
app/src/main/res/drawable/ic_scan_overlay_edited.xml
Normal file
44
app/src/main/res/drawable/ic_scan_overlay_edited.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="412dp"
|
||||
android:height="726dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="726">
|
||||
<path
|
||||
android:pathData="M412,0L412,732L0,732L0,0L412,0ZM327.484,157L85.516,157L73,169.473L73,410.531L85.516,423L327.484,423L340,409.853L340,169.473L327.484,157Z"
|
||||
android:strokeAlpha="0.5108352"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#000000"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillAlpha="0.6"/>
|
||||
<path
|
||||
android:pathData="M84.977,157L73,168.981L73,411.023L84.977,423L327.008,423L339,410.355L339,168.981L327.023,157L84.977,157Z"
|
||||
android:strokeWidth="2"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#FFFFFF"
|
||||
android:fillType="evenOdd"/>
|
||||
<path
|
||||
android:pathData="M67,378l0,33.502l19.012,18.765l32.494,0l0,-11.926l-27.749,0l-11.114,-11.589l0,-28.751z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M292.62,429.886l33.502,-0l18.765,-19.012l0,-32.494l-11.926,-0l0,27.749l-11.589,11.114l-28.751,-0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M344.506,203.267l-0,-33.502l-19.012,-18.765l-32.494,-0l-0,11.926l27.749,-0l11.114,11.589l-0,28.751z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
<path
|
||||
android:pathData="M118.886,151.38l-33.502,0l-18.765,19.012l-0,32.494l11.926,0l-0,-27.749l11.589,-11.114l28.751,0z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
14
app/src/main/res/drawable/ic_shield.xml
Normal file
14
app/src/main/res/drawable/ic_shield.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="358dp"
|
||||
android:height="418dp"
|
||||
android:viewportWidth="358"
|
||||
android:viewportHeight="418">
|
||||
<path
|
||||
android:pathData="M179,0C207.069,11.901 236.599,23.2 267.591,33.897C298.582,44.595 328.719,53.128 358,59.497C354.385,162.895 337.225,240.396 306.519,292C275.814,343.603 233.307,385.603 179,418C124.693,385.603 82.186,343.603 51.481,292C20.775,240.396 3.615,162.895 0,59.497C29.281,53.128 59.418,44.595 90.409,33.897C121.401,23.2 150.931,11.901 179,0Z"
|
||||
android:strokeAlpha="0.2"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#A1A1A1"
|
||||
android:fillType="nonZero"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillAlpha="1.0"/>
|
||||
</vector>
|
||||
166
app/src/main/res/drawable/ic_shield_address.xml
Normal file
166
app/src/main/res/drawable/ic_shield_address.xml
Normal file
@@ -0,0 +1,166 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android" xmlns:aapt="http://schemas.android.com/aapt"
|
||||
android:viewportWidth="161"
|
||||
android:viewportHeight="200"
|
||||
android:width="161dp"
|
||||
android:height="200dp">
|
||||
<path
|
||||
android:pathData="M77.5 2Q85.4 1.1 87 6.5L86.5 36Q84.2 32.2 77.5 33L71.5 37L71 8.5L75.5 3L77.5 2Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M43.5 12Q52.1 10.9 54 16.5L54 91.5L50.5 96L44.5 97L39 92.5L38 90.5L38 17.5L41.5 13L43.5 12Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M110.5 12Q119.1 10.9 121 16.5L121 67.5L117.5 71L110.5 72L107 70L105 65.5L105 18.5L108.5 13L110.5 12Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M12.5 30Q20.4 29.1 22 34.5L22 158.5L18.5 162L11.5 163L8 160.5L6 156.5L6 36.5L8 32L12.5 30Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M145.5 30Q153.4 29.1 155 34.5L156 37.5L156 155.5L151.5 162L145.5 163L140 158.5L139 155.5L139 37.5L143.5 31L145.5 30Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M79.5 50L86 53.5L87 55.5L87 94L83.5 94L78 88.5L71 80.5L71 56.5L75.5 51L79.5 50Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M110.5 89Q117.8 87.8 120 91.5L121 93.5L121 175.5Q119.1 181.1 110.5 180L107 177.5L105 173.5L105 94.5L108.5 90L110.5 89Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M72.5 110L74.5 110L80 115.5L87 124.5L87 142.5L84.5 146L75.5 147L71 141.5L71 111.5L72.5 110Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M44.5 113Q51.1 112.4 53 116.5L54 118.5L54 175.5Q52.1 181.1 43.5 180L39 176.5L38 174.5L38 119.5L42.5 114L44.5 113Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M71.5 162Q73.7 167.3 82.5 166L86.5 163L87 192.5L83.5 197L78.5 198L72 193.5L71 191.5L71.5 162Z"
|
||||
android:fillColor="#0E0E0E"
|
||||
android:strokeColor="#0E0E0E"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M77.5 1Q85.6 0.9 88 6.5L87.5 39Q84.8 33.8 77 33.5L81.5 33L86.5 36L87 6.5Q85.4 1.1 77.5 2L72 6.5L71 8.5L71 36.5L74.5 34L76 34.5L70.5 39L70 8.5L75.5 2L77.5 1Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M44.5 11Q52.6 10.9 55 16.5L55 91.5L50.5 97L44.5 98L39 95L37 90.5L37 18.5L38 18.5L38 90.5L42.5 96L47.5 97L53 93.5L54 91.5L54 16.5L50.5 13L44.5 12L44.5 11Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M111.5 11L115.5 11L121 14L122 16.5L122 67.5L115.5 73L110.5 73L106 69.5L104 65.5L104 18.5L107.5 13L107 14.5L105 18.5L105 65.5L107 70L110.5 72L115.5 72L121 67.5L121 16.5L117.5 13L111.5 12L111.5 11Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M41.5 12L43 12.5L39 15.5L38.5 17L38 15.5L41.5 12Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M12.5 29L16 29.5L8 32L6 36.5L6 156.5L9.5 162L11 162.5L9.5 163L5 156.5L5 36.5L8.5 31L12.5 29Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M145.5 29Q152.8 28.2 155 32.5L156 36.5L155 36.5Q155.5 31.5 151.5 31L145.5 30L140 34.5L139.5 37L139 34.5L141.5 31L145.5 29Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M17.5 30L23 34.5L23 158.5L18.5 163L12.5 164L12.5 163Q20.4 163.9 22 158.5L22 34.5L18.5 31L17.5 30Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M76.5 50L79 50.5L76.5 51L76.5 50Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M80.5 50Q85.3 50.3 87 53.5L88 55.5L88 93.5L87 93.5L87 55.5L84.5 52L80.5 51L80.5 50Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M74.5 51L72 54.5L71.5 56L71 54.5L74.5 51Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M70.5 57L71 80.5L83.5 94L86 94.5L83.5 95L70 80.5L70.5 57Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M110.5 88Q118.8 86.7 121 91.5L122 93.5L122 175.5L119.5 179Q117.2 181.7 111.5 181L111.5 180Q119.4 180.9 121 175.5L121 93.5L118.5 90L110.5 89L106.5 92L108.5 89L110.5 88Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M105.5 93L105 94.5L105 173.5L108.5 179L110 179.5L108.5 180L104 173.5L104 94.5L105.5 93Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M72.5 109L74.5 109L82 116.5L88 123.5L88 142.5L84.5 147L75.5 148L71 142.5L72 142.5L75.5 147Q83.5 148.5 86 144.5L87 142.5L87 124.5L74.5 110L71 111.5L70.5 141L70 111.5L72.5 109Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M42.5 113L44 113.5L39 117.5L38 119.5L37.5 174L37 119.5L40.5 114L42.5 113Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M48.5 113Q53.5 112.5 54 116.5L55 118.5L55 175.5L49.5 180L49.5 179L54 175.5L54 118.5L51.5 115Q47.7 114.7 48.5 113Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M139.5 156L143.5 162L149.5 163L155 158.5L155.5 156L156 158.5L153.5 162Q151.2 164.7 145.5 164L141 162L139 158.5L139.5 156Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M70 161L75 164.5L71 162.5L71 191.5L75.5 197L78 197.5L75.5 198L72 196L70 191.5L70 161Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M87.5 161L88 193.5L84 196.5L87 192.5L87 163.5L84.5 165L76.5 166L76.5 165Q85.3 166.3 87.5 161Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M38.5 175L41.5 179L43 179.5L41.5 180L38 176.5L38.5 175Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M44.5 180L48 180.5L44.5 181L44.5 180Z"
|
||||
android:fillColor="#FEFEFE"
|
||||
android:strokeColor="#FEFEFE"
|
||||
android:strokeWidth="1" />
|
||||
<path
|
||||
android:pathData="M0 0L161 0L161 200L0 200L0 0ZM78 1L76 2L70 9L71 39L77 34Q86 33 88 39L88 7Q86 1 78 1ZM45 11L42 12L37 19L37 91L39 95L45 98L51 97L55 92L55 17Q53 11 45 11ZM112 11L108 13L104 19L104 66L106 70L111 73L116 73L122 68L122 17L121 14L116 11L112 11ZM13 29L9 31L5 37L5 157L6 160L13 164L19 163L23 159L23 35Q21 29 13 29ZM146 29L142 31L139 35L139 159L141 162L146 164Q151 165 154 162L156 159L156 35L155 33Q153 28 146 29ZM77 50L75 51L70 58L70 81L84 95L88 94L88 56L87 54Q85 49 77 50ZM111 88L109 89L104 95L104 174L106 178L112 181Q117 182 120 179L122 176L122 94L121 92Q119 87 111 88ZM73 109L70 112L70 141L76 148L85 147L88 143L88 124L82 117L75 109L73 109ZM46 112L41 114L37 120L37 174L38 177L45 181Q53 181 55 176L55 119L54 117L51 113L46 112ZM70 161L70 192L72 196L76 198Q86 200 88 194L88 161L83 165L76 165L70 161Z"
|
||||
android:fillColor="#FFFFFF"
|
||||
android:strokeColor="#FFFFFF"
|
||||
android:strokeWidth="1" />
|
||||
</vector>
|
||||
12
app/src/main/res/drawable/ic_shielded.xml
Normal file
12
app/src/main/res/drawable/ic_shielded.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="33dp"
|
||||
android:height="42dp"
|
||||
android:viewportWidth="33"
|
||||
android:viewportHeight="42">
|
||||
<path
|
||||
android:pathData="M33,6.7751L33,23.3666C33,29.2854 29.8375,34.696 24.75,37.4813L16.5,42L8.25,37.4813C3.1625,34.696 0,29.2854 0,23.3666L0,6.7751L16.5,0L33,6.7751Z"
|
||||
android:strokeWidth="1"
|
||||
android:fillColor="#FFB900"
|
||||
android:fillType="evenOdd"
|
||||
android:strokeColor="#00000000"/>
|
||||
</vector>
|
||||
5
app/src/main/res/drawable/ic_warning_24dp.xml
Normal file
5
app/src/main/res/drawable/ic_warning_24dp.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<vector android:height="24dp" android:tint="#FFFFFF"
|
||||
android:viewportHeight="24.0" android:viewportWidth="24.0"
|
||||
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FF000000" android:pathData="M1,21h22L12,2 1,21zM13,18h-2v-2h2v2zM13,14h-2v-4h2v4z"/>
|
||||
</vector>
|
||||
1252
app/src/main/res/drawable/ic_zcash_primary.xml
Normal file
1252
app/src/main/res/drawable/ic_zcash_primary.xml
Normal file
File diff suppressed because it is too large
Load Diff
1252
app/src/main/res/drawable/ic_zcash_white.xml
Normal file
1252
app/src/main/res/drawable/ic_zcash_white.xml
Normal file
File diff suppressed because it is too large
Load Diff
1252
app/src/main/res/drawable/ic_zcashlogo.xml
Normal file
1252
app/src/main/res/drawable/ic_zcashlogo.xml
Normal file
File diff suppressed because it is too large
Load Diff
1252
app/src/main/res/drawable/ic_zec_symbol.xml
Normal file
1252
app/src/main/res/drawable/ic_zec_symbol.xml
Normal file
File diff suppressed because it is too large
Load Diff
1252
app/src/main/res/drawable/ic_zec_symbol_right.xml
Normal file
1252
app/src/main/res/drawable/ic_zec_symbol_right.xml
Normal file
File diff suppressed because it is too large
Load Diff
8
app/src/main/res/drawable/ripple_button_circle.xml
Normal file
8
app/src/main/res/drawable/ripple_button_circle.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<ripple
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="@android:color/white">
|
||||
<item android:drawable="@drawable/background_circle" />
|
||||
</ripple>
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@android:color/transparent" android:state_pressed="false" />
|
||||
<item android:drawable="@drawable/ripple_button_circle" android:state_pressed="true" />
|
||||
</selector>
|
||||
|
||||
Reference in New Issue
Block a user