├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── resources │ ├── logo_git.png │ ├── logo_git_small.png │ ├── sample.gif │ ├── support-buy-coffee.png │ ├── support-patreon.png │ └── support-paypal.png ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ └── choicelanguage.aar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── br │ │ └── com │ │ └── onimur │ │ └── sample │ │ └── handlepathoz │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── br │ │ │ └── com │ │ │ └── onimur │ │ │ └── sample │ │ │ └── handlepathoz │ │ │ ├── ChoiceActivity.kt │ │ │ ├── java │ │ │ ├── MultipleUriActivity.java │ │ │ └── SingleUriActivity.java │ │ │ └── kotlin │ │ │ ├── MultipleUriActivity.kt │ │ │ ├── ProgressDialog.kt │ │ │ ├── SingleUriActivity.kt │ │ │ ├── adapter │ │ │ └── RealPathAdapter.kt │ │ │ └── model │ │ │ └── PathModel.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── app_background.xml │ │ ├── arrow_expand_24.xml │ │ ├── ic_launcher_background.xml │ │ ├── logo_app.xml │ │ └── round_progressbar.xml │ │ ├── layout │ │ ├── activity_multiple_uri.xml │ │ ├── activity_single_uri.xml │ │ ├── dialog_progressbar.xml │ │ ├── row_real_path.xml │ │ └── text_view_recycler.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── br │ └── com │ └── onimur │ └── sample │ └── handlepathoz │ └── ExampleUnitTest.kt ├── artifacts └── HandlePathOZ.apk ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── SECURITY.md ├── SUPPORT.md └── others │ ├── lib.templ.properties │ └── release.templ.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── handle-path-oz ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro ├── publish.gradle └── src │ ├── androidTest │ └── java │ │ └── br │ │ └── com │ │ └── onimur │ │ └── handlepathoz │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── br │ │ └── com │ │ └── onimur │ │ └── handlepathoz │ │ ├── HandlePathOz.kt │ │ ├── HandlePathOzListener.kt │ │ ├── errors │ │ ├── HandlePathOzException.kt │ │ └── HandlePathOzListenerException.kt │ │ ├── model │ │ └── PathOz.kt │ │ └── utils │ │ ├── Constants.kt │ │ ├── ContentUriUtils.kt │ │ ├── FileUtils.kt │ │ ├── HandlePathOzUtils.kt │ │ ├── PathUtils.kt │ │ ├── SDCardUtils.kt │ │ └── extension │ │ ├── coroutines.kt │ │ ├── log.kt │ │ ├── paths.kt │ │ └── strings.kt │ └── test │ └── java │ └── br │ └── com │ └── onimur │ └── handlepathoz │ ├── ExampleUnitTest.kt │ └── utils │ └── PathUtilsKtTest.kt ├── lib.properties └── settings.gradle /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/resources/logo_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/logo_git.png -------------------------------------------------------------------------------- /.github/resources/logo_git_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/logo_git_small.png -------------------------------------------------------------------------------- /.github/resources/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/sample.gif -------------------------------------------------------------------------------- /.github/resources/support-buy-coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/support-buy-coffee.png -------------------------------------------------------------------------------- /.github/resources/support-patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/support-patreon.png -------------------------------------------------------------------------------- /.github/resources/support-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.github/resources/support-paypal.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/choicelanguage.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/libs/choicelanguage.aar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/br/com/onimur/sample/handlepathoz/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/androidTest/java/br/com/onimur/sample/handlepathoz/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/ChoiceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/ChoiceActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/java/MultipleUriActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/java/MultipleUriActivity.java -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/java/SingleUriActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/java/SingleUriActivity.java -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/MultipleUriActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/MultipleUriActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/ProgressDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/ProgressDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/SingleUriActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/SingleUriActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/adapter/RealPathAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/adapter/RealPathAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/model/PathModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/java/br/com/onimur/sample/handlepathoz/kotlin/model/PathModel.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/app_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable/app_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_expand_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable/arrow_expand_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable/logo_app.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/drawable/round_progressbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_multiple_uri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/layout/activity_multiple_uri.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_single_uri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/layout/activity_single_uri.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_progressbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/layout/dialog_progressbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_real_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/layout/row_real_path.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/text_view_recycler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/layout/text_view_recycler.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/br/com/onimur/sample/handlepathoz/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/app/src/test/java/br/com/onimur/sample/handlepathoz/ExampleUnitTest.kt -------------------------------------------------------------------------------- /artifacts/HandlePathOZ.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/artifacts/HandlePathOZ.apk -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/FUNDING.yml -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /docs/others/lib.templ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/others/lib.templ.properties -------------------------------------------------------------------------------- /docs/others/release.templ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/docs/others/release.templ.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/gradlew.bat -------------------------------------------------------------------------------- /handle-path-oz/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /handle-path-oz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/build.gradle -------------------------------------------------------------------------------- /handle-path-oz/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handle-path-oz/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/proguard-rules.pro -------------------------------------------------------------------------------- /handle-path-oz/publish.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/publish.gradle -------------------------------------------------------------------------------- /handle-path-oz/src/androidTest/java/br/com/onimur/handlepathoz/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/androidTest/java/br/com/onimur/handlepathoz/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/HandlePathOz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/HandlePathOz.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/HandlePathOzListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/HandlePathOzListener.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/errors/HandlePathOzException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/errors/HandlePathOzException.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/errors/HandlePathOzListenerException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/errors/HandlePathOzListenerException.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/model/PathOz.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/model/PathOz.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/Constants.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/ContentUriUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/ContentUriUtils.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/FileUtils.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/HandlePathOzUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/HandlePathOzUtils.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/PathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/PathUtils.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/SDCardUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/SDCardUtils.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/coroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/coroutines.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/log.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/paths.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/paths.kt -------------------------------------------------------------------------------- /handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/strings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/main/java/br/com/onimur/handlepathoz/utils/extension/strings.kt -------------------------------------------------------------------------------- /handle-path-oz/src/test/java/br/com/onimur/handlepathoz/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/test/java/br/com/onimur/handlepathoz/ExampleUnitTest.kt -------------------------------------------------------------------------------- /handle-path-oz/src/test/java/br/com/onimur/handlepathoz/utils/PathUtilsKtTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/handle-path-oz/src/test/java/br/com/onimur/handlepathoz/utils/PathUtilsKtTest.kt -------------------------------------------------------------------------------- /lib.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/lib.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onimur/handle-path-oz/HEAD/settings.gradle --------------------------------------------------------------------------------