user2210837
user2210837

Reputation: 105

Android Application does not support this device

I'm trying to develop an easy app with Delphi Xe7 with just a "Hello World". The program is compiled right and executed right, but the avd emulator says "Application does not support this device". The app appears in the avd.

I have tried with different android versions from 2.3 to 4.4 and in all of them the same problem appears .

Upvotes: 0

Views: 5790

Answers (2)

androschuk.a
androschuk.a

Reputation: 289

If your device satisfies all the conditions but message show again. You can try:

1. In the Delphi IDE, open the Deployment Manager (Project -> Deployment), and locate the following entry:
  Local Name: libnative-activity.so 
  Remote Path: library\lib\armeabi\ 
2. Uncheck the entry to prevent deployment of this file.

Source: Application does not support this device

Upvotes: 0

Remy Lebeau
Remy Lebeau

Reputation: 598011

Your AVD does not satisfy the hardware requirements for Delphi Android apps. Read Embarcadero's documentation, and also the Delphi Wikia page (which lists more devices than Embarcadero does).

Upvotes: 1

Related Questions