Skip to content

Commit

Permalink
normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
ubaldus committed Jun 2, 2024
1 parent 13d0088 commit e4baec5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 31 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
build-and-publish:
runs-on: ubuntu-latest
env:
APP_NAME: ${{ github.repository_owner }}_${{ github.event.repository.name }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -37,7 +39,7 @@ jobs:

- name: Copy
run: |
cp app/build/outputs/bundle/release/app-release.aab ${{ github.event.repository.name }}.aab
cp app/build/outputs/bundle/release/app-release.aab ${{ env.APP_NAME }}.aab
- name: Build APK
run: |
Expand All @@ -58,13 +60,13 @@ jobs:

- name: Copy
run: |
cp app/build/outputs/apk/release/app-release-unsigned-signed.apk ${{ github.event.repository.name }}.apk
cp app/build/outputs/apk/release/app-release-unsigned-signed.apk ${{ env.APP_NAME }}.apk
- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: |
${{ github.event.repository.name }}.apk
${{ github.event.repository.name }}.aab
${{ env.APP_NAME }}.apk
${{ env.APP_NAME }}.aab
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@
.externalNativeBuild
.cxx
local.properties
/app/build
1 change: 0 additions & 1 deletion app/.gitignore

This file was deleted.

21 changes: 0 additions & 21 deletions app/proguard-rules.pro

This file was deleted.

6 changes: 2 additions & 4 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@


<application
android:allowBackup="true"
android:label="ejaLauncher"
android:icon="@drawable/logo"
android:roundIcon="@drawable/logo"
android:allowBackup="true"
android:supportsRtl="true"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Material.Light.NoActionBar">

<activity
android:name=".MainActivity"
android:exported="true"
android:label="ejaLauncher">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.HOME" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/it/eja/launcher/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -433,4 +433,4 @@ class MainActivity : Activity() {
return row * columnCount + column
}
}
}
}
Binary file added app/src/main/res/drawable/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e4baec5

Please sign in to comment.