Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
msx80 committed Sep 30, 2024
1 parent 08a8231 commit 6f2fe98
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 279 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,28 @@ jobs:
echo "GITHUB_DDVER=$(mvn -q org.apache.maven.plugins:maven-help-plugin:3.1.1:evaluate -Dexpression=project.version -DforceStdout)" >> $GITHUB_ENV
- name: Build android
run: |
cd androidWrapper
cd android-wrapper
gradle --stacktrace -Pcartridge.artifactId=retrodrawing -Pcartridge.groupId=com.github.msx80.omicron -Pcartridge.version=$GITHUB_DDVER clean assembleRelease
- uses: actions/upload-artifact@v4
with:
name: Unsigned retrodrawing.apk
path: androidWrapper/app/build/outputs/apk/release/app-release-unsigned.apk
path: android-wrapper/app/build/outputs/apk/release/app-release-unsigned.apk
- uses: ilharp/sign-android-release@v1
name: Sign app APK
id: sign_app
with:
releaseDir: androidWrapper/app/build/outputs/apk/release
releaseDir: android-wrapper/app/build/outputs/apk/release
signingKey: ${{ secrets.SIGNING_KEY }}
keyAlias: ${{ secrets.SIGNING_ALIAS }}
keyStorePassword: ${{ secrets.SIGNING_PASSWORD }}
buildToolsVersion: 33.0.2
- name: Rename apk
run: |
mv -v ${{steps.sign_app.outputs.signedFile}} retrodrawing.apk
- uses: actions/upload-artifact@v4
with:
name: retrodrawing.apk
path: ${{steps.sign_app.outputs.signedFile}}
path: retrodrawing.apk
- name: Build desktop
run: |
cd desktop-mvn
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta-data android:name="omicronMain" android:value="${omicronMain}" />
<activity
android:name="com.github.msx80.omicron.AndroidLauncher"
android:exported="false"
android:exported="true"
android:screenOrientation="${orientation}"
android:label="${appName}"
android:configChanges="keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
185 changes: 0 additions & 185 deletions androidWrapper/gradlew

This file was deleted.

89 changes: 0 additions & 89 deletions androidWrapper/gradlew.bat

This file was deleted.

0 comments on commit 6f2fe98

Please sign in to comment.