├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── assets └── hello.dex ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ └── activity_main.xml └── values │ └── strings.xml └── src └── nfh └── speeder └── sample └── android └── customloaddexfile ├── CustomizedDexClassLoader.java ├── DexPreparationTask.java └── MainActivity.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/README.md -------------------------------------------------------------------------------- /assets/hello.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/assets/hello.dex -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/nfh/speeder/sample/android/customloaddexfile/CustomizedDexClassLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/src/nfh/speeder/sample/android/customloaddexfile/CustomizedDexClassLoader.java -------------------------------------------------------------------------------- /src/nfh/speeder/sample/android/customloaddexfile/DexPreparationTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/src/nfh/speeder/sample/android/customloaddexfile/DexPreparationTask.java -------------------------------------------------------------------------------- /src/nfh/speeder/sample/android/customloaddexfile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liratanak/custom-load-dex-file/HEAD/src/nfh/speeder/sample/android/customloaddexfile/MainActivity.java --------------------------------------------------------------------------------