ADF Mobile: Apple App Store: Encryption Registration Number for Sqlite

When submitting apps to Apple App Store, you have to declare whether or not your app uses encryption. This is for export compliance reasons. If you answer Yes, you need to provide an Encryption Registration Number (ERN). I assume that since the Sqlite DB in ADF Mobile is encrypted, I need to answer Yes. I've gotten a lot of differing opinions on this, but I'm looking for a definitive answer from either Apple or Oracle. Has anyone been through this already?
Thanks

Hi, Mike, here is our response on this question. First thank you for your inquiry around Apple AppStore’s Encryption Export question. The exact question from Apple’s iTunesConnect portal is “Have you added or made changes to encryption features since you last uploaded a binary for this product?”. While we will do our best to suggest an answer based on our understanding of the situation, ultimately any answer that relates to an Apple process or website needs to come from Apple.
Our understanding of the question is that it pertains to the functionality or features of the application you developed using Oracle ADF Mobile and Apple iOS SDK, not to the capabilities of the development tools nor the framework. Furthermore, the question focus on changes between previous (there may be none) and current version of the application. Therefore, for the following scenarios:
•     V1– no encrypted database nor secured SSL communication to the backend services.
o     Based on our understanding of the question, the answer would be “No” as you have not added any encryption feature.
•     V2 – adds encrypted local database and/or secured SSL communication to backend service
o     Based on our understanding, the answer would be “Yes” as there are changes in the encryption features
•     V3 – same database encryption and SSL communication as v2.
o     Based on our understanding, the answer would be “No” as there is no change in the encryption features between v2 and v3.
Hope this helps, and please let me know if you have any questions.
Thanks,
Joe Huang

