├── app ├── .gitignore ├── src │ ├── main │ │ ├── ic_launcher-playstore.png │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ └── ic_launcher_foreground.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ └── ic_launcher_foreground.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ └── ic_launcher_foreground.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ └── ic_launcher_foreground.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ ├── ic_launcher_round.webp │ │ │ │ └── ic_launcher_foreground.webp │ │ │ ├── values │ │ │ │ ├── themes.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── dimens.xml │ │ │ ├── xml │ │ │ │ ├── file_paths.xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── drawable │ │ │ │ ├── ic_launcher_monochrome.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── iperf3client │ │ │ │ ├── ui │ │ │ │ └── ui │ │ │ │ │ ├── theme │ │ │ │ │ ├── Color.kt │ │ │ │ │ ├── Type.kt │ │ │ │ │ └── Theme.kt │ │ │ │ │ ├── navigator │ │ │ │ │ └── NavigationItems.kt │ │ │ │ │ ├── ResultsListScreen.kt │ │ │ │ │ ├── IperfRawOutputScreen.kt │ │ │ │ │ ├── ChartScreen.kt │ │ │ │ │ ├── RunningTestScreen.kt │ │ │ │ │ ├── AboutScreen.kt │ │ │ │ │ ├── ResultsTableScreen.kt │ │ │ │ │ ├── MapScreen.kt │ │ │ │ │ ├── WelcomeScreen.kt │ │ │ │ │ ├── SavedTestsScreen.kt │ │ │ │ │ ├── TestFilterForm.kt │ │ │ │ │ ├── MeasurementsScreen.kt │ │ │ │ │ └── NewTestScreen.kt │ │ │ │ ├── data │ │ │ │ ├── TestWithResults.kt │ │ │ │ ├── TestUiState.kt │ │ │ │ ├── TestDao.kt │ │ │ │ ├── LocationRepository.kt │ │ │ │ ├── ExecutedTestResults.kt │ │ │ │ ├── TestDatabase.kt │ │ │ │ ├── TestsWithResultsDAO.kt │ │ │ │ ├── TestRepository.kt │ │ │ │ ├── ResultsRepository.kt │ │ │ │ └── NetworkInfoRepository.kt │ │ │ │ ├── utils │ │ │ │ ├── Utils.kt │ │ │ │ ├── LocationTracker.kt │ │ │ │ ├── IpersOutputParser.kt │ │ │ │ └── DbUtils.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── IperfStartScreen.kt │ │ │ │ └── viewmodels │ │ │ │ └── TestViewModel.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── iperf3client │ │ │ ├── ExampleUnitTest.kt │ │ │ └── TestViewModelTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── iperf3client │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro ├── build.gradle.kts └── schemas │ └── com.example.iperf3client.data.TestDatabase │ ├── 1.json │ └── 2.json ├── fastlane └── metadata │ └── android │ └── en-US │ ├── title.txt │ ├── short_description.txt │ ├── images │ ├── fav.png │ ├── icon.png │ ├── logo.webp │ ├── running.png │ ├── new_test.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ └── full_description.txt ├── assets └── images │ ├── get-it-on.png │ ├── IzzyOnDroid.png │ └── getItGithub.png ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── settings.gradle.kts ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── gradle.properties ├── LICENSE.txt ├── gradlew.bat ├── README.md └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | IPerf3Client 2 | -------------------------------------------------------------------------------- /assets/images/get-it-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/assets/images/get-it-on.png -------------------------------------------------------------------------------- /assets/images/IzzyOnDroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/assets/images/IzzyOnDroid.png -------------------------------------------------------------------------------- /assets/images/getItGithub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/assets/images/getItGithub.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | iPerf3 is a tool for active measurements of the max bandwidth on IP networks. 2 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/fav.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/logo.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/running.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/new_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/new_test.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CachoCh/iperf3AndroidClient/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |