-1

I have a got a c++ program having graphics.h can i use this program to make an android app in android studio. As i know c++ programs can run using android NDK,but it shows graphics.h not found.

Ryan M
  • 18,333
  • 31
  • 67
  • 74

1 Answers1

3

In android you can only draw on screen using Java SDK APIs or C++ OpenGL ES/Vulkan APIs that are bundled in NDK.

So you won't be able to use graphics.h

amin
  • 3,672
  • 5
  • 33
  • 61