├── .classpath ├── .gitignore ├── .idea └── vcs.xml ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── assets └── xposed_init ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res ├── mipmap-hdpi │ └── ic_launcher.png ├── mipmap-mdpi │ └── ic_launcher.png ├── mipmap-xhdpi │ └── ic_launcher.png ├── mipmap-xxhdpi │ └── ic_launcher.png ├── mipmap-xxxhdpi │ └── ic_launcher.png ├── values-cs │ └── strings.xml ├── values-de │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fa │ └── strings.xml ├── values-hi │ └── strings.xml ├── values-hu │ └── strings.xml ├── values-in │ └── strings.xml ├── values-it │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-nl │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-ru │ └── strings.xml ├── values-sk │ └── strings.xml ├── values-zh-rCN │ └── strings.xml ├── values-zh-rTW │ └── strings.xml ├── values │ ├── strings.xml │ └── styles.xml └── xml │ └── preferences.xml └── src └── com └── pyler └── xinternalsd ├── Common.java ├── Preferences.java └── XInternalSD.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XInternalSD 2 | [Xposed module] Android Storage/SD card API tweaks 3 | -------------------------------------------------------------------------------- /assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/assets/xposed_init -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/project.properties -------------------------------------------------------------------------------- /res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-cs/strings.xml -------------------------------------------------------------------------------- /res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-de/strings.xml -------------------------------------------------------------------------------- /res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-es/strings.xml -------------------------------------------------------------------------------- /res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-fa/strings.xml -------------------------------------------------------------------------------- /res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-hi/strings.xml -------------------------------------------------------------------------------- /res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-hu/strings.xml -------------------------------------------------------------------------------- /res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-in/strings.xml -------------------------------------------------------------------------------- /res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-it/strings.xml -------------------------------------------------------------------------------- /res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-ja/strings.xml -------------------------------------------------------------------------------- /res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-ko/strings.xml -------------------------------------------------------------------------------- /res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-nl/strings.xml -------------------------------------------------------------------------------- /res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-pt/strings.xml -------------------------------------------------------------------------------- /res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-ru/strings.xml -------------------------------------------------------------------------------- /res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-sk/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/res/xml/preferences.xml -------------------------------------------------------------------------------- /src/com/pyler/xinternalsd/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/src/com/pyler/xinternalsd/Common.java -------------------------------------------------------------------------------- /src/com/pyler/xinternalsd/Preferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/src/com/pyler/xinternalsd/Preferences.java -------------------------------------------------------------------------------- /src/com/pyler/xinternalsd/XInternalSD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pylerSM/XInternalSD/HEAD/src/com/pyler/xinternalsd/XInternalSD.java --------------------------------------------------------------------------------