Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [andmore-dev] Bug 525493 - Projects containing aar libraries currently fail with robolectric 3.2.1

I have completed working on the bug fix. I need guidance on whether to proceed with the pull request given 2 issues that make the status unsatisfactory.
 
The first issue is that undertook some pragmatic programming to compile SWT modules with the SDK Tools version 25 libraries.
I have added a large number of source files to the DDMS module from ddmuilib, uiautomator and sdkuilib AOSP projects.
In the case of sdkuilib, I pulled in an additional 156 source files from the version 24 sdklib library, most of which were missing from version 25.
From this I suspect there is considerable effort required to get Andmore up-to-date and therefore should be tracked under a different bug report.
 
The second issue is that the integration test now does not complete due to the workbench freezing up when it gets to a certain point well into the test.
Unless someone can guide me on how to investigate this problem, I will not be able to meet the requirement that all tests must pass before submitting a pull request.
 
One other issue with getting the change to a satisfactory state is that the Sequoyah project has been terminated and it's p2 repository is no longer online.
I have had to comment out the Sequoyah p2 repository reference in the parent pom to get Maven to run.
 
Andrew


From: andmore-dev-bounces@xxxxxxxxxxx [mailto:andmore-dev-bounces@xxxxxxxxxxx] On Behalf Of Carver, David
Sent: Saturday, 21 October 2017 1:38 AM
To: andmore-dev@xxxxxxxxxxx
Subject: Re: [andmore-dev] Bug 525493 - Projects containing aar libraries currently fail with robolectric 3.2.1

The DexWrapper is legacy code from the original ADT plugins I believe.  Why they did it that way I don't know.

Dave



On 10/20/2017 12:07 AM, Andrew Bowley wrote:
Dave
 
To get dex to work, I had to apply the same approach as Gradle, which is to launch a command shell and run "java com.android.dx.command.Main --dex ...".
The good news is that Build Tools version will probably not be an issue.
However, I would like to know why the DexWrapper was employed in the first place as the command shell approach is a natural choice.
 
I can now build, install and run my test application targeting API 25 and with the bug fix. The next thing to try is a Robolectric test on the MainActivity class.
 
Andrew
 



From: andmore-dev-bounces@xxxxxxxxxxx [mailto:andmore-dev-bounces@xxxxxxxxxxx] On Behalf Of Carver, David
Sent: Thursday, 19 October 2017 11:45 PM
To: andmore-dev@xxxxxxxxxxx
Subject: Re: [andmore-dev] Bug 525493 - Projects containing aar libraries currently fail with robolectric 3.2.1

Andrew, go ahead and make any change that needs to be made.   We probably also need to add a check to see what version of the build tools is required, and put a warning dialog up that can be dismissed, saying something to the affect that they must upgrade to version 26 at least.    We can also put this out in a release document as well, when we do the release.

When the android sdk makes these types of changes we just have to adapt with them.

Dave



On 10/18/2017 6:27 PM, Andrew Bowley wrote:
I have hit an important change to the build tools which needs to be addressed. The Dex tool main class has changed with version 26 from being totally static to just having a static main method.
This means the DexWrapper class is no longer needed and in fact throws an NPE when dexing with version 26 dx.jar.
 
How should I proceed? To jettison DexWrapper forces everyone to use build tools version 26 and above.To leave it in adds unwelcome complexity to Andmore.
 
Andrew


From: Andrew Bowley [mailto:andrewbowley@xxxxxxxxxxx]
Sent: Tuesday, 17 October 2017 9:47 AM
To: 'andmore developer discussions'
Subject: RE: [andmore-dev] Bug 525493 - Projects containing aar libraries currently fail with robolectric 3.2.1

Dave
 
I have pressed on, patching the code to avoid compilation errors, and one issue needs to be resolved from this activity.
 
There is a class named DeviceMenuListener in "adt" package org.eclipse.andmore.internal.editors.layout.configuration which has the following logic:
 
"Group the devices by manufacturer, then put them in the menu. If we don't have anything but Nexus devices, group them together rather than make many manufacturer submenus."
 
I had to comment out the Nexus code as it references objects in an sdk-common helper class which have been removed. Maybe a bug report needs to be raised so the design can be reviewed.
 
I am now at the stage of having set up a test environment to proove the PR. I am hoping there are no big surprizes so I can submit the PR shortly.
 
Andrew
 


From: andmore-dev-bounces@xxxxxxxxxxx [mailto:andmore-dev-bounces@xxxxxxxxxxx] On Behalf Of Carver, David
Sent: Monday, 16 October 2017 11:42 PM
To: andmore-dev@xxxxxxxxxxx
Subject: Re: [andmore-dev] Bug 525493 - Projects containing aar libraries currently fail with robolectric 3.2.1

Andrew, thanks.   Can you put a pull request together that contains all the fixes, and I'll try to get it going through the simulataneous review process.  This will allow us to merge the change, while allowing the IP team to do their review.

In this case, it would be better to have one commit with all the changes, so it would be easier to back out if we need to for any reason.   If you follow the format of the other commit messages, the PR will automatically be linked back to bugzilla.

Thanks for the all the effort on this.

Dave



On 10/15/2017 4:50 PM, Andrew Bowley wrote:
Please find attached file containing information on dependency jars for the CQ process.
 
The bug fix requires Andriod SDK builder-2.3.3.jar which declares 34 dependencies. These include 7 other SDK artifacts which I indicate are not expected to be deployed at this time.
 
Andrew
 


_______________________________________________
andmore-dev mailing list
andmore-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/andmore-dev



_______________________________________________
andmore-dev mailing list
andmore-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/andmore-dev



_______________________________________________
andmore-dev mailing list
andmore-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/andmore-dev


Back to the top