Are there any downsides to using the same signing key for publishing apps under different Android Market accounts? (Different apps under each account.) Likewise, are there any problems in using different signing keys for different apps in the same account? I would assume not in both cases, but I couldn't find anything definitive posted about this. So I thought it prudent to ask if anyone knows for sure.
Using one publishing key on two accounts in Android Market
584 Views Asked by Ted Hopp At
1
There are 1 best solutions below
Related Questions in GOOGLE-PLAY
- Android bundle identifier for different appstores
- Android app versionCode too large
- Android: Publishing and Signing same application for many customers
- Google play services doesnt displays leaderboard after Auth
- Black screen after updating Google Play Services:7.5.0
- Unity3D 5 packages conflict
- Google Play Alpha test links to production APK
- Google App indexing for games
- How to remove Rejected Apps from Developer Console
- Deploying an Android app on devices without Play Store account
- Android app install verification
- not able to get advertising id in android
- Is it possible to have multiple APK support according to countries in google play?
- Different app name in play store
- Android - Bypassing install permission programmatically for enterprise apps from third-party sources
Related Questions in SIGNING
- Migrate ClickOnce certificate from Sha1 to SHA256 and run on .NET 4.0 client machines
- is PdfPKCS7.loadCacertsKeyStore() deprecated
- signtool fail with Inno Setup with exit code 0x1
- How does driver signing work when Windows is offline?
- What part (or whole) of the keystore do I need from an external developer who developed our V1.0 Android app
- How do I call an AWS_IAM authorized API Gateway endpoint from AWS Lambda who's execution role has permission to do so?
- Xcode 8 signing errors, can't log in with account and no provisioning profile
- Compiling Android app in Eclipse - "keystore was tampered with, or password was incorrect"
- Signing and decoding with RSA-SHA in GO
- What purpose for using randomly generated KeyPair to do sha256WithRSA signing?
- xcode project on GitHub, remove signing and identity?
- Restricting FCM topic subscription based on APK signing
- Windows7 boot option to allow unsigned drivers ignored
- "*Certificate not found* (from client)" when calling Web Service that requires signing
- Customize PDFStamper using iTextSharp
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It depends totally on your needs, so let's see different needs,
Why using same key for different apps?
If you want to use App modularity features (as recommended by the official documentation):
If you want to share Code/Data securely between your apps through permissions (also as recommended by the official documentation):
If you want to avoid the hassle of managing different keys for different apps.
Why using different keys for different apps?
If you are somehow paranoid about security (and you should), not to put all the eggs in one basket, which is highly recommended in this article.
If the apps are completely different & won't ever use the app-modularity or Code/Data sharing described above.
If there is even a small chance that you will sell one of the apps separately in the future, then that app must have its own key from the beginning.
I wrote an article about it.