This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class PaymentViewModel : ObservableObject{ | |
@Published var isLoadingRetrieveProducts = false | |
@Published var yearlySubscriptionPrice = "" | |
@Published var monthlySubscriptionPrice = "" | |
@Published var lifetimeSubscriptionPrice = "" | |
@Published var isLoadingPayment = false | |
@Published var showAlert = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Note: Run PowerShell as Administrator! | |
Delete all builtin apps except photo viewer and calculator (xbox will throw error as game bar is not removed but everything else is!); | |
Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage | |
Get-AppxPackage -allusers *alarms* | Remove-AppxPackage | |
Get-AppxPackage -allusers *appconnector* | Remove-AppxPackage | |
Get-AppxPackage -allusers *appinstaller* | Remove-AppxPackage | |
Get-AppxPackage -allusers *communicationsapps* | Remove-AppxPackage | |
Get-AppxPackage -allusers *camera* | Remove-AppxPackage |