下面的XML代码是什么意思?( )
AndroidManifest.xml
<application android:label="@string/app_name" android:icon="@drawable/icon" android:name="com.intel.starApp">
… ….
<meta-data android:name="DATABASE" android:value="example.db">
<meta-data android:name="VERSION" android:value="2">
<meta-data android:name="QUERY_LOG" android:value="true">
…
</meta-data>
</meta-data>
</meta-data>
本地自定义数据库文件名为"example.db",应用程序版本2.0,记录选定查询
本地SQLite数据库文件名为"example.db",DBMS版本为2.0,记录所选查询
本地文本类型数据库文件名为"example.db",DBMS版本2.0,记录选定的查询
远程数据库文件名为"example.db",应用程序版本2.0,记录选定的查询