Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alert from os: app may slow down your iPhone

Tags:

Hy,

I have uploaded the app to App Store with both architecture. Please see the attached image for Build Settings of TARGETS in Architectures. And luckily it get Ready for sale, but iPhone 5s giving alert.

enter image description here

The alert is: "APP" may slow down your iPhone. The developer of this app needs to update it to improve its compatibility.

I googled but do not found solution to get rid off this alert. On other hand i also need to support iPhone5 and prior (32 bit architectures). Please help.

like image 283
Ketan Shinde Avatar asked Nov 01 '16 11:11

Ketan Shinde


People also ask

How can I tell which app is slowing down my iPhone?

Open the Settings app and go to About>Applications. On iOS 10.2 and older, you can only view the space taken up by applications. On iOS 10.3 and above, you can tap the 'Applications' to go to the App Compatibility screen. Here you can see a complete list of apps that will slow your iPhone down.

Can too many apps slow your iPhone down?

Too Many Running Apps Depending on your settings, some apps may contact the Internet while in the background or accept notifications. The more apps you have open, the more burdened your iPhone and the greater the chance that it will perform sluggishly.

How do I stop my apps from moving on my iPhone?

How to Stop iPhone Icons From Shaking. Getting icons to stop moving is easy. Just press the Home button on the front of your phone and everything will stop moving. If you deleted or moved apps, or created folders, pressing the Home button will save the changes you've made.

What is iPhone movement tolerance?

Movement Tolerance This is how far you can move the pointer before a Dwell action is cancelled. Select Movement Tolerance. On the next screen adjust the slider to change the distance.


2 Answers

The problem is that Build Active Architecture Only, as shown in your screen shot, is set to Yes. This means that you are not building an app that contains both 32-bit and 64-bit architectures; you are only building for one architecture. And from what you say, that architecture must have been the 32-bit architecture.

like image 88
matt Avatar answered Oct 23 '22 03:10

matt


Problem :- This issue is because you are supporting 32bit architecture

Solution :- armv7 is 32 bit processor, u might have to remove that from architectures list

Here is the list of processors and their architectures

iPhone 5S has 64bit processor, so removing armv7 will not have any impact for iPhone 5S you can find the list of devices and their configuration in this link

like image 40
K.Prabhakar Avatar answered Oct 23 '22 04:10

K.Prabhakar