├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── minimalisticapps │ │ │ └── priceconverter │ │ │ ├── common │ │ │ ├── AppController.kt │ │ │ ├── Event.kt │ │ │ ├── Resource.kt │ │ │ ├── dialog │ │ │ │ └── CommonDialogs.kt │ │ │ └── utils │ │ │ │ ├── AppConstants.kt │ │ │ │ ├── AppExtensions.kt │ │ │ │ ├── PCSharedConfig.kt │ │ │ │ ├── PCSharedStorage.kt │ │ │ │ ├── SharedPrefConfig.kt │ │ │ │ ├── SharedPrefHelper.kt │ │ │ │ └── currencies.kt │ │ │ ├── data │ │ │ ├── remote │ │ │ │ ├── bitpay │ │ │ │ │ ├── BitpayApiInterface.kt │ │ │ │ │ ├── BitpayApiRate.kt │ │ │ │ │ └── BitpayRatesResponse.kt │ │ │ │ ├── blockchaininfo │ │ │ │ │ ├── BlockchainInfoApiInterface.kt │ │ │ │ │ └── BlockchainInfoApiRate.kt │ │ │ │ ├── coingecko │ │ │ │ │ ├── CoingeckoApiInterface.kt │ │ │ │ │ ├── CoingeckoApiRate.kt │ │ │ │ │ └── CoingeckoRatesResponse.kt │ │ │ │ └── donationserver │ │ │ │ │ ├── DonationServerApiInterface.kt │ │ │ │ │ ├── DonationServerGetClaimResponse.kt │ │ │ │ │ └── DonationServerMakeClaimResponse.kt │ │ │ └── repository │ │ │ │ ├── DonationRepository.kt │ │ │ │ └── priceconverter │ │ │ │ ├── DeleteUseCase.kt │ │ │ │ ├── GetCoinsUseCase.kt │ │ │ │ ├── GetFiatCoinsUseCase.kt │ │ │ │ ├── PriceConverterRepository.kt │ │ │ │ └── SaveScreenCurrencyRecordUseCase.kt │ │ │ ├── di │ │ │ └── AppModule.kt │ │ │ ├── interfaces │ │ │ └── Bus.kt │ │ │ ├── presentation │ │ │ ├── MainActivity.kt │ │ │ ├── Screen.kt │ │ │ ├── addshitcoins │ │ │ │ ├── AvailableShitcoinsToAddScreen.kt │ │ │ │ └── AvailableShitcoinsToAddScreenModel.kt │ │ │ ├── donate │ │ │ │ ├── DonationScreen.kt │ │ │ │ └── DonationViewModel.kt │ │ │ ├── home │ │ │ │ ├── HomeScreen.kt │ │ │ │ ├── HomeViewModel.kt │ │ │ │ └── updateTextFieldModelWithFormatting.kt │ │ │ ├── states │ │ │ │ └── CoinsState.kt │ │ │ ├── style.kt │ │ │ └── ui │ │ │ │ ├── item │ │ │ │ ├── ItemCurrency.kt │ │ │ │ └── ItemFiatCoin.kt │ │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ │ └── widget │ │ │ │ ├── LayoutToolbar.kt │ │ │ │ ├── ProgressIndicator.kt │ │ │ │ ├── ShowError.kt │ │ │ │ ├── TextInputBtc.kt │ │ │ │ ├── TextInputCurrency.kt │ │ │ │ ├── TextInputShitCoin.kt │ │ │ │ ├── formatUnitOfShitcoinPrice.kt │ │ │ │ └── onFocusSelectAll.kt │ │ │ └── room │ │ │ ├── RoomConverter.kt │ │ │ ├── dao │ │ │ └── PriceConverterDao.kt │ │ │ ├── database │ │ │ └── AppDatabase.kt │ │ │ └── entities │ │ │ ├── Shitcoin.kt │ │ │ ├── ShitcoinOnScreen.kt │ │ │ └── ShitcoinOnScreenWithRate.kt │ └── res │ │ ├── drawable │ │ ├── ic_delete.xml │ │ ├── ic_donate.xml │ │ ├── ic_hearth.xml │ │ ├── ic_icon.xml │ │ └── ic_refresh.xml │ │ └── values │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── minimalisticapps │ └── priceconverter │ └── presentation │ └── home │ └── viewmodels │ └── UpdateTextFieldModelWithFormattingTest.kt ├── doc └── 1_scaled_down.png ├── fastlane └── metadata │ └── android │ └── en-US │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/AppController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/AppController.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/Event.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/Resource.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/dialog/CommonDialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/dialog/CommonDialogs.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/AppConstants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/AppExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/AppExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/PCSharedConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/PCSharedConfig.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/PCSharedStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/PCSharedStorage.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/SharedPrefConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/SharedPrefConfig.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/SharedPrefHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/SharedPrefHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/common/utils/currencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/common/utils/currencies.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayApiInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayApiInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayApiRate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayApiRate.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayRatesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/bitpay/BitpayRatesResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/blockchaininfo/BlockchainInfoApiInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/blockchaininfo/BlockchainInfoApiInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/blockchaininfo/BlockchainInfoApiRate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/blockchaininfo/BlockchainInfoApiRate.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoApiInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoApiInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoApiRate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoApiRate.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoRatesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/coingecko/CoingeckoRatesResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerApiInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerApiInterface.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerGetClaimResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerGetClaimResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerMakeClaimResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/remote/donationserver/DonationServerMakeClaimResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/DonationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/DonationRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/DeleteUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/DeleteUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/GetCoinsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/GetCoinsUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/GetFiatCoinsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/GetFiatCoinsUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/PriceConverterRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/PriceConverterRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/SaveScreenCurrencyRecordUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/data/repository/priceconverter/SaveScreenCurrencyRecordUseCase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/di/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/di/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/interfaces/Bus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/interfaces/Bus.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/Screen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/addshitcoins/AvailableShitcoinsToAddScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/addshitcoins/AvailableShitcoinsToAddScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/addshitcoins/AvailableShitcoinsToAddScreenModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/addshitcoins/AvailableShitcoinsToAddScreenModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/donate/DonationScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/donate/DonationScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/donate/DonationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/donate/DonationViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/HomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/HomeViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/updateTextFieldModelWithFormatting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/home/updateTextFieldModelWithFormatting.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/states/CoinsState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/states/CoinsState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/style.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/style.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/item/ItemCurrency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/item/ItemCurrency.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/item/ItemFiatCoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/item/ItemFiatCoin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/LayoutToolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/LayoutToolbar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/ProgressIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/ProgressIndicator.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/ShowError.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/ShowError.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputBtc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputBtc.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputCurrency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputCurrency.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputShitCoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/TextInputShitCoin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/formatUnitOfShitcoinPrice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/formatUnitOfShitcoinPrice.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/onFocusSelectAll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/presentation/ui/widget/onFocusSelectAll.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/RoomConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/RoomConverter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/dao/PriceConverterDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/dao/PriceConverterDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/database/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/database/AppDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/entities/Shitcoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/entities/Shitcoin.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/entities/ShitcoinOnScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/entities/ShitcoinOnScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/minimalisticapps/priceconverter/room/entities/ShitcoinOnScreenWithRate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/java/com/minimalisticapps/priceconverter/room/entities/ShitcoinOnScreenWithRate.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/drawable/ic_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_donate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/drawable/ic_donate.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_hearth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/drawable/ic_hearth.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/drawable/ic_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/minimalisticapps/priceconverter/presentation/home/viewmodels/UpdateTextFieldModelWithFormattingTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/app/src/test/java/com/minimalisticapps/priceconverter/presentation/home/viewmodels/UpdateTextFieldModelWithFormattingTest.kt -------------------------------------------------------------------------------- /doc/1_scaled_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/doc/1_scaled_down.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Minimalistic Price Converter -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minimalistic-Apps/price-converter/HEAD/settings.gradle --------------------------------------------------------------------------------