Error: Template not Found. Older Build: 2014.2223

NOT SO FAST.

Although I can now complete my build with v2263, “AND” I AM able to install the APK onto my Android 2.3.4 device, (ATT LGP505), the problem is that when I run it, I get the message, “The application xxxxxxx has stopped unexpectedly. Please try again.”   (xxxxxxx = app name)

To verify the problem wasn’t my code, I grabbed the super simple project from the Corona Code Exchange in “Templates” called “Simple Grid System” and it, too, DOES NOT WORK. So, I have included the following super-short code (build.settings, config.lua, main.lua) BELOW in hopes that someone can tell me why this doesn’t work.

BUILD.SETTINGS

settings = {
    orientation = {
        default = “portrait”,
        supported = { “portrait”, }
    },
    iphone = {
        plist = {
            UIStatusBarHidden = false,
            UIPrerenderedIcon = true, – set to false for “shine” overlay

        }
    },

}

CONFIG.LUA

application = {
    content = {
        width = 320,
        height = 480,
        scale = “letterBox”,
        fps = 30,

    },

}

MAIN.LUA

– Screen size
local screenW, screenH, halfW, halfH = display.viewableContentWidth, display.viewableContentHeight, display.viewableContentWidth*0.5, display.viewableContentHeight*0.5
 
– Grid
numberOfColumns = 16
columnWidth = math.floor( screenW / numberOfColumns )        
function getColumnPosition( columnNumber )
    return (columnNumber - 1) * columnWidth
end
function getColumnWidth( numberOfColumns )
    return numberOfColumns * columnWidth
end    
 
– Loop columns
for i = 1, numberOfColumns do
    – Loop thru records
    for y = 1, 26 do
        – Set column and row
        local column = i
        local row = y * 20 - 20
 
        – Set text of label
        local text = i
        if i < 10 then
            text = ‘0’ … text
        end
        
        – Add newText
        local options =
        {
            text = text,
            x = getColumnPosition(column),
            y = row,
            width = getColumnWidth(column+1),
            fontSize = 14,
            align = “left”
        }
        local label1 = display.newText( options )
        label1.anchorX = 0
        label1.anchorY = 0
    end
end

PLEASE HELP ME SOLVE THIS PROBLEM FOR ANDROID 2.2 OR 2.3.3.

after more work, I have figured out that the problem is likely in either config.lua or build.settings, since the main.lua file now has only 3 lines.

MAIN.LUA

local label1 = display.newText( “THIS IS A TEST”,0,0,native.systemFont,24)
label1.anchorX=0
label1.anchorY=0

CONFIG.LUA

application = {
    content = {
        fps = 30,
    },
}
 

BUILD.SETTINGS

settings = {
    orientation = {
        default = “portrait”,
        supported = { “portrait”, }
    },
    android =
    {
        versionCode = “1”,
    },
}

My suggestion would be to use one of our sample apps in SampleCode like hello world and see if that has the same issue.

Rob

THIS FIX APPEARS TO ALLOW THE COMPILE TO FINISH, BUT I STILL CAN’T GET ANYTHING TO RUN ON MY ANDROID 2.3.4 - even a short 3 ilne Hello World project.

Hi Rob,

Okay, based upon your suggestion, I have removed the build.settings file and the config.lua file. Now, all I have is a main.lua file with the following 3 lines of code.

     print( “Hello World!” )
     local myTextObject = display.newText( “Hello World!”, 50, 50, “Arial”, 60 )
     myTextObject.anchorX=0

This works perfectly on my HTC One X - Android 4.1.1, but not even the PRINT(“Hello World!”) works from my ATT LGP505 Android 2.3.4 device. I am using ADB to see console messages just fine on the HTC One X. Here are the results on the Android 4.1.1 from using “adb logcat Corona:v *:s”

    V/Corona ( 6543): > Class.forName: network.LuaLoader

    V/Corona ( 6543): < Class.forName: network.LuaLoader

    V/Corona ( 6543): Loading via reflection: network.LuaLoader

    I/Corona ( 6543): Platform: HTC One X / ARM Neon / 4.1.1 / Adreno ™ 225 / OpenGL ES 2.0 V@4.1 AU@ (CL@2814726)

    I/Corona ( 6543): Hello World!

I am using the ADB on the Android 2.3.4 device to do the following:

    adb shell rm /sdcard/tmp/test.apk --this removes the previous apk

    adb install -s e:\CoronaLabs\test.apk  --this installs the apk (appears to work fine - I can see the Corona logo on App named “test”

    adb logcat Corona:v *:s --nothing ever comes to the log file from the device

ADB appears to work just fine on my Android 2.3.4, its just that the Hello World project doesn’t work.

Here are more details:

    On the Android 2.3.4 ATT LGP505, I have an SD card in it and it seems to work great - good network connectivity, pulls down my gmail fine. I have Setttings -> Applications -> Unknown Sources checked and Settings -> Applications -> Development, I have USB debugging checked. As I said, it appears to install the APK just fine - can see the Corona logo on App named “test”

    Another point worth mentioning is that I am doing the Corona build from Lua Glider 2.0, but that shouldn’t matter right, because the actual APK is put together by the Corona Simulator -> File -> Build, right?

I wonder whats happeing TroyLyndon, I installed mine on Nook color ( android 2.2 ) , Redmi note with 4.4.2,  and Kindle Fire HD 2nd gen 4.2.2 with no issues.

Please humor me, and build our Hello World sample app “as is” using Corona Simulator (bypassing Glider) and use adb install to install it.  Use “adb logcat” without anything else to look for messages from all related activites.   when you do “adb logcat Corona:v *:s” you only get messages from the Corona activity and could be missing very important other messages.

Rob

Hi Rob,

Happy Easter!

I have now run done as you have asked from Corona Editor within Sublime Text 3. The result was the same, “Sorry - the application test (process com.gmail.troylyndon.test)  has stopped unexpectedly. Please try again.”

From the command prompt I entered “adb logcat >logcat.txt” to save the log for you to see. The following I believe is the most relevant part of the log, as I grabbed log entries beginning with the name of the app “com.gmail.troylyndon.test” - but if you want to see the entire log, go to http://www.rdgames.us/log.txt

Here is what I think is the most relevant part of the log:

    D/VoldCmdListener( 1464): asec path com.gmail.troylyndon.test-1
    I/PackageManager( 1561): <!>com.android.server.PackageManagerService$SdInstallArgs 5471<!> Succesfully renamed smdl2tmp1 to com.gmail.troylyndon.test-1 at new path: /mnt/asec/com.gmail.troylyndon.test-1
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3003<!> Scanning package com.gmail.troylyndon.test
     I/PackageManager( 1561): Linking native library dir for /mnt/asec/com.gmail.troylyndon.test-1/pkg.apk
     D/StatusBarPolicy( 1644): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-63 iconLevel=5,  asu_Ecio=-4 iconLevel_ecio=5
     D/StatusBarPolicy( 1644): [BRIGHTHY] curNetwork= curHPLMN=
     I/WifiStateTracker( 1561): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3529<!> Registered content provider: com.gmail.troylyndon.test.files, className = com.ansca.corona.storage.FileContentProvider, isSyncable = false
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3552<!>   Providers: com.ansca.corona.storage.FileContentProvider
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3572<!>   Services: com.ansca.corona.CoronaService
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3592<!>   Receivers: com.ansca.corona.SystemStartupBroadcastReceiver com.ansca.corona.notifications.AlarmManagerBroadcastReceiver com.ansca.corona.notifications.StatusBarBroadcastReceiver com.ansca.corona.notifications.GoogleCloudMessagingBroadcastReceiver com.ansca.corona.purchasing.GoogleStoreBroadcastReceiver
     D/PackageManager( 1561): <!>com.android.server.PackageManagerService 3612<!>   Activities: com.ansca.corona.CoronaActivity com.ansca.corona.CameraActivity com.ansca.corona.VideoActivity com.ansca.corona.purchasing.StoreActivity com.facebook.LoginActivity com.ansca.corona.facebook.FacebookFragmentActivity
     I/ActivityManager( 1561): Force stopping package com.gmail.troylyndon.test uid=10075

One more thing worth mentioning are my settings when making a build - which you can see at http://www.rdgames.us/buildSetup.jpg - you will notice that my AppStore setting is None.

Thanks for your help.

Very kindly,

Troy

I took HelloWorld and built it with the Standalone Corona Simulator. I built both once with Nook as the selected store, one with it set to none.  I sideloaded the .apk file onto my Nook Color and it worked as expected (after I had to renable the device for development, my 120 days was up). 

Before I can take this to Engineering, I’ll need to know:

what build of corona you’re using? 

What version of the operating system are you using? 

What device are you using to test this on? 

What command are you using to sideload the app?

Thanks

Rob

Hi Rob, Working on Easter? I am very grateful for your dedication to helping us. Forona/Fuse is very fortunate to have you. what build of corona you’re using? V2263 What version of the operating system are you using? Windows 7 Professional What device are you using to test this on? ATT LG P505 - Android 2.3.4 What command are you using to sideload the app? adb install -s test.apk

Leave the -s off of the adb install command.  See what that does?  I don’t know how supported Corona SDK is when installed on the SD card.

Rob

Still not working for AT&T LG505 Android 2.3.4.

As you suggested, I removed the ‘-s’ from the adb install, using: adb install test.apk

The console responded:

     1436 KB/s (6427349 bytes in 2.764s)

          pkg: /data/local/tmp/test.apk

     Success

The test.apk with the Corona icon showed just as before. When I ran it, the result was the same when I ran it, sorry to say.

     Sorry!

     The application test (process com.gmail.troylyndon.test) has stopped unexpectedly. Please try again. (“Force close” button)

BTW, I downloaded File Manager using Google Play - no problem, their app runs fine. So this problem is clearly “Corona” specific.

Thank you for helping with this.

Kindly,

-Troy

I’ll ask engineering to look at the log file and see if anything stands out.  Is your phone jail broken? 

Rob

Can you confirm that you have tried to build our unedited HelloWorld sample app directly in Corona Simulator (no IDE’s or 3rd party tools in the way) and you’re getting this error?

Rob

Hi Rob,

My AT&T LG P505 was purchased “used” without a sim card, set to factory settings. I acquired an SD Card so that I could store data on it.

As an AT&T phone, it wouldn’t have to be ‘jailbroken’ - only ‘unlocked’. But I wouldn’t know if it was ‘unlocked’ until I were to insert a non-AT&T sim card. But I don’t use the phone - it is only a device for testing Android 2.3.4 on the LG P505 platform.

For example, the phone App works - however, when I type in a phone number to call, when I press the send button, it simply says “Mobile network not available.” No error like the one we see where the OS crashes.

As I mentioned before, other apps downloaded from Google Play work absolutely fine on this device.

So, unless there is specific code accessing the sim card or phone features, Corona should work fine. But it doesn’t.

Other apps running doesn’t prove anything.  We want to help you.  Please go to the SampleCode/GettingStarted/HelloWorld folder and build that app.  Do not make any changes to it.  Install it and post the full adb console log from it if it fails to install.

We can’t help you further until you do this step and confirm you did it.  I’ve asked several times that you do this and you have yet to confirm that process.

Rob

Hi Rob,

I found the tutorial at: http://docs.coronalabs.com/legacy/guide/start/helloWorld/index.html.

Although the following represents the code, WHERE are the image files so that I can build it with the proper images?

print( “Hello World!” )

local myTextObject = display.newText( “Hello World!”, 50, 50, “Arial”, 60 )

myTextObject:setTextColor( 255, 0, 0 )

function screenTap()
    local r = math.random( 0, 255 )
    local g = math.random( 0, 255 )
    local b = math.random( 0, 255 )
    myTextObject:setTextColor( r, g, b )
end

display.currentStage:addEventListener( “tap”, screenTap )

local physics = require( “physics” )
physics.start()

local sky = display.newImage( “bkg_clouds.png” )
sky.x = 160; sky.y = 195

local ground = display.newImage( “ground.png” )
ground.x = 160; ground.y = 445

physics.addBody( ground, “static”, { friction=0.5, bounce=0.3 } )

local crate = display.newImage( “crate.png” )
crate.x = 180; crate.y = -50; crate.rotation = 5

physics.addBody( crate, { density=3.0, friction=0.5, bounce=0.3 } )

Kindly,

-Troy

Troy, you have to use the sample project that is included with Corona. Look in your Corona directory. SampleCode/GettingStarted/HelloWorld

Hi Rob,

Here is the log beginning just before I run HelloWorld until it brings up the Sorry message with a Force Close button.

--------- beginning of /dev/log/main
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-56 iconLevel=5,  asu_Ecio=-4 iconLevel_ecio=5
--------- beginning of /dev/log/system
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-55 iconLevel=5,  asu_Ecio=-5 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1085<!> [DSST] pollstate() : reason = data network state changed
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :6
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :4
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 982<!> EVENT_POLL_STATE_REGISTRATION.  regState: 3
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :14
I/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1090<!> [DSST] Data Registration denied : General
D/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1085<!> [DSST] Poll ServiceState done: oldSS=[1 home null null null  Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false] newSS=[1 home null null null  Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false]
D/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1085<!> [DSST] pollstate() : reason = data network state changed
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-56 iconLevel=5,  asu_Ecio=-8 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :6
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :4
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 982<!> EVENT_POLL_STATE_REGISTRATION.  regState: 3
D/brighthy_log: <!>com.android.internal.telephony.gsm.GsmServiceStateTracker 919<!> EVENT_POLL :14
I/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1090<!> [DSST] Data Registration denied : General
D/DATA    ( 1670): <!>com.android.internal.telephony.DataServiceStateTracker 1085<!> [DSST] Poll ServiceState done: oldSS=[1 home null null null  Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false] newSS=[1 home null null null  Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false]
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-53 iconLevel=5,  asu_Ecio=-6 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-53 iconLevel=5,  asu_Ecio=-4 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-50 iconLevel=5,  asu_Ecio=-4 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-48 iconLevel=5,  asu_Ecio=-3 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
I/ActivityManager( 1562): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.gmail.troylyndon.HelloWorld/com.ansca.corona.CoronaActivity } from pid 1686
I/ActivityManager( 1562): Start proc com.gmail.troylyndon.HelloWorld for activity com.gmail.troylyndon.HelloWorld/com.ansca.corona.CoronaActivity: pid=4548 uid=10077 gids={}
I/ActivityThread( 4548): <!>android.app.ActivityThread 3312<!> Pub com.gmail.troylyndon.HelloWorld.files: com.ansca.corona.storage.FileContentProvider
W/dalvikvm( 4548): Exception Ljava/lang/UnsatisfiedLinkError; thrown while initializing Lcom/ansca/corona/JavaToNativeShim;
W/dalvikvm( 4548): Exception Ljava/lang/ExceptionInInitializerError; thrown while initializing Lcom/ansca/corona/CoronaEnvironment;
W/dalvikvm( 4548): threadid=1: thread exiting with uncaught exception (group=0x40018560)
E/AndroidRuntime( 4548): FATAL EXCEPTION: main
E/AndroidRuntime( 4548): java.lang.ExceptionInInitializerError
E/AndroidRuntime( 4548):     at com.ansca.corona.CoronaActivity.onCreate(CoronaActivity.java:101)
E/AndroidRuntime( 4548):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime( 4548):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
E/AndroidRuntime( 4548):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
E/AndroidRuntime( 4548):     at android.app.ActivityThread.access$1500(ActivityThread.java:117)
E/AndroidRuntime( 4548):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
E/AndroidRuntime( 4548):     at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4548):     at android.os.Looper.loop(Looper.java:130)
E/AndroidRuntime( 4548):     at android.app.ActivityThread.main(ActivityThread.java:3729)
E/AndroidRuntime( 4548):     at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4548):     at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 4548):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:876)
E/AndroidRuntime( 4548):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:634)
E/AndroidRuntime( 4548):     at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime( 4548): Caused by: java.lang.ExceptionInInitializerError
E/AndroidRuntime( 4548):     at com.ansca.corona.CoronaEnvironment.setLuaErrorHandler(CoronaEnvironment.java:322)
E/AndroidRuntime( 4548):     at com.ansca.corona.CoronaEnvironment.<clinit>(CoronaEnvironment.java:50)
E/AndroidRuntime( 4548):     … 14 more
E/AndroidRuntime( 4548): Caused by: java.lang.UnsatisfiedLinkError: Couldn’t load lua: findLibrary returned null
E/AndroidRuntime( 4548):     at java.lang.Runtime.loadLibrary(Runtime.java:429)
E/AndroidRuntime( 4548):     at java.lang.System.loadLibrary(System.java:554)
E/AndroidRuntime( 4548):     at com.ansca.corona.JavaToNativeShim.<clinit>(JavaToNativeShim.java:117)
E/AndroidRuntime( 4548):     … 16 more
W/ActivityManager( 1562):   Force finishing activity com.gmail.troylyndon.HelloWorld/com.ansca.corona.CoronaActivity
W/ActivityManager( 1562): Activity pause timeout for HistoryRecord{4097d738 com.gmail.troylyndon.HelloWorld/com.ansca.corona.CoronaActivity}
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-47 iconLevel=5,  asu_Ecio=-3 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-48 iconLevel=5,  asu_Ecio=-4 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
D/StatusBarPolicy( 1646): <!>com.android.systemui.statusbar.policy.StatusBarPolicy 1331<!> [BRIGHTHY] asu=-49 iconLevel=5,  asu_Ecio=-3 iconLevel_ecio=5
D/StatusBarPolicy( 1646): [BRIGHTHY] curNetwork= curHPLMN=
I/WifiStateTracker( 1562): <!>android.net.wifi.WifiStateTracker 1306<!> [WifiStateTracker] handleMessage EVENT_POLL_INTERVAL
 

We tested it on several devices today and we are not encountering this issue.  I’m hoping for more info from Engineering because you clearly are having this error, but we can’t reproduce it.

Rob

Can you confirm what processor is in your phone (CPU).  Several sources say that its running a Snapdragon S1.  Another source says its a rebrand of the LG Optimus One which lists the CPU as an ARM11.  In either case, both are ARMv6 architecture chips.  I saw one source that claimed it was an ARM9 which is an ARMv7 family chipset.   Corona SDK does not support ARMv6 chips, only ARMv7.   We have tested it on a range of Android processors and it’s working as expected.

Rob