I am completely rebuilding an old Titanium app for my company in the Alloy MVC framework and distributing to iOS & Android. The app IDs are different for each respective platforms' marketplace for some reason and I want to use the same, old IDs so that current users of the old app will get notified of a new version. I'm getting closer to distribution and wanted to know if I am able to specify a different app ID to use in the tiapp.xml of my project for each platform?
Define platform specific app ID in tiapp.xml?
324 Views Asked by Rampancy At
1
There are 1 best solutions below
Related Questions in CROSS-PLATFORM
- How to tell the difference between linux and mac
- Possible to ignore certain submodules on Git checkout?
- Swipe between webviews in Xamarin
- How to invoke an Integration Service in Kony Studio that is created in the MobileFabric Console?
- Kony: Ant build error=exec-shell returned: 1
- Best practice for cross-platform mono project layout when using native dll's
- Equivalents to gcc/clang's march=native in other compilers?
- Platform specific cut paste mnemonics swing.
- Are there any naming conventions for command line arguments?
- Why is NetBeans running my program on OS X, but not building it into a JAR?
- How to Upgrade Cordova 3.5.0-0.2.4 to any higher version?
- Meteor.js - How to implement different templates on a cross-platform app
- Rcpp: Platform differences in output
- Cross-Platform Vector Format
- How to manage separate GUI processes in a Qt application?
Related Questions in APPCELERATOR
- Titanium Alloy project fail to build
- Appcelerator notification IOS 8 - no sound
- Android SDK Home: No Android SDKs were found under the specified SDK location
- Appcelerator Android GCM without Appcelerator Cloud Service
- How can I type console.log('') or Ti.API.info('') in titanium by hitting single key
- Relaunching iOS application
- How to change the theme for android at runtime in appcelerator
- Appcelerator IOS background while app is running or SyncTask?
- Appcelerator 4.0.1 & TableView on Android
- javascript pagination large array?
- can't find module: ti.imagefactory for architecture x86_64
- Appcelerator studio change listitem backgroundcolor on click
- Can I port mobile applications written in Appcelerator into cordova (using VS 2015)?
- appcelerator workaround for ti.include not working
- Titanium calendar module - timezone issue in Android
Related Questions in APPCELERATOR-TITANIUM
- Appcelerator hangs indefinitely on “Launching iOS Simulator”
- How to restrict emoji's in appcelerator when user entered in a textArea?
- Appcelerator Studio can't login
- Appcelerator app crashing on Barcode.capture() line on iOS device
- Appcelerator Building the Millennial Media Module for IOS
- Change visible property sometimes change the center position of the view (possible bug?)
- Issue when installing the last version of appcelerator studio
- Detect if Appcelerator app was opened from a push notification
- Add labels dynamically into a view in a ListViewItem
- Titanium: Memory leak in hello world application
- Clear Cookies of WebView in Titanium
- Found incompatible Titanium Modules for GCM Integration
- Firebase Analytics Appcelerator Module for Android
- Titanium UI Component size
- Moment JS setting TimeZone to EST - alloy/moment
Related Questions in TITANIUM-ALLOY
- using export in alloy controller versus attaching functions directly to the '$' scope
- Longjohn build fail Titanium
- How do I include a .js file in Titanium studio(in index.js)?
- What are the steps to Integrate the Alloy Editor 3.0 and bootstrap 3.2 in liferay 6.2?
- Slide Menu For iOS using Alloy With latest Titanium sdk
- How can I type console.log('') or Ti.API.info('') in titanium by hitting single key
- View is not updating from other controller Appcelerator Alloy
- Titanium SQLite Database Migration : Is it possible to manually call the migration.up and migration.down functions in Titanium?
- Titanium Appcelerator callback fuction not working in Android
- Change the underline of android textfields in Titanium Alloy
- Titanium not load menu and menuItem visible/not visible
- Appcelerator change sender name for Password reset
- Add labels dynamically into a view in a ListViewItem
- iOS Toolbar on TextField doesn't hide smoothly when calling blur
- Access $ in a required file using Alloy
Related Questions in APP-DISTRIBUTION
- Unable to install the iOS (enterprise distribution) app on global devices but able install it from Testflight mode
- Ad Hoc iOS App Distribution to several hundred devices
- How to link a brand new Xcode project to an existing iOS app on App Store?
- How to distribute iOS application when you don't have apple developer account
- Can't install my Adhoc ios build in a specific ios Device (iPhone XS - iOS 14.2)
- Making Custom Version of an App Store App
- Can I publish An Android App from two different accounts in separate countries?
- Play store message "this item isn't available"
- Google Play Console: How to promote Android app from Alpha to Beta
- custom iOS app availability in public app store
- This certificate has an invalid issuer in ios keychain
- Distribute iOS app for specific region/territory
- I want to distribute two same versions of iOS in app distribution
- Define platform specific app ID in tiapp.xml?
- Is there a way to create an GPL licensed iOS App and distribute it to customers without violating any license terms?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Simply NO, you cannot specify platform specific app id in single build. Recently I had also faced exact same situation, and the only solution was to change the app id while building for each platform...
OR
Dump your old app & create a new one if you don't care about previous app id much, but as you said that users should be notify of the newer version, then your only option is what I mentioned above. After all, it's a very small task to change app id before creating distribution builds.
Good Luck!