• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Recent content by artik

  1. A

    Saving generic files in latest Android SDK to shared storage

    I actually solved my problem by saving to Android/media via getExternalMediaDirs() - at least I can access it from file manager and write files from standard API.
  2. A

    Saving generic files in latest Android SDK to shared storage

    > write your file using a ContentResolver I mean using `std::fstream` of `FILE *fopen` since the code that access/saves files is NDK and cross platform
  3. A

    Saving generic files in latest Android SDK to shared storage

    I develop an open source app (OpenLiveStacker) the communicates with external USB camera - astronomy device. It mostly written in C++ (as it does not run on Android only) with small Java/Android wrapper the manages it. One of the things I need to do is to save collected images (tiff files) and...