Android write to internal storage
Below is the snippet to write file into the internal storage
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
String dirpath = this.getFilesDir().getAbsolutePath();
Log.wtf("SKDINFO","APPLICATION CLASS INITALISE");
}
}