That returned nothing. However, running this
grep -r advertisingIdentifier yourapp.app
returned this:
Binary file yourapp.app/yourapp matches.
Rebuilding the app with the gamethrive plugin commented out of build.settings and re-running grep returned nothing. ( I commented out the sections between “–start push notification plugin” and “–end push notification plugin”
Here is my build.settings:
[lua]
settings =
{
orientation =
{
default = “landscapeLeft”,
supported =
{
“landscapeLeft”, “landscapeRight” , “portrait”, “portraitUpsideDown”,
},
},
– start push notification plugin
–[[
plugins=
{
[“plugin.GameThrivePushNotifications”] =
{
– required
publisherId = “com.gamethrive”,
},
– Android requires Google Play Services with Corona v2014.2381 or later
[“plugin.google.play.services”] =
{
publisherId = “com.coronalabs”
},
},
–]]
–end push notification plugin
android =
{
largeHeap=true,
usesPermissions =
{
“android.permission.INTERNET”,
“android.permission.WRITE_EXTERNAL_STORAGE”,
------ INAPP “com.android.vending.BILLING”,
},
intentFilters =
{
{
label = “launch from URL”,
actions = { “android.intent.action.VIEW” },
categories =
{
“android.intent.category.DEFAULT”,
“android.intent.category.BROWSABLE”,
},
data = { scheme = “realview” }
},
– You can add more intent filters here.
},
},
iphone =
{
plist =
{
------ NEWSSTAND UINewsstandApp = true,
CFBundleURLTypes =
{
{
CFBundleURLSchemes =
{
“realview”,
}
}
},
UIAppFonts = { “Oxygen-Regular.ttf” },
------ DIFFERNT CFBundleIdentifier = “BUNDLEID HERE”,
------ DIFFERNT CFBundleDisplayName = “DISPLAY NAME HERE”,
CFBundleIconFile = “Icon.png”,
------ NEWSSTAND CFBundleIcons =
------ NEWSSTAND {
------ NEWSSTAND CFBundlePrimaryIcon =
------ NEWSSTAND {
CFBundleIconFiles =
{
“Icon.png”,
“Icon@2x.png”,
“Icon-Small.png”,
“Icon-Small@2x.png”,
“Icon-60.png”,
“Icon-60@2x.png”,
“Icon-72.png”,
“Icon-72@2x.png”,
“Icon-Small-40.png”,
“Icon-Small-40@2x.png”,
“Icon-Small-50.png”,
“Icon-Small-50@2x.png”,
“Icon-76.png”,
“Icon-76@2x.png”,
------ NEWSSTAND },
------ NEWSSTAND },
------ NEWSSTAND UINewsstandIcon =
------ NEWSSTAND {
------ NEWSSTAND CFBundleIconFiles =
------ NEWSSTAND {
------ NEWSSTAND “NewsStand.png”,
------ NEWSSTAND },
------ NEWSSTAND UINewsstandBindingType=“UINewsstandBindingTypeMagazine”,
------ NEWSSTAND UINewsstandBindingEdge=“UINewsstandBindingEdgeLeft”,
------ NEWSSTAND },
},
},
},
}
[/lua]
Here is a screenshot from a hex editor
http://imgur.com/hq9b72w
Thanks for following up.