Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Zedonboy committed Jan 28, 2025
1 parent 32ee6d8 commit 22ca2c5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
echo "${{ secrets.ANDROID_KEY_ALIAS }}" > key_alias.txt
echo "${{ secrets.ANDROID_KEY_PASSWORD }}" > key_password.txt
# Use full path to zipalign
export ZIPALIGN=$ANDROID_HOME/build-tools/33.0.0/zipalign
for apk in build/app/outputs/flutter-apk/*-release.apk; do
[ -f "$apk" ] || continue
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Test

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: Build SampleApplication
run: ./zipalign --no-daemon build
6 changes: 6 additions & 0 deletions assets/svg/banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion lib/screens/splashScreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class _SplashScreenState extends State<SplashScreen> {
SizedBox(
height: 100,
),
SvgPicture.asset("assets/svg/splash.svg"),
Image.asset("assets/images/splash_banner.png"),
// SvgPicture.asset("assets/svg/banner.svg"),
Column(
children: [
GestureDetector(
Expand Down

0 comments on commit 22ca2c5

Please sign in to comment.