-
Notifications
You must be signed in to change notification settings - Fork 8
Description
According to the embedded vcsInfo, the APK was built from commit ee959ac – which is not present here:
So we cannot build from it, and hence not confirm whether it is RB or not. As that change is available at the tagged commit, I assume it was squashed – or rather merged from a local branch after you built the APK? That is almost certain to break RB, as shown.
But even if I try to build simply from the tagged commit, the build fails:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':common:design:verifyReleaseResources'.
> A failure occurred while executing com.android.build.gradle.tasks.VerifyLibraryResourcesTask$Action
> Android resource linking failed
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values/values.xml:2402: AAPT: error: style attribute 'attr/windowSplashScreenAnimatedIcon (aka com.androidvip.sysctlgui.design:attr/windowSplashScreenAnimatedIcon)' not found.
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values/values.xml:2403: AAPT: error: style attribute 'attr/windowSplashScreenAnimationDuration (aka com.androidvip.sysctlgui.design:attr/windowSplashScreenAnimationDuration)' not found.
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values/values.xml:2404: AAPT: error: style attribute 'attr/postSplashScreenTheme (aka com.androidvip.sysctlgui.design:attr/postSplashScreenTheme)' not found.
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8/values-night-v8.xml:46: AAPT: error: style attribute 'attr/windowSplashScreenAnimatedIcon (aka com.androidvip.sysctlgui.design:attr/windowSplashScreenAnimatedIcon)' not found.
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8/values-night-v8.xml:47: AAPT: error: style attribute 'attr/windowSplashScreenAnimationDuration (aka com.androidvip.sysctlgui.design:attr/windowSplashScreenAnimationDuration)' not found.
ERROR: /build/repo/common/design/build/intermediates/merged_res/release/mergeReleaseResources/values-night-v8/values-night-v8.xml:48: AAPT: error: style attribute 'attr/postSplashScreenTheme (aka com.androidvip.sysctlgui.design:attr/postSplashScreenTheme)' not found.
As that's just a verify, I ran ./gradlew assembleRelease -x :common:design:verifyReleaseResources to see if the build succeeds at least. It builds then, but is not reproducible: the diff between the two APKs is rather huge. For starters:
XML ELEM START [lineno=2, name='manifest', #attributes=7]
- ATTR: http://schemas.android.com/apk/res/android:versionCode=19
+ ATTR: http://schemas.android.com/apk/res/android:versionCode=17
ATTR: http://schemas.android.com/apk/res/android:versionName='3.0.0'So your APK shows versionCode: 19, while at the tag it is 17. Guess we'll have to declare this one failed then – unless you have an idea how to cure it?