|
|
|
|
|
by grishka
979 days ago
|
|
You can technically create an Android app without any Java code. There are native APIs for graphics and input. However, as these are intended for games, you get a window into which you can draw... something. With OpenGL, for example. You don't get access to Android's regular UI framework. You will also have to go through the Java layer to do many things you might want to do — like requesting permissions or launching other apps' activities. Here's all the APIs you get: https://developer.android.com/ndk/reference?hl=en |
|