-
Notifications
You must be signed in to change notification settings - Fork 90
android: create and sign separate bundle ID for PRs #19614
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
base: master
Are you sure you want to change the base?
Conversation
Jenkins BuildsClick to see older builds (183)
|
174de75 to
0b1d305
Compare
0b1d305 to
6d6918f
Compare
- points to `fix-android-signing` branch in status-jenkins-lib - use gradle build flavours for PR and Release. - signing config moved to gradle
1d44a8b to
f5fda2d
Compare
jrainville
left a comment
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.
I guess we'll need to cherry-pick this to the release/2.36.x branch?
jakubgs
left a comment
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.
Looks correct.
|
|
||
| # Build with gradle directly to use product flavors | ||
| CUSTOM_ANDROID="$CWD/../android/qt${QT_MAJOR}" | ||
| ANDROID_BUILD="$BUILD_DIR/android-build" |
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.
Seems like this should be defined and used earlier.
| # Copy custom res files (icons, styles, etc.) but preserve Qt-generated libs.xml | ||
| if [[ -d "$CUSTOM_ANDROID/res" ]]; then | ||
| # Copy everything except values/libs.xml (Qt generates that) | ||
| find "$CUSTOM_ANDROID/res" -type f ! -name "libs.xml" -exec sh -c ' |
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 would be way simpler to just use rsync with --exclude.
Or you could enable extended glob with shopt -s extglob too, but that might be a bit obscure.
fix-android-signingbranch in status-jenkins-lib