├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradlew ├── gradlew.bat ├── manifest.gradle ├── nextgenfs ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── io │ │ └── rayshift │ │ └── translatefgo │ │ ├── INGFSService.aidl │ │ └── NGFSError.aidl │ └── java │ └── io │ └── rayshift │ └── translatefgo │ ├── NGFSBinder.java │ ├── NGFSError.java │ └── NGFSService.java └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nextgenfs 2 | Shizuku compatible android/data access from Xamarin - AIDL library 3 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/gradlew.bat -------------------------------------------------------------------------------- /manifest.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/manifest.gradle -------------------------------------------------------------------------------- /nextgenfs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/.gitignore -------------------------------------------------------------------------------- /nextgenfs/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/build.gradle -------------------------------------------------------------------------------- /nextgenfs/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nextgenfs/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/proguard-rules.pro -------------------------------------------------------------------------------- /nextgenfs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /nextgenfs/src/main/aidl/io/rayshift/translatefgo/INGFSService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/aidl/io/rayshift/translatefgo/INGFSService.aidl -------------------------------------------------------------------------------- /nextgenfs/src/main/aidl/io/rayshift/translatefgo/NGFSError.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/aidl/io/rayshift/translatefgo/NGFSError.aidl -------------------------------------------------------------------------------- /nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSBinder.java -------------------------------------------------------------------------------- /nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSError.java -------------------------------------------------------------------------------- /nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/nextgenfs/src/main/java/io/rayshift/translatefgo/NGFSService.java -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayshift/nextgenfs/HEAD/settings.gradle --------------------------------------------------------------------------------