Launching BlitzNote (BlitzMail) fails

BlitzMail provides two app icons. One for configuration (named “BlitzMail”) and another that allows quick sending of emails (named “BlitzNote”).

On Xperia X (Android 4 environment) both worked just fine.

On XA2 (new Android environment) BlitzNote doesn’t launch anymore.

Is there a way to get verbose debugging info?

So far I only tried this:

$ apkd-launcher de.grobox.blitzmail.apk de.grobox.blitzmail/de.grobox.blitzmail.NoteActivity
Launching Android Intent android.intent.action.MAIN de.grobox.blitzmail/de.grobox.blitzmail.NoteActivity
#(nothing happens)

Log Output:

 164   500 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN flg=0x10004000 pkg=de.grobox.blitzmail cmp=de.grobox.blitzmail/.NoteActivity} from uid 0
 164   194 W WindowManager: TaskSnapshotSurface.create: Failed to find top fullscreen for task={taskId=197 appTokens=[AppWindowToken{4183277 token=Token{a55cc76 ActivityRecord{847a311 u0 de.grobox.blitzmail/.NoteActivity t197}}}] mdr=false}
 333   333 D FakeHome: onPause
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).
1130  1152 I Adreno  : QUALCOMM build                   : 1dcb581, I26dffed9a4
1130  1152 I Adreno  : Build Date                       : 01/10/18
1130  1152 I Adreno  : OpenGL ES Shader Compiler Version: EV031.22.00.01
1130  1152 I Adreno  : Local Branch                     :
1130  1152 I Adreno  : Remote Branch                    : refs/tags/AU_LINUX_ANDROID_LA.UM.6.4.R1.08.00.00.309.049
1130  1152 I Adreno  : Remote Branch                    : NONE
1130  1152 I Adreno  : Reconstruct Branch               : NOTHING
1130  1152 I Adreno  : PFP: 0x005ff087, ME: 0x005ff063
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).
 164   182 I chatty  : uid=1000(system) SFThread identical 2 lines
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).
1130  1130 W IInputConnectionWrapper: getTextBeforeCursor on inactive InputConnection
 592   592 W RemoteKeyboard: Invalid editor state?
 164   201 W system_server: Insufficient pre-allocated space to mmap vdex.
 592   592 E RemoteKeyboard: ALIEN: Keyboard shown
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).
 592   592 E RemoteKeyboard: ALIEN: Keyboard shown
 164   182 I SurfaceFlinger: ALIEN: discarding frame without app/window (system process).

Workaround:

In the file /usr/share/applications/apkd_launcher_de_grobox_blitzmail-de_grobox_blitzmail_NoteActivity.desktop replace the Exec line with this:

Exec=sh -c 'apkd-launcher de.grobox.blitzmail.apk de.grobox.blitzmail/de.grobox.blitzmail.MainActivity & sleep .1 && apkd-launcher de.grobox.blitzmail.apk de.grobox.blitzmail'

The workaround in my last post got cut off. Here’s the correct line:

Exec=sh -c 'apkd-launcher de.grobox.blitzmail.apk de.grobox.blitzmail/de.grobox.blitzmail.MainActivity & sleep .1 && apkd-launcher de.grobox.blitzmail.apk de.grobox.blitzmail/de.grobox.blitzmail.NoteActivity'