Similar Messages

  • HT4502 I submitted a new mobile app to the Apple App store.  Is there a phone number I can call to get the status of the App?

    I submitted a new mobile app to the Apple App Store.  Is there a phone number I can call to check the status?

    https://itunesconnect.apple.com

  • Lightroom 4 purchased through Apple App store does NOT have a serial number - cannot upgrade to lightroom 6

    I am trying to upgrade from Lightroom 4.4 to Lightroom 6 on a Mac running OS X (Lion).  I have purchased Lightroom 6 as an upgrade (as I am running Lightroom 4).  The Lightroom 6 installer continues to indicate that it cannot find a "qualifying product" and asks for a declaration of the Lightroom product installed and its serial number.  I am currently running Lightroom 4 purchased through the Apple App Store in 2013; according to all the information I can glean regarding this product... it does not have a serial number (if it was purchased through the Apple App Store).  Does anyone have an idea on how to supply a valid serial number for the Lightroom 6 installer?
    iMac running OS X 10.9.5
    Adobe Lightroom 4.4 (purchased in 2013 through Apple App Store)
    Adobe Lightroom 6 (purchased online as an upgrade from Adobe Lightroom 4.X)
    Any help would be appreciated.
    Thanks,
    Bruce

    As I said in the post, a serial number was not necessary to install it; the Apple downloadable version doesn't seem to be serialized.  I have not uninstalled Lightroom 4; it is still running, but apparently in its present form it doesn't provide a serial number for the Lightroom 6 upgrade to use. 

  • ERROR ITMS-9000: Missing Code Signing Entitlements when adding app to Apple App Store

    My client is getting the following error when sending my app (compiled in Flash Pro CC 2014 with AIR SDK 15.0.0.356) to the Apple app store:
    ERROR ITMS-9000: "Missing Code Signing Entitlements. No entitlements found in bundle
    'com.xxxxxx.xx.xxx' for excutable 'payload/xxxxx.app./xxxx'.""
    He is saying that I need to send them the entitlements file.
    I can't find out any information about this with regards to Adobe Air compiled iOS apps, apart from this old post:
    Adding iOS entitlements to AIR apps
    which states that 'the packager configures the entitlements file '
    Can anyone explain what might be missing here?
    Thanks,
    Alan.

    It looks as if this problem is solved by doing step 2 from here:
    http://dev.mlsdigital.net/posts/how-to-resign-an-ios-app-from-external-developers/
    It basically states that the client needs to produce the entitlements file and lists the following that the client will provide themselves:
    A “Mobile Provisioning Profile”
    An “Entitlements.plist”
    An “iOS Distribution Certificate”
    iReSign OS X app (or you could use command line)
    Hope this helps someone. We've run into quite a few problems trying to get the Flash Air compiled App to both enterprise and Apple Store as it can't come from us (the developers) it has to be signed and delivered from the client.

  • Aperture was originally installed from the app store, now its asking for a serial number. how do i download the serial number or reinstall from the app store?

    Aperture was originally installed from the app store, now its asking for a serial number. how do i download the serial number or reinstall from the app store?

    The App Store version of Aperture will never ask for a serial number so something got confused on your system. Did you ever have a non App Store version of Aperture installed? Did you download the trial version for some reason?
    You can try moving Aperture from the Application folder to the desktop and then going to the App Store. Log in with the same Apple ID you used to purchase Aperture and you should be able to download it again.
    regards

  • ADF mobile Client App: Issue about using db sequence for populating row_id

    Hi,
    I'm working on an ADF mobile client app POC project. In the mobile app, new record can be created, the column type for row_id is VARCHAR2(15), I used the db sequence created in MC db, converted the seq number to a string, then set row_id via initDefaults method.
    The new records are created and row_ids are set with the proper sequence numbers when first time launching the client app in blackberry simulator. But if I exit the app and re-launch the app again, I got net.rim.device.api.database.DataTypeExpection when trying to create a new record.
    Could anyone please help me and let me know what could cause this issue? What should be the proper way to populate the row_id? Appreciate your response in advance!
    Jdev/ADFMobile extension version:
    11.1.1.4.0 build 5860
    mobile server version:
    10.3.0.3
    blackberry version:
    BlackBerry JDE 5.0.0
    BlackBerry Smartphone Simulators 6.0.0.141 (9800)
    Code:
    public class SOrgExtEOImpl extends EntityImpl {
    protected void initDefaults() {
    super.initDefaults();
    SequenceImpl seq = new SequenceImpl("S_SIEBELMOBILE_S_ORG_EXT", getDBTransaction());
    populateAttributeAsChanged(ROWID1, seq.getSequenceNumber().toString());
    Log:
    First time launching the MC app:
    [FINE - adfnmc.bindings - BC4JIteratorBinding - createRow]
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 0 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 1 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 2 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 3 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 4 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 5 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 6 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 7 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 8 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 9 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 10 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 11 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 12 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 1 to 2010-12-20 14:58:13.0
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 3 to 2010-12-20 14:58:13.0
    [FINE - adfnmc.model - SequenceImpl - create] Database SQLite doesn't support sequences natively; creating TableSequenceImpl for
    S_SIEBELMOBILE_S_ORG_EXT
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 0 to 73501
    [FINE - adfnmc.model - EntityImpl - getAttribute] Retrieved from siebel.mobile.SOrgExtEO.CreatedBy at index 2
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 2 to 1-11ZQ
    [FINE - adfnmc.model - EntityImpl - getAttribute] Retrieved from siebel.mobile.SOrgExtEO.LastUpdBy at index 4
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 4 to 1-53Y
    [FINE - adfnmc.model - EntityImpl - getAttribute] Retrieved from siebel.mobile.SOrgExtEO.BuId at index 5
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 5 to 1-1DG
    [INFO - adfnmc.model - MetaObjectManager - findOrLoadMetaObject] MetaObject siebel.mobile.AccountAddressFKAssoc not found in cache, so
    loading it from XML
    [INFO - adfnmc.model - MetaObjectManager - findOrLoadMetaObject] MetaObject siebel.mobile.ActivityAccountFKAssoc not found in cache, so
    loading it from XML
    [FINE - adfnmc.bindings - BC4JIteratorBinding - notifyRowInserted]
    [FINE - adfnmc.bindings - IteratorExecutableBindingImpl - rowInserted] IterBinding - AccountPageDef:AccountAddressView1Iterator
    [FINE - adfnmc.bindings - IteratorExecutableBindingImpl - notifyRowInserted] IterBinding - AccountPageDef:AccountAddressView1Iterator
    [FINE - adfnmc.bindings - RangeBindingImpl - rowInserted] AccountAddressView1
    [FINE - adfnmc.bindings - RangeBindingImpl - notifyNewElement] AccountAddressView1, index:0
    [FINE - adfnmc.ui - BBTable - newElement] relativeIndex = 0
    [FINE - adfnmc.bindings - RangeBindingImpl - setVariableIndex] Begin, AccountAddressView1, listener: oracle.adfnmc.component.ui.BBTable$1
    [FINE - adfnmc.bindings - SimpleContext$Variables - setVariable] Setting variable "row" to expression #
    {AccountPageDef_AccountAddressView1_rowAlias}
    [FINE - adfnmc.ui - BBOutputText - endInit]
    Re-launching the MC app:
    INFO - adfnmc.bindings - BC4JOperationBinding - execute] Preparing to execute OperationBinding id:'CreateInsert'
    [FINE - adfnmc.bindings - BC4JIteratorBinding - createRow]
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 0 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 1 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 2 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 3 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 4 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 5 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 6 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 7 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 8 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 9 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 10 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 11 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 12 to
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 1 to 2010-12-20 15:08:35.0
    [FINEST - adfnmc.model - EntityImpl - populateAttribute] Setting value at index 3 to 2010-12-20 15:08:35.0
    [FINE - adfnmc.model - SequenceImpl - create] Database SQLite doesn't support sequences natively; creating TableSequenceImpl for
    S_SIEBELMOBILE_S_ORG_EXT
    [INFO - adfnmc.ui - ErrorHandlerImpl - reportException] BindingContainer: AccountPageDef, exception: oracle.adfnmc.AMCJboException
    [WARNING - adfnmc.ui - ErrorHandlerImpl - reportException] [oracle.jbo.server.SequenceImpl$TableSequenceImpl.retrieveSequenceParamsFromDB]
    oracle.adfnmc.AMCJboException: ADF-MNC-60109: Error retrieving sequence parameters for sequence S_SIEBELMOBILE_S_ORG_EXT
    [WARNING - adfnmc.ui - ErrorHandlerImpl - reportException] oracle.adfnmc.java.sql.SQLException:
    net.rim.device.api.database.DataTypeException:Datatype mismatch
    [WARNING - adfnmc.ui - ErrorHandlerImpl - reportException] Unable to retrieve String at index 2
    [WARNING - adfnmc.ui - ErrorHandlerImpl - reportException]
    [FINE - adfnmc.ui - MessageBox - show] message=oracle.adfnmc.AMCJboException: ADF-MNC-60109: Error retrieving sequence parameters for
    sequence S_SIEBELMOBILE_S_ORG_EXT
    [FINE - adfnmc.ui - MessageBox - show] oracle.adfnmc.java.sql.SQLException: net.rim.device.api.database.DataTypeException:Datatype mismatch
    [FINE - adfnmc.ui - MessageBox - show] Unable to retrieve String at index 2

    >
    >
    using 10gR2 on Sun-Solaris. Getting consistently "db file parallel read" over 35 ms as an average wait for the past few months. No performance issues as such.
    Using RAID 1+0. DB Size is 2 TB. Transactions are OLTP/Batch
    Is this metric high or normal. How to justify that..
    Looking at your results it's not really possible to say.
    db file parallel read is a request for a number of randomly distirbuted blocks, and the time for a read is the time for the last block of the set to be returned.
    Without knowing how many blocks are being requested at a time you can't really determine what constitutes a reasonable time. Given that you say OLTP + Batch, and have a large volume of scattered reads, it's quite possible that you have some queries on the Batch side doing very large index range scans - which would allow for some very large db file parallel reads.
    I take it from the use of statspack that you're not licensed for the diagnostic and performance packs; it would be easy to query v$active_session_history to get some idea of the number of blocks per request as this is given by the P2 parameter. As it is. you may be able to get a rough idea by messing about with the various "physical read" numbers in the Instance Activity section of statspack.
    Regards
    Jonathan Lewis

  • How to submit Muse apps to the Apple App Store ?

    Hello,
    I am completely new with the Muse software. Before starting creating a new app, I would like to know if it's possible to submit a new "Muse" app to the Apple App Store ? Is there any tutorial ? I already created some apps using Indesign and the submiting process was quiet easy ... is it the same with Muse ?
    Many thanks for your support.
    FX

    Actually Muse is a software designed for build Websites without writing code. Right now there are no options inside the appication for build mobile Apps.
    By the way, you could use Muse for prototype/build an HTML based application, refine it in dreamweaver (or other software) and create a mobile app via Phone Gap.

  • Apple App Store is used for Account. How to Avoid It? How to Delete All Sharing Preferences?

    Every time I go to the Apple App Store, I have intrusion, relentless stalking, piggy back computer usage, ID Theft, Account takeovers, and theft problems on everything including all brands of email accounts. I keep changing the ID and the passwords intermittently, but attacks continue. Erasing or replacing the HD does not remedy the situation either.
    As of now, the computer has practically empty; 979.87 GB free out of 1TB. It may have a couple of notes, pdf's, and some bookmarks. It was recently erased and is running on the OS X 10.7.5 to avoid Apple App Store updates to Mavericks, Pages, Keynote, etc. The security was set on everything I could think of to use the internet safely. 
    Besides surfing the web, I only did a few things. Because Chrome is better recommended, I used Safari to download Firefox, then used Firefox to download Chrome. Safari won't download it directly. I checked Yahoo mail. I used the Apple ID to post a question in the Apple Communities (within 24-48 hours of today). I changed the password to Apple ID in case there was an issue later. (I have to change the password almost 100% of the time because it gets stolen often) I usually erase Firefox because I don't use it. This time I left it there while I worked on other things & erased it later.
    After reading some online material, the system started to run slow as though there was too much data or space being taken up. Then I felt that someone or someone was using it at the same time. I disconnected the Ethernet and left an idle screen (it will sleep after a few minutes) because no sharing options remained. All fields are depopulated. All internet connection options were turned off and removed. Only the Ethernet remains. Unfortunately, that Bluetooth button can still be turned "on" and/or "discoverable". I don't know it this will still work with Bluetooth turned off  and removed in Sharing. Please clarify that for me.
    When I returned, the screen saver was changed. I expected to use a password to get back onto the computer, but no password was needed. I checked the settings and found the password for logging onto an idle & sleeping screen was removed. No one physically changed things around. This was done remotely or through malware.
    I checked various system preferences, and found the locks to Sharing was open with some of the components set up for usage (public files, bluetooth, remote apple events, etc.). I tried to change some options, but some items did not move. I tried to lock it but it would not lock. I tried other sys pref screens and found that some of them had been dismantled too.
    I tried to open the lock for other changes, but the password to System Preferences was changed.
    Is it normal to get a password popup window to LOCK users & groups when it is OPEN? I don't believe you need a password to lock it. Eventually, open locks closed with no chance to immediately reopen it to adjust the preferences (all passwords were changed).
    The terminal looks like it was used. No history was found. Reseting Password rejected new passwords. iTunes sharing could not be changed and parental control refused to lock. After waiting an hour or two, was able to lock it. I wonder what it was being used for.
    Now that the internet and the network are disconnected (before sending this message), everything is still extremely slow. A single window takes a long time to open. I have no idea what is making it drag and I don't know where to look.
    If history is repeating itself, then the computer is set for piracy just like before. Every place I go is watched, all passwords are captured, all files are checked, all email accounts can be stolen, chat and messages are used (email & computer), iTunes will be logged into, other types of accounts are stolen/taken over, and everything I type is read. Any changes will be sabotaged.
    I am confident that someone in the Apple Community will have the answers to getting rid of this problem for good. If you don't have all the answers, then perhaps you have good resources and referrals (not speculations or guesses).
    I read about apps, software, or devices that either detect or deter this type of problem. What are they and how do they work?
    Q- Also, exactly what are the steps to transfer the OS X 10.7.5, Mavericks, and the future Yosemite to a flash drive or disk to avoid future contact with the Apple App Store or using the Apple ID? (external HD's have been sabotaged in the past-via remote or erasing program of some sort)
    Q- How to permanently get rid of Messages & Chats
    Q- How to permanently remove Dropbox & Public file sharing?
    Q- How to permanently remove all sharing options?
    Q- Are there other ways to share (codes, commands, etc.) that need be to blocked/fixed/patched? If so, then what are they?
    Q- Are computers stalked by IP address? by Network? by computer numbers or codes? or just by traps or their accounts?
    Q- Is there a handy, "go to" type of checklist of where to look or what to do when there is a a suspicion of implants in the computer?

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • HT1311 im borrowing a friends ipod touch and want to add apps to it. i signed into my apple account but when i go to the app store it still asks for my friends password even though my apple ID account is signed in. any help?

    I'm borrowing a friend's iPod touch until I get another phone and I want to add some apps. I deleted all the apps that weren't needed and then I tried to add some of the apps that I need. I switched the Apple ID account on the iPod and the iCloud account to my own along with all the other apps (Facebook, Google+, Twitter, Instagram, Skype, mail, YouTube, etc.) When i go to the Apple app store and try and update or download a new app it still asks for the old password. How do I get it so when I try and download new stuff it asks for MY password?

    It is showing updates because your machine is tied to the original purchase and will remain so until you wipe the drive.
    As you purchased it used and the seller obviously did not do what he was supposed to do and that is erase the hard drive and reinstall the original system, you will run in to far more difficult problems when you need to reinstall for whatever reason. The new licensing requirements are that any mac is sold with the original OS - any OS or app obtained at the app store is NOT transferable and the buyer needs to purchase their own license. That means you will not be able to reinstall the OS.
    At some point, you will need to try to get either the original install disks (from the seller or Apple) and wipe your drive and reinstall. Then you can download your own licensed copy of Mavericks and any apps you want.

  • HT1904 How can I get a refund for apps in the apple App Store that do not work and are not what they said they wer

    How can I get a refund for apps in the apple App Store that do not work and are not what they said they wer

    You've tried deleting and redownloading them and seeing if they then work and tried contacting the developers ? If you have and they can't/won't help then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Cannot download Kindle app for my iMacbook Pro from the Apple app store.  When I upgraded to 10.10.2 it told me my current app would no longer work.  How do I get Kindle back for my laptop?

    Just upgraded to iOS 10.10.2 on my MacBook Pro (late 2011) and was informed my Kindle app was no longer compatible and would be removed somewhere.  When I tried to install a new Kindle app from the Apple App store it appeared to download, but when I tried to open it nothing happened and it does not appear anywhere in my App list.  I see there have been problems like this in the past but nobody has reported having a problem for several months.  Any cure for this?

    iOS is the operating system for iOS devices like the iPhone and iPad. Your Mac runs on OS X. You have installed OS X 10.10.2 Yosemite.
    I have the most recent version of the Kindle app for Mac from the Mac App Store (MAS) v. 1.10.6 and it works fine. Look again in the MAS for the Kindle app, does it say Get or Open on the button?
    Are you confusing Kindle for Mac with Kindle for iOS. The iOS version won't run on your Mac.

  • Apple apps store do double charged me for only one application purchased and i can't find an email of apple customer service.

    Apple apps store do double charged me for only one application purchased and i can't find an email of apple customer service.
    <Email Edited By Host>

    These are user-to-user forums - I've asked the hosts to remove your email address from your post.
    Tou can contact iTunes support here : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • Apple App Store Worst On-Line Store I Have Ever Used

    For the first time ever I used the Apple App Store to upgrade my Macbook Pro to OS X Lion, I have only had a Mac for 8 months. I have to say I was surprised and extremely disappointed to find out that it is the worst on-line store I have ever used.
    To start with I couldn't find out how to buy Lion, it is the first store I have ever been into that doesn't have a "Buy" or "Add to Cart" button. After twenty minutes of signing on / off, going out / back in, I discovered that if you click on the price it turns into a "Buy" button. Why not put a message on the screen to tell people to do this? I wonder how many customers they have lost who have just given up and gone elsewhere. Surely if the purpose of the site is to sell it should be obvious how you buy.
    Having discovered this I thought it would be simple but no, you click on the "Buy" button and nothing happens, eventually over a minute later the "Buy" button changed to say "Installing". At no time did I get a message up saying something like "Please wait while we process your order". The site says follow the instructions, no instructions, no messages about download time, where the download would be located, etc, were given.
    After this nothing else happened the only way I knew that the download was happening was that the lights on my router were flashing. I did eventually find that a Lion icon had been put in the dock with a progress bar. When I did find this I then found out that my download was going to take over 26 hours. Don't Apple realise that not everybody lives in towns and cities with superfast broadband. There are lots of people who only have access to normal broadband. The advertising states that there is no need to buy and load CD's. It would be preferable to losing the use of both my PC and Laptop for over 24 hours which is what has effectively happened as using them only extends the download time.
    Another sign of poor service is the fact that a receipt was not sent to me until 14 hours after I made the purchase. Most other on-line stores send this out within an hour of the order being placed.
    This experience means that I will definitely not be using Apple App Store again, if I can't get the software from an alternative source I will do without. It makes me wonder whether or not it was a good idea to convert from a PC.
    ElBeardo 

    Have you looked in your Applications Folder for the App Store.
    If it is truly missing and/or deleted... Go here and Download and Install the 10 7 3 Combo Update
    http://support.apple.com/kb/DL1484
    This is Safe to do... be sure to Restart your computer after the Install.

  • Can not update Adobe Reader as it did not come from Apple App Store.

    Can not update Adobe Reader or Adobe Lightroom 5 as they did not come through Apple App Store.  Note says I selected not to accept apps other than from Apple.  Just started backing up new Iphone and Ipad to Macbook Pro.  Is there a setting some where that would allow updates?    

    Yes there is a setting for that. Open system preferences go to the security & privacy sections, click the lock icon and type in your password. Then in the "Allow applications downloaded from: area tick Anywhere.

  • HT2534 I have downloaded free apps from the apple App Store but each time they charge me 8 dollars for a free app. A free app shoud be free to download . How do I get my money back?

    I have downloaded free apps from the apple App Store but each time they charge me 8 dollars for a free app. A free app shoud be free to download . How do I get my money back?

    iOS is the operating system for iOS devices like the iPhone and iPad. Your Mac runs on OS X. You have installed OS X 10.10.2 Yosemite.
    I have the most recent version of the Kindle app for Mac from the Mac App Store (MAS) v. 1.10.6 and it works fine. Look again in the MAS for the Kindle app, does it say Get or Open on the button?
    Are you confusing Kindle for Mac with Kindle for iOS. The iOS version won't run on your Mac.

Maybe you are looking for