Skip to content

Commit 3d35e4a

Browse files
Refactor: Remove package attribute from AndroidManifest.xml
This commit removes the `package` attribute from the `app/src/main/AndroidManifest.xml` file. This attribute is deprecated and no longer necessary. Signed-off-by: CreativeCodeCat <wayne6324@gmail.com>
1 parent 1eaa194 commit 3d35e4a

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.github/workflows/android-release_ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
with:
1717
token: ${{ github.actor == 'dependabot[bot]' && secrets.GITHUB_TOKEN || secrets.GIT_BOT_TOKEN }}
1818
fetch-depth: 0 # Fetch full history
19-
tags: true # Ensure all tags are fetched
2019

2120
- name: set up JDK 17
2221
uses: actions/setup-java@v5.0.0
@@ -90,3 +89,15 @@ jobs:
9089
asset_name: MultiLauncher-${{ github.ref_name }}-Signed.aab
9190
tag: ${{ github.ref }}
9291
overwrite: true
92+
93+
- name: Set up Node.js
94+
uses: actions/setup-node@v5
95+
with:
96+
node-version: '20' # or whatever version you need
97+
98+
- name: Post Release to Discord
99+
env:
100+
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
101+
run: |
102+
# Run your Discord release script
103+
node post-discord-release.js

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [Coming Soon](https://github.com/DroidWorksStudio/mLauncher/tree/main) - TBD
6+
7+
### Refactors:
8+
9+
* Remove @Deprecated annotation in WeatherHelper ([dd846d3c](https://github.com/DroidWorksStudio/mLauncher/commit/dd846d3c))
10+
* Remove package attribute from AndroidManifest.xml ([96d61772](https://github.com/DroidWorksStudio/mLauncher/commit/96d61772))
11+
512
## [test](https://github.com/DroidWorksStudio/mLauncher/tree/test) - (15, September 2025)
613

714
### Enhancements:

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:dist="http://schemas.android.com/apk/distribution"
4-
xmlns:tools="http://schemas.android.com/tools"
5-
package="com.github.droidworksstudio.mlauncher">
4+
xmlns:tools="http://schemas.android.com/tools">
65

76
<!-- Enable instant apps (optional) -->
87
<dist:module dist:instant="true" />

app/src/main/java/com/github/droidworksstudio/mlauncher/helper/WeatherHelper.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,7 @@ class WeatherHelper(
6969

7070
override fun onProviderDisabled(provider: String) {}
7171
override fun onProviderEnabled(provider: String) {}
72-
73-
@Deprecated("Deprecated in Java")
74-
override fun onStatusChanged(provider: String?, status: Int, extras: Bundle?) {
75-
}
72+
override fun onStatusChanged(provider: String?, status: Int, extras: Bundle?) {}
7673
}
7774

7875
try {

0 commit comments

Comments
 (0)