-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused app_name string resource #104
base: main
Are you sure you want to change the base?
Conversation
493e513
to
f317e6d
Compare
f317e6d
to
ee0fce2
Compare
@@ -53,7 +53,7 @@ jobs: | |||
abi: x86 | |||
- name: Full check | |||
run: ./gradlew check --stacktrace | |||
- uses: actions/upload-artifact@v2 | |||
- uses: actions/upload-artifact@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v2 is deprecated and without bumping it - this job automatically fails.
@@ -14,7 +14,7 @@ on: | |||
jobs: | |||
build: | |||
name: JDK ${{ matrix.java_version }} | |||
runs-on: macOS-latest | |||
runs-on: macos-13 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a bit tricky to balance between the 3 versions:
- emulator api level (currently at
21
, bumping to newer ones means we need to move the abi away fromx86
) - emulator abi (due to this being on macos, the only real long term option is
arm64-v8a
) - osx version (VMs on Apple silicon is allegedly having some problem with emulators, which may get resolved in osx15 with M3 chips; I am guessing it will be some time before we have M3 running osx15 on github actions
I am not sure if it make sense to consider moving to ubuntu (like our other github actions) and fight the emulator war there.
This seemingly trivial removal of an unused
app_name
can help make resource resolution a bit easier downstream sinceapp_name
is often the resource name that APKs are using to identify the name of the application - it seems unlikely anyone is using simple-store for this string.