eu.basicairdata.graziano.gpslogger/metadata/en-US/full_description.txt has 4124 chars
Fastlane limits that to 4,000 chars, and it gets truncated exactly there – even mid-word:
Considering HTML conversion, better keep it below around 3,700 chars.
While I'm here, our checker also reported
APK contains signing blob(s): 0x504b4453 (DEPENDENCY_INFO_BLOCK; GOOGLE).
Could you please add a few lines to your build.gradle to get rid of that?
android {
dependenciesInfo {
// Disables dependency metadata when building APKs (for IzzyOnDroid/F-Droid)
includeInApk = false
// Disables dependency metadata when building Android App Bundles (for Google Play)
includeInBundle = false
}
}
For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains. More details can be found e.g. in our documentation on Signing Block Checks at our website, and in our blog article Ramping up security: additional APK checks are in place with the IzzyOnDroid repo.
Thanks in advance!
Fastlane limits that to 4,000 chars, and it gets truncated exactly there – even mid-word:
Considering HTML conversion, better keep it below around 3,700 chars.
While I'm here, our checker also reported
Could you please add a few lines to your
build.gradleto get rid of that?For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains. More details can be found e.g. in our documentation on Signing Block Checks at our website, and in our blog article Ramping up security: additional APK checks are in place with the IzzyOnDroid repo.
Thanks in advance!