Skip to content

Android Keystore Latest

Choose a tag to compare

@github-actions github-actions released this 26 Nov 16:15

Android Keystore Release

This release contains the Android signing keystore for the AI Engineer Job Simulator app.

Keystore Information

  • Alias: release
  • Key Algorithm: RSA 2048-bit
  • Validity: 10,000 days
  • Store Password: android123
  • Key Password: android123

Usage Instructions

  1. Download keystore-latest.tar.gz
  2. Extract the keystore: tar -xzf keystore-latest.tar.gz
  3. Use in your Android build configuration:
    storeFile file('path/to/release.keystore')
    storePassword 'android123'
    keyAlias 'release'
    keyPassword 'android123'
    

Security Notes

  • Store passwords securely and never commit them to version control
  • Keep the keystore file in a secure location
  • For production, consider using GitHub Secrets

Generated automatically by GitHub Actions