--
You received this message because you are subscribed to the Google Groups "Flutter Dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Done, sorry I took me so long to reply. You can find the issue here: https://github.com/flutter/flutter/issues/4450
Btw, 1033 open issues?! :D It maay be more convenient to close the older ones to improve the overview ;)
I had the same issue on Debian.
jdk1.8.0_11
adt-bundle-linux-x86_64-20140321
=> INSTALL_PARSE_FAILED_NO_CERTIFICATES
this is what I have done:
edit ~/flutter/packages/flutter_tools/lib/src/commands/build_apk.dart
add sigalg et digestalg to jarsigner (as suggested in http://stackoverflow.com/questions/2914105/android-what-is-install-parse-failed-no-certificates-error)
void sign(File keystore, String keystorePassword, String keyAlias, String keyPassword, File outputApk) {
assert(_jarsigner != null);
runCheckedSync([_jarsigner.path,
'-keystore', keystore.path,
'-storepass', keystorePassword,
'-keypass', keyPassword,
'-sigalg', 'MD5withRSA',
'-digestalg', 'SHA1',
outputApk.path,
keyAlias,
]);
}
remove ~/flutter/bin/cache/flutter_tools.snapshot
and run again
$ flutter build clean
$ flutter -v run