In my iOS project i kept a binary file and used NSBundle class to access that file.
How do i do that same thing in Android since recently i have started working on Android platform, i wanted to know how do i package and read a binary file in Android app.
I started doing it via native call, created a java wrapper and called a function in cpp file and in that function i am trying to read the binary file.
File *f = fopen("absolute file path on my laptop", "r")
Here f is always null whereas in iOS using NSBunle i am able to access the file in my iOS app