Qt for Android bundid设置示例
时间: 2024-09-26 14:13:10 浏览: 61
【java毕业设计】网页时装购物系统源码(springboot+vue+mysql+说明文档+LW).zip
Qt for Android中,BundID(Bundle Identifier)用于唯一标识你的应用。在AndroidManifest.xml文件中设置BundID,通常看起来像这样:
```xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourcompany.yourapp">
<application
android:name=".YourAppActivity"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!-- 其他配置... -->
<meta-data
android:name="android.app.bundledId"
android:value="com.yourcompany.yourapp" />
</application>
</manifest>
```
在这里,`com.yourcompany.yourapp`需要替换为你实际的包名。这个`bundledId`属性会作为APK文件的`package`标签的一部分,确保每个安装的APK都有唯一的标识。
阅读全文