Skip to content
Snippets Groups Projects
  1. Apr 29, 2024
  2. Apr 12, 2024
  3. Apr 11, 2024
  4. Apr 02, 2024
  5. Mar 22, 2024
  6. Mar 18, 2024
  7. Mar 15, 2024
  8. Mar 14, 2024
  9. Mar 13, 2024
  10. Mar 05, 2024
  11. Feb 01, 2024
  12. Jan 30, 2024
  13. Jan 24, 2024
  14. Jan 17, 2024
  15. Jan 16, 2024
  16. Jan 15, 2024
  17. Jan 11, 2024
  18. Dec 05, 2023
  19. Nov 28, 2023
  20. Nov 25, 2023
  21. Nov 14, 2023
  22. Sep 04, 2023
  23. Aug 31, 2023
  24. Aug 27, 2023
  25. Aug 26, 2023
  26. Aug 22, 2023
  27. Aug 15, 2023
  28. Aug 14, 2023
  29. Aug 11, 2023
  30. Jul 06, 2023
  31. Dec 14, 2018
  32. Nov 13, 2018
    • Yohei Yukawa's avatar
      Bump targetSdkVersion to "28" and minSdkVersion to "21" · 04573e30
      Yohei Yukawa authored
      With this CL, targetSdkVersion and minSdkVersion will be bumped as
      follows:
      
        targetSdkVersion: 23 -> 28
           minSdkVersion: 14 -> 21
      
      As far as we know, there should be no user-visible behavior change on
      supported OS versions.
      
      Fix: 119489995
      Test: manually verified that LatinIME still is functional
      Change-Id: I68f1545778b0c8b44c6850f22f3f5ca25bdb6de0
      04573e30
  33. Jul 26, 2018
    • Yohei Yukawa's avatar
      Let Android Studio use 'shared' cert to build APK · c884b663
      Yohei Yukawa authored
      make build uses 'shared' cert in build/make/target/product/security/.
      If LatinIME APK built with AndroidStudio doesn't use the same signing
      cert, then you cannot install the APK into AOSP image, which is not
      convenient.
      
      With this CL, AndroidStudio build also uses the same signing cert.
      
      Note that shared.keystore was built as follows.
      
       $ openssl pkcs8 -inform DER -nocrypt                      \
         -in build/make/target/product/security/shared.pk8       \
         -out shared.pem
       $ openssl pkcs12 -export                                  \
         -in build/make/target/product/security/shared.x509.pem  \
         -inkey shared.pem -out shared.p12                       \
         -password pass:android -name AndroidDebugKey
       $ keytool -importkeystore -deststorepass android          \
         -destkeystore shared.keystore -srckeystore shared.p12   \
         -srcstoretype PKCS12 -srcstorepass android
      
      Fix: 110741422
      Test: made sure that the APK built with Android Studio can be
            installed to an AOSP build
      Change-Id: I471a87e190b15ff02bb06849e4660ed7898897a5
      c884b663
Loading