My app is on the App Store. Now I would like to publish a "lite" version of my app.
Its name could be something like "MyApp lite", it has only a reduced set of features.
I think it would be accepted on the reviewal process because it is not unusual that two similar apps are in the App Stores, one having just the main features and the other being complete.
Let's say they are identified by
com.myappdomain.app
and
com.myappdomain.app.lite
1-Is it possible to publish such a "lite" app along the main one (different pricing or business model)?
2-Can its name be like "MyApp lite" (or similar wording)?
3-Can they have the same app icon?
4-Can they be installed at the same time on a device?
5-The two apps are compatible with a special data type, importing, exporting, and launching with files with a special registered file extension.
This is from the info.plist
<key>CFBundleDocumentTypes</key>
...
<key>CFBundleTypeName</key>
<string>com.myappdomain.mydatatype</string>
<key>NSUbiquitousDocumentUserActivityType</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string>
...
<key>UTExportedTypeDeclarations</key>
...
<key>UTImportedTypeDeclarations</key>
...
<key>CFBundleDocumentTypes</key>
...
<key>CFBundleTypeName</key>
<string>com.myappdomain.mydatatype</string>
<key>NSUbiquitousDocumentUserActivityType</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype</string>
...
I changed the bundle identifier in certain places for the new project (the original code, stripped of many features)
but I see that there is also
$(PRODUCT_BUNDLE_IDENTIFIER).mydatatype
for NSUbiquitousDocumentUserActivityType
that changes for the two apps, while the other plist settings are the same.
Is it right?
Should the two apps have the same NSUbiquitousDocumentUserActivityType value instead?
Thanks in advance
Topic:
App Store Distribution & Marketing
SubTopic:
General
Tags:
App Store
iOS
Bundle ID
App Review