Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where did the "Create AndroidManifest.xml" button go in Qt Creator 3.3.0?

There used to be a "Create AndroidManifest.xml" button in Projects->Run->Deploy:

enter image description here

But now as of QtCreator 3.3.0 with Qt 5.4.0, it's nowhere to be found:

enter image description here

How do I specify an AndroidManifest.xml now that the button is gone?

like image 407
sashoalm Avatar asked Dec 21 '14 14:12

sashoalm


People also ask

Where is AndroidManifest XML located?

It is located under android folder inside your monaca project as shown below: For Cordova 6.2 or higher, AndroidManifest.

What is the name of the folder that contains the AndroidManifest XML file?

The file is located at WorkspaceName>/temp/<AppName>/build/luaandroid/dist. The manifest file provides essential information about your app to the Android operating system, and Google Play store.

Where is AndroidManifest XML in ionic?

xml ​ Android apps manage permissions, device features, and other settings in the AndroidManifest. xml file, which is located at android/app/src/main/AndroidManifest. xml .

Where is the AndroidManifest XML file flutter?

Android app manifest file, AndroidManifest. xml is located in <app dir>/android/app/src/main. It contains entire details about an android application.


1 Answers

You now do it from Projects -> Build -> Build Android APK -> Create Templates.

From the documentation:

You can use the qmake variables to specify all the settings you need for the androiddeployqt tool and you do not need an Android manifest file until you want to publish the package in an application store. To specify additional settings for APK packages, you can create an Android manifest file and edit it in Qt Creator. Select Create Templates to create the file and to open it in the Android Manifest Editor.

enter image description here

like image 188
lpapp Avatar answered Sep 29 '22 23:09

lpapp