Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 750239
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:31:41+00:00 2026-05-14T14:31:41+00:00

I’m developing an Android game that has to download some assets to the SD

  • 0

I’m developing an Android game that has to download some assets to the SD card to keep the size of the app as small as possible. I was thinking of using an uncompressed zip file to bundle all the assets.

A requirement from the client is to protect these assets as much as possible. Being part of the apk is considered enough protection, but if I do this the apk size will be enormous. If I just put a zip bundle in the SD card, then anyone can unzip it and explore its contents.

Is there a simple way to do this without retorting to horrid DRM?

Obviously if someone really wants to check the resources of an Android game, they can. I’m just looking for a simple solution to avoid making this very easy.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T14:31:42+00:00Added an answer on May 14, 2026 at 2:31 pm

    You could encrypt the ZIP file with AES but there would an overhead in extracting the assets which might be a problem since performance is usually fairly important when writing a game.

    However, as you’ve said yourself using a secure encryption isn’t really worthwhile since if someone’s really interested they can find the keys in the source code of your application. So you could write an InputStream and OutputStream yourself to perform some trivial translation on the bytes of the ZIP file. This would be quick to undo when reading the file but would “corrupt” the ZIP file enough to deter someone just browsing through their SD card.

    When using it you’d put your stream in between the File and ZIPInputStream, e.g.:

    File assets = new File(Environment.getExternalStorageDirectory(),"assets");
    ZipInputStream zip = new ZipInputStream(new TranslateInputStream(assets));
    

    As an example translation, you could just XOR all the bytes with a known value:

    private static final byte MAGIC_NUMBER = 13;
    
    private void translateBuffer(byte[] buffer) {
        for (int i = 0;i < buffer.length;i++) {
            buffer[i] ^= MAGIC_NUMBER;
        }
    }
    
    private class TranslateOutputStream extends FileOutputStream {
        public TranslateOutputStream(File file) throws FileNotFoundException {
            super(file);
        }
    
        @Override
        public void write(int oneByte) throws IOException {
            oneByte ^= MAGIC_NUMBER;
            super.write(oneByte);
        }
    
        //In Android write(byte[]) calls this method so we don't need to override both        
        @Override
        public void write(byte[] buffer, int offset, int count)
                throws IOException {
            translateBuffer(buffer);
            super.write(buffer, offset, count);
        }
    }
    
    private class TranslateInputStream extends FileInputStream {
    
        public TranslateInputStream(File file) throws FileNotFoundException {
            super(file);
        }
    
        @Override
        public int read() throws IOException {
            return super.read() ^ MAGIC_NUMBER;
        }
    
        //In Android read(byte[]) calls this method so we don't need to override both        
        @Override
        public int read(byte[] buffer, int offset, int count)
                throws IOException {
            int bytesRead = super.read(buffer, offset, count);
            translateBuffer(buffer);
            return bytesRead;
        }
    }
    

    Alternatively, you could not use ZIP as you don’t care about compression. Just concatenate all the assets together in one large blob. As you create the blob write the start and end location of each asset out to an index file. The index file would then be included in your .apk file allowing to get the data you needed from the big file in your application. As the big blob wouldn’t be in a standard format people wouldn’t be able to easily extract files from it. To be extra sure you could always pad the beginning of the file with some other data – perhaps just some plain text – to make the blob look like something else.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.