Vaibhav Bhavsar
Vaibhav Bhavsar

Reputation: 25

How to save Excel file in Android app

I want to save an Excel file in my Android APK, so it can be used after the apk is installed on an Android mobile device.
I want to do it from Android Studio.
Should I put it in the "assets" folder or is this used for different kinds of files to save?
I want to use it for updating my default database.

Upvotes: 1

Views: 1265

Answers (3)

greenapps
greenapps

Reputation: 11224

You should indead put that exel file in assets folder.

The place to go with.

Upvotes: 1

Merhawi Fissehaye
Merhawi Fissehaye

Reputation: 2817

Things like that are saved inside R.raw

Read more here

Upvotes: 0

Mohammed Bakr Sikal
Mohammed Bakr Sikal

Reputation: 357

Ideally, it should go into your res/raw directory.

Upvotes: 2

Related Questions