Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
davidoshiro committed Oct 2, 2012
0 parents commit 306ec0c
Show file tree
Hide file tree
Showing 22 changed files with 2,323 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .buildpath
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<buildpath>
</buildpath>
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.DS_Store
.project
Binary file added Icon-72.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icon@2x.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions build.settings
@@ -0,0 +1,47 @@
-- Supported values for orientation:
-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight

settings = {

orientation = {
default = "portrait",
supported = { "portrait", }
},

iphone = {
plist = {
CFBundleIconFile = "Icon.png",
CFBundleIconFiles = {
"Icon.png",
"Icon@2x.png",
"Icon-72.png",
},
UIStatusBarHidden = false,
UIPrerenderedIcon = true, -- set to false for "shine" overlay
--UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend

--[[
-- iOS app URL schemes:
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
"fbXXXXXXXXXXXXXX", -- example scheme for facebook
"coronasdkapp", -- example second scheme
}
}
}
--]]
}
},

--[[
-- Android permissions

androidPermissions = {
"android.permission.INTERNET",
},

]]--
}
29 changes: 29 additions & 0 deletions config.lua
@@ -0,0 +1,29 @@
application = {
content = {
width = 320,
height = 480,
scale = "letterBox",
fps = 30,

--[[
imageSuffix = {
["@2x"] = 2,
}
--]]
},
--[[
-- Push notifications
notification =
{
iphone =
{
types =
{
"badge", "sound", "alert", "newsstand"
}
}
}
--]]
}

0 comments on commit 306ec0c

Please sign in to comment.