-
Notifications
You must be signed in to change notification settings - Fork 13
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
Certificate issue #160
Comments
Check it out my last release if made it right about signed debug, because I don't remember that I did setting release configurations, And I don't know why exactly this issue happened? |
That's still a debug build using a debug key.
Which is exactly the issue I'm reporting here 😉 You should have 😉 You were always using a debug key for signing. It just occurred to me know when I explicitly looked for it.
Better late then never 🙈 We all have a live beyond our hobbies, so all fine, thanks! |
I usually deleted |
It's still signed with a debug key:
Note the O=Android, CN=Android Debug – or did you intentionally use that as DN for your release key? If so, that's a real bad idea as it might trigger other scanners as well and only cause headaches. And it also has debugging set explicitly: <application android:theme="@7F14026B" android:label="JetNote" android:icon="@7F100000" android:name="city.zouitel.jetnote.NoteApplication" android:debuggable="true" android:allowBackup="false" … Note the android:debuggable="true". I don't know what you use for signing, but maybe these few links can help you:
|
Ok, I see that because my custom configuration of the |
I don't know what configuration you mean, but it's not about the code in the repo here – but about how you sign the APK once it's built. What do you use for that? Android Studio? Or something else? I'm not an Android dev myself, so I can just give some hints here but cannot help with the real process, sorry. |
I supposed restored default settings of my android studio, So hint my if everything is okay. |
It clearly says "debug" there in the file name. You need to create a signed release, not a debug build. Sorry, but I'm not an Android dev, so I cannot tell you the steps needed. But a quick search on the net brings this as first result: Build your app for release to users | Android Studio and How to build and find a release APK or Bundle in Android ... as second. Third result is a step-by-step guide with annotated screenshots, here. Maybe one of those can help you? |
So do we have a chance here? Thanks for all your efforts so far, but if there's no release-key signed APK I'll have to unlist the app from the repo. |
Hi Izzy check it out my last release, I suppose there is change. |
Not really:
It's still the same debug key as last time that was used for signing. Did you try the advice from the tutorials I've linked above? Further, my scanner reports:
Camera is described as being used to include images with the notes. What for are the other permissions needed? As for android {
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
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. |
I don't know why or how but I know where this problem began, It's began when I updated the |
You can try the unsigned APK, and sign it e.g. using |
@youndon end of this month, remaining "debug APKs" will be removed from my repo. So had you a chance to try signing with So will you give that a try before I have to remove your app from my repo? I'd really like to keep it there. |
Sorry for ignore your last comment I don't open my studio this days, And Yes actually I will use this tool you mentioned to me, Just wait for me two more days. |
I did wait, but can't any longer. So very last call now: can you get it fixed this weekend? Else I'll have to remove the app on Sunday, and we have to bring it back when you're ready. |
Well, unfortunately time's up now. Yours was the last app remaining, it will now be removed from the IzzyOnDroid repo. Be welcome to apply for "revival" once you have the APKs signed with a proper release key. No bad feelings, no personal grudge – this is a simple technical necessity. |
A scan (see here for details and background) just revealed the APKs at your releases are signed using a debug key. As that has security implications, may I ask you to please switch to a proper release key, and provide the corresponding APK signed with it? Thanks in advance!
The text was updated successfully, but these errors were encountered: