Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
/ AssetFile Public archive

With it, you can operate android-asset resources just like using java.io.File.

License

Notifications You must be signed in to change notification settings

Tianscar/AssetFile

Repository files navigation

AssetFile

With it, you can operate Android-asset resources just like using java.io.File.
Not only the main AssetFile class, but also the accompanying I/O Stream class and Reader/Writer class.
Context and AssetManager are automatically obtained and do not require manual transfer of parameters.

Inspired by https://github.com/xiandanin/AssetFile

JavaDoc: https://tianscar.github.io/AssetFile/

To get a Git project into your build (gradle):

  • Step 1. Add the JitPack repository to your build file
    Add it in your root build.gradle at the end of repositories:
allprojects {
        repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}
  • Step 2. Add the dependency:
dependencies {
	...
	implementation 'com.github.Tianscar:AssetFile:1.0.4.1'
}

License

MIT © Tianscar