英文:
What is android.stamp in android-manifest?
问题
在Android清单文件中是什么意思?
<meta-data android:name="com.android.stamp.source" android:value="https://play.google.com/store" />
<meta-data android:name="com.android.stamp.type" android:value="STAMP_TYPE_DISTRIBUTION_APK" />
请解释给我,我是个业余程序员 🙏
谢谢你 😊
英文:
what does it mean in android-manifest?
<meta-data android:name="com.android.stamp.source" android:value="https://play.google.com/store" />
<meta-data android:name="com.android.stamp.type" android:value="STAMP_TYPE_DISTRIBUTION_APK" />
Please explain me ,im a amateur programming 🙏
Thank you 😊
答案1
得分: 2
SourceStamp 提高了应用程序在未经授权分发方面的可追溯性。
该标记是受签名块保护的 APK 的一部分。
APK 内容的哈希值使用标记密钥进行签名,并保存在签名块的一部分。
英文:
SourceStamp improves traceability of apps with respect to unauthorized distribution.
> The stamp is part of the APK that is protected by the signing block.
> The APK contents hash is signed using the stamp key, and is saved as
> part of the signing block.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论