Meteor Android Apps does not install on 4.1.1

后端 未结 1 951
名媛妹妹
名媛妹妹 2021-01-03 07:51

I am having a huge problem to deploy my app for 4.1.1 Android Tablet. It works on 4.4.2./4.3.2. Phones or with Meteor run android-device. However when build the

相关标签:
1条回答
  • 2021-01-03 08:54

    I had the same problem. Here is what works for me (notice the specification of -sigalc MD5withRSA):

    keytool -genkey -alias MyApp -keyalg RSA -keysize 2048 -validity 10000 -keystore sample.keystore
    
    jarsigner -keystore sample.keystore -digestalg SHA1 -sigalg MD5withRSA -tsa http://timestamp.digicert.com  unaligned.apk MyApp
    
    ~/.meteor/android_bundle/android-sdk/build-tools/21.0.0/zipalign -f -v 4 unaligned.apk myapp.apk
    
    0 讨论(0)
提交回复
热议问题