qml开发Android平台,加载本地html

  1. AndroidManifest.xml内容

<manifest package="org.qtproject.example" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="-- %%INSERT_VERSION_NAME%% --" android:versionCode="-- %%INSERT_VERSION_CODE%% --" android:installLocation="auto">
    <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="25"/>

    
    

    
    


    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

    <supports-screens android:largeScreens="true" android:normalScreens="true" android:anyDensity="true" android:smallScreens="true"/>
    <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="-- %%INSERT_APP_NAME%% --" android:extractNativeLibs=

你可能感兴趣的:(android,qt)