Skip to content
This repository was archived by the owner on Aug 11, 2025. It is now read-only.

Commit ab19742

Browse files
Prepare for release (#2687)
* WIP: Change logo * Update app logo * Add convention plugins to the README * Add `scripts/detekt.sh` * Update Lint baseline * Remove lint baselines per each module * Improve the Feature Request template * Remove the disable GitHub backups card * Hide the "Features" button in Settings * Bump version to "4.5.0" (150)
1 parent 5c07aa2 commit ab19742

File tree

85 files changed

+142
-6243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+142
-6243
lines changed

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ body:
66
- type: checkboxes
77
id: terms
88
attributes:
9-
label: Please confirm the following
9+
label: "Please confirm the following:"
1010
options:
11-
- label: I checked [the current issues](https://github.com/Ivy-Apps/ivy-wallet/issues) for duplicate issues
11+
- label: I've checked [the current issues](https://github.com/Ivy-Apps/ivy-wallet/issues) for duplicate issues.
12+
required: true
13+
- label: I've requested a single (only one) feature/change in this issue. It complies with the One Request Per GitHub Issue (ORPGI) rule.
14+
required: true
15+
- label: My issue is well-defined and describes how it should be implemented from UI/UX perspective.
1216
required: true
1317
- type: textarea
1418
id: description

README.md

Lines changed: 1 addition & 0 deletions

app/lint-baseline.xml

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,13 @@
321321
file="src/main/res/mipmap-anydpi-v26"/>
322322
</issue>
323323

324+
<issue
325+
id="ObsoleteSdkInt"
326+
message="This folder configuration (`v26`) is unnecessary; `minSdkVersion` is 28. Merge all the resources in this folder into `mipmap-anydpi`.">
327+
<location
328+
file="src/release/res/mipmap-anydpi-v26"/>
329+
</issue>
330+
324331
<issue
325332
id="UseCompoundDrawables"
326333
message="This tag and its children can be replaced by one `&lt;TextView/>` and a compound drawable"
@@ -4431,6 +4438,39 @@
44314438
column="1"/>
44324439
</issue>
44334440

4441+
<issue
4442+
id="UnusedResources"
4443+
message="The resource `R.drawable.ic_launcher_background` appears to be unused"
4444+
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
4445+
errorLine2="^">
4446+
<location
4447+
file="../ivy-resources/src/main/res/drawable/ic_launcher_background.xml"
4448+
line="1"
4449+
column="1"/>
4450+
</issue>
4451+
4452+
<issue
4453+
id="UnusedResources"
4454+
message="The resource `R.drawable.ic_launcher_foreground` appears to be unused"
4455+
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
4456+
errorLine2="^">
4457+
<location
4458+
file="../ivy-resources/src/main/res/drawable/ic_launcher_foreground.xml"
4459+
line="1"
4460+
column="1"/>
4461+
</issue>
4462+
4463+
<issue
4464+
id="UnusedResources"
4465+
message="The resource `R.drawable.ic_launcher_monochrome` appears to be unused"
4466+
errorLine1="&lt;vector xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;"
4467+
errorLine2="^">
4468+
<location
4469+
file="../ivy-resources/src/main/res/drawable/ic_launcher_monochrome.xml"
4470+
line="1"
4471+
column="1"/>
4472+
</issue>
4473+
44344474
<issue
44354475
id="UnusedResources"
44364476
message="The resource `R.drawable.ic_lightmode` appears to be unused"
@@ -8750,6 +8790,50 @@
87508790
column="6"/>
87518791
</issue>
87528792

8793+
<issue
8794+
id="MonochromeLauncherIcon"
8795+
message="The application adaptive icon is missing a monochrome tag"
8796+
errorLine1="&lt;adaptive-icon xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
8797+
errorLine2="^">
8798+
<location
8799+
file="src/main/res/mipmap-anydpi-v26/ic_launcher.xml"
8800+
line="2"
8801+
column="1"/>
8802+
</issue>
8803+
8804+
<issue
8805+
id="MonochromeLauncherIcon"
8806+
message="The application adaptive icon is missing a monochrome tag"
8807+
errorLine1="&lt;adaptive-icon xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
8808+
errorLine2="^">
8809+
<location
8810+
file="src/release/res/mipmap-anydpi-v26/ic_launcher.xml"
8811+
line="2"
8812+
column="1"/>
8813+
</issue>
8814+
8815+
<issue
8816+
id="MonochromeLauncherIcon"
8817+
message="The application adaptive roundIcon is missing a monochrome tag"
8818+
errorLine1="&lt;adaptive-icon xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
8819+
errorLine2="^">
8820+
<location
8821+
file="src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml"
8822+
line="2"
8823+
column="1"/>
8824+
</issue>
8825+
8826+
<issue
8827+
id="MonochromeLauncherIcon"
8828+
message="The application adaptive roundIcon is missing a monochrome tag"
8829+
errorLine1="&lt;adaptive-icon xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;>"
8830+
errorLine2="^">
8831+
<location
8832+
file="src/release/res/mipmap-anydpi-v26/ic_launcher_round.xml"
8833+
line="2"
8834+
column="1"/>
8835+
</issue>
8836+
87538837
<issue
87548838
id="IconLocation"
87558839
message="Found bitmap drawable `res/drawable/bluecoins.png` in densityless folder">
5.74 KB
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background" />
4-
<foreground android:drawable="@drawable/ic_launcher_foreground" />
5-
<monochrome android:drawable="@drawable/ic_launcher_monochrome" />
3+
<background android:drawable="@color/ic_launcher_background"/>
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
65
</adaptive-icon>
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3-
<background android:drawable="@drawable/ic_launcher_background" />
4-
<foreground android:drawable="@drawable/ic_launcher_foreground" />
5-
<monochrome android:drawable="@drawable/ic_launcher_monochrome" />
3+
<background android:drawable="@color/ic_launcher_background"/>
4+
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
65
</adaptive-icon>
-3.25 KB
Binary file not shown.
1.18 KB
2.1 KB
-5.47 KB
Binary file not shown.

0 commit comments

Comments
 (0)