nawara
nawara

Reputation: 1167

Reduce the big size of my Android application resource

I am currently developing an android application that useLibsvm library for data

classification.

To use the Libsvm I should provide file text describing data

the size of my data=1,3G

I have placed all my files in assets Folder => copied them in sdCard and then running the

classification

The problem Now is that my application take a lot of time to be installed on my device!

It is possible to compress those files and the decompress them while running my

classification?

And How to do this in Android

Upvotes: 0

Views: 479

Answers (2)

Anonymous
Anonymous

Reputation: 1389

move your resources to desktop and delete them from your app, this would be helpful for testing your app.

Upvotes: 0

Calabacin
Calabacin

Reputation: 735

You could zip the file on the installation and make your service unzips it the first time it's used.

You may zip/unzip using the java.util.zip standard package.

Upvotes: 0

Related Questions