Top "Native-activity" questions

NativeActivity is a convenience class provided by the Android SDK that notifies native code of any activity lifecycle callbacks and makes it possible to write Android application without any Java code at all.

Access Android APK Asset data directly in c++ without Asset Manager and copying

I'm using pure C++ in my engine to create a game engine in android. There is no single java file. …

android c++ native apk native-activity
Android: calling Java class from C++ Native Activity

Java code: package local.ttt; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.…

java c android-ndk native-activity
Is it possible to create UI elements with the NDK ? - lack of specs in Android docs

After reading the related docs I don't get if I can create things like buttons or other UI elements used …

android user-interface android-ndk native native-activity
Can't load native shared library with dependencies in a native activity app

In my Android app I have 4 libraries: libTemplate.so depends on libPorkholt.so libPorkholt.so depends on libpng15.so depends …

android linker android-ndk native-activity
fopen/fread APK Assets from NativeActivity on Android

I have only been able to find solutions dated 2010 and earlier. So I wanted to see if there was a …

android c++ android-ndk native-activity
Obtaining the name of an Android APK using C++ and the NativeActivity class

I'm writing an Android app using the NDK and NativeActivity. My app depends on a few bits of third party …

android android-ndk native-activity
Build and use static library in Android NDK

I'm trying to build a library for my NativeActivity app and use it, but it is giving me an error: …

android-ndk native-activity
java.lang.IllegalArgumentException: Unable to load native library

I'm using purely native NDK in my project (Native Activity). It works fine when I add Prebuilt static libraries with …

android android-ndk native-activity android.mk