├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode └── settings.json ├── MegaProvider ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ └── kotlin │ └── com │ └── mega │ └── MegaPlugin.kt ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /MegaProvider/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/MegaProvider/build.gradle.kts -------------------------------------------------------------------------------- /MegaProvider/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MegaProvider/src/main/kotlin/com/mega/MegaPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/MegaProvider/src/main/kotlin/com/mega/MegaPlugin.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/self-similarity/MegaRepo/HEAD/settings.gradle.kts --------------------------------------------------------------------------------