├── .github └── workflows │ ├── create-release.yml │ └── generate-release-apk.yml ├── .gitignore ├── .idea ├── AndroidProjectSystem.xml ├── codeStyles │ └── Project.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── deploymentTargetSelector.xml ├── gradle.xml ├── jarRepositories.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── net │ │ └── nitratine │ │ └── priceperunit │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── net │ │ │ └── nitratine │ │ │ └── priceperunit │ │ │ ├── ItemStorage.java │ │ │ ├── ItemStructure.java │ │ │ ├── MainActivity.java │ │ │ ├── Settings.java │ │ │ ├── SettingsActivity.java │ │ │ └── Units.java │ └── res │ │ ├── drawable │ │ ├── add_circle.xml │ │ ├── arrow_upward.xml │ │ ├── bug_white.png │ │ ├── currency.xml │ │ ├── data.xml │ │ ├── delete.xml │ │ ├── developer_white.png │ │ ├── license_white.png │ │ ├── results.xml │ │ ├── rounding.xml │ │ ├── settings.xml │ │ ├── star_white.png │ │ └── version_white.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_settings.xml │ │ ├── dialog_licenses.xml │ │ ├── item_tile.xml │ │ ├── results_item.xml │ │ ├── results_spinner_item.xml │ │ └── spinner_item.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-b+pt+BR │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── net │ └── nitratine │ └── priceperunit │ └── ExampleUnitTest.java ├── fastlane └── metadata │ └── android │ ├── de │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ └── 19.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpg │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── short_description.txt │ └── title.txt │ └── es │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── published_graphics ├── FeatureGraphic.png ├── Gallery1.png ├── Gallery2.png ├── Gallery3.png ├── Gallery4.png └── icon.png └── settings.gradle /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/generate-release-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.github/workflows/generate-release-apk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/net/nitratine/priceperunit/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/androidTest/java/net/nitratine/priceperunit/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/ItemStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/ItemStorage.java -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/ItemStructure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/ItemStructure.java -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/Settings.java -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/net/nitratine/priceperunit/Units.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/java/net/nitratine/priceperunit/Units.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/add_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/add_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_upward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/arrow_upward.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bug_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/bug_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/currency.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/data.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/developer_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/developer_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/license_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/license_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/results.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounding.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/rounding.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/star_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/star_white.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/version_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/drawable/version_white.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_licenses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/dialog_licenses.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_tile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/item_tile.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/results_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/results_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/results_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/results_spinner_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/layout/spinner_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-b+pt+BR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values-b+pt+BR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/net/nitratine/priceperunit/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/app/src/test/java/net/nitratine/priceperunit/ExampleUnitTest.java -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/de/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/changelogs/11.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/12.txt: -------------------------------------------------------------------------------- 1 | * Fixed license dialog 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/changelogs/13.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/changelogs/14.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/16.txt: -------------------------------------------------------------------------------- 1 | * Added Brazilian Portuguese translations within App 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/17.txt: -------------------------------------------------------------------------------- 1 | * Added Spanish translations -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/18.txt: -------------------------------------------------------------------------------- 1 | * Default quantity is now 1 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/19.txt: -------------------------------------------------------------------------------- 1 | * Added support up to Android 14 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.jpg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Price Per Unit -------------------------------------------------------------------------------- /fastlane/metadata/android/es/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/es/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/fastlane/metadata/android/es/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /published_graphics/FeatureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/FeatureGraphic.png -------------------------------------------------------------------------------- /published_graphics/Gallery1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/Gallery1.png -------------------------------------------------------------------------------- /published_graphics/Gallery2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/Gallery2.png -------------------------------------------------------------------------------- /published_graphics/Gallery3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/Gallery3.png -------------------------------------------------------------------------------- /published_graphics/Gallery4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/Gallery4.png -------------------------------------------------------------------------------- /published_graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brentvollebregt/price-per-unit/HEAD/published_graphics/icon.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------