android specified library
-
wrote on 23 Dec 2019, 16:03 last edited by
How can I add a library only in android builds and use for every arch its specified library?(qmake - qt 5.12)
-
How can I add a library only in android builds and use for every arch its specified library?(qmake - qt 5.12)
wrote on 23 Dec 2019, 17:56 last edited byFor instance as done in this post https://stackoverflow.com/questions/18104716/how-to-specify-libraries-only-for-android-platform-build-in-pro-file
or
android-*:{ CONFIG(debug, debug|release):{ LIBS += -L$$PWD -lMyLibD } CONFIG(release, debug|release):{ LIBS += -L$$PWD -lMyLib } }
-
wrote on 3 Jan 2020, 13:39 last edited by
-
- Open the module-level build.gradle file.
- Delete the line for the applicationId. Only an Android app module can define this.
wrote on 13 Jan 2020, 08:32 last edited by