Group object do not display correctly in build 2013.2100

I had to install build 2013.2100 to get around a problem with the debug flag when uploading my app to the Google store. However, when I did, all of my secondary screens shifted most of the display objects. In the attached file, Setup_Wrong.png, the green area in the upper left hand corner should be a background for the entire screen and was in build 2013.1137. It also works fine on IOS. I have a main entry screen that displays fine, but when I choose an option, the new screen is as shown.  Here is the code snippet that should display the image.

 local group = self.view
 – Get the current setup
 setupData = facc.getSetupTable()
– Display the background
 local background = display.newImage( “GreenBkgd.png”, 0, 0, true)
 group:insert(background, true)

Note that the buttons display correctly, but the text fields and text field headers are also pushed to the left.

Have I missed a change between releases?
 

Hi @jsouthern,

Yes, some things changed between the “legacy” builds and the new Graphics 2.0 builds. Have you read through the migration guide yet? This summarizes your options in converting (using V1 Compatibility or using 2.0 conversion methods).

http://docs.coronalabs.com/guide/graphics/migration.html

Hope this helps,

Brent

Hi @jsouthern,

Yes, some things changed between the “legacy” builds and the new Graphics 2.0 builds. Have you read through the migration guide yet? This summarizes your options in converting (using V1 Compatibility or using 2.0 conversion methods).

http://docs.coronalabs.com/guide/graphics/migration.html

Hope this helps,

Brent