Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
Hi, The build of the package (apk or aab) is done in the aggregate. So adding a profile can only impact the multiplexed targets. The multiplex targets are built the same way for apk and aab. It's the packaging (in the aggregate) that differs. Hence the multiplexing of the aggregate in my patch...

Re: [Qbs] building android aab package help

2020-06-07 Thread Иван Комиссаров
Interesting, I do not get that error. Maybe Christian knows better why this could happen? The following example works for me on Mac: CppApplication { name: qbs.profile consoleApplication: true Profile { name: "a" baseProfile: project.profile cpp.defines:

Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
Hi, Looking into that... So I have a simple example like that: Application { Profile { name: "a" baseProfile: project.profile } Profile { name: "b" baseProfile: project.profile } qbs.profiles: ["a", "b"] files: [ "main.cpp" ] } I get

Re: [Qbs] building android aab package help

2020-06-07 Thread Иван Комиссаров
Hello, Raphael! I’ve seen your new patch and it looks really interesting. So, for now, you have 2 separate patches for the AAB support, right? [0] https://codereview.qt-project.org/c/qbs/qbs/+/303358 [1]

Re: [Qbs] building android aab package help

2020-04-17 Thread Christian Kandeler
[Redirecting back to the mailing list] On Thu, 16 Apr 2020 20:17:47 +0200 Raphael Cotty wrote: > Le mer. 15 avr. 2020 à 09:48, Christian Kandeler > a écrit : > > > Building an aab is similar to building apk. They both take the same inputs > > > (including java files) and generate a java file

Re: [Qbs] building android aab package help

2020-04-15 Thread Christian Kandeler
On Tue, 14 Apr 2020 21:27:18 +0200 Raphael Cotty wrote: > I am struggling to find a way to build the aab package (non runnable > package required by google store) on the android platform. > For this platform the default qbs product type is changed from application > to android.apk (runnable

Re: [Qbs] building android aab package help

2020-04-15 Thread Jochen Ulrich
orks? You already tried this? Best Jochen Von: Qbs im Auftrag von Raphael Cotty Datum: Dienstag, 14. April 2020 um 21:27 An: "qbs@qt-project.org" Betreff: [Qbs] building android aab package help Hi all, I am struggling to find a way to build the aab package (non runnable package

[Qbs] building android aab package help

2020-04-14 Thread Raphael Cotty
Hi all, I am struggling to find a way to build the aab package (non runnable package required by google store) on the android platform. For this platform the default qbs product type is changed from application to android.apk (runnable package). What I am trying to achieve is allowing the user to