Hello everyone,
I just uploaded a build to Google Play using Solar2d daily build 3672. Google recently changed their Data Safety Policies. My app doesn’t save any data, it does request any data, it doesn’t use any plugins, and it makes no calls to the system other than grabbing a file that I have stored to read it to layout the app, but Google is saying that “Your app is not compliant with Google Play Policies”. Specifically, it has to do with the Data Safety Policies but I can’t figure out why I’m in the wrong. Any help would be appreciated.
build.settings
– For more information on build.settings, see the Project Build Settings guide at:
– Solar2D Documentation — Developer Guides | Building/Distribution
settings =
{
orientation =
{
– Supported values for orientation:
– portrait, portraitUpsideDown, landscapeLeft, landscapeRight
default = “landscapeRight”,
supported = { “landscapeRight”, “landscapeLeft”, },
},
--
-- Android section
--
android =
{
usesPermissions =
{
"android.permission.INTERNET",
},
},
--
-- iOS section
--
iphone =
{
xcassets = "Images.xcassets",
plist =
{
UIStatusBarHidden = false,
UILaunchStoryboardName = "LaunchScreen",
},
UIApplicationExitsOnSuspend = false,
},
--
-- Plugins section
--
plugins =
{
},
--
-- Project section
--
excludeFiles =
{
-- Exclude unnecessary files for each platform
all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
android = { "LaunchScreen.storyboardc", },
},
}