diff --git a/android/app/build.gradle b/android/app/build.gradle
index 3784886..46bed1e 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -55,8 +55,8 @@ android {
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion 23
targetSdkVersion 33
- versionCode 46
- versionName '1.5.46'
+ versionCode 47
+ versionName '1.5.47'
// manifestPlaceholders = [mapsApiKey: 'android/app/src/main/AndroidManifest.xml']
}
diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist
index 11ed38d..7e11691 100644
--- a/ios/Runner/Info.plist
+++ b/ios/Runner/Info.plist
@@ -21,7 +21,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 44
+ 45
CFBundleSignature
????
CFBundleURLTypes
@@ -36,7 +36,7 @@
CFBundleVersion
- 4.0.44
+ 4.0.45
FirebaseAppDelegateProxyEnabled
NO
GMSApiKey
diff --git a/lib/controller/home/payment/paymob_payout.dart b/lib/controller/home/payment/paymob_payout.dart
index 7a881b7..5997fa1 100644
--- a/lib/controller/home/payment/paymob_payout.dart
+++ b/lib/controller/home/payment/paymob_payout.dart
@@ -54,7 +54,7 @@ class PaymobPayout extends GetxController {
"msisdn": msisdn, // "01023456789"
});
var res = await http.post(
- Uri.parse('https://paymobsolutions.com/api/secure/disburse/'),
+ Uri.parse('https://payouts.paymobsolutions.com/api/secure/disburse/'),
headers: headers,
body: body,
);
@@ -129,7 +129,7 @@ class PaymobPayout extends GetxController {
};
var res = await http
.post(
- Uri.parse('https://paymobsolutions.com/api/secure/disburse/'),
+ Uri.parse('https://payouts.paymobsolutions.com/api/secure/disburse/'),
headers: headers,
body: body,
)
diff --git a/lib/views/home/my_wallet/card_wallet_widget.dart b/lib/views/home/my_wallet/card_wallet_widget.dart
index 1ca5458..e98dc97 100644
--- a/lib/views/home/my_wallet/card_wallet_widget.dart
+++ b/lib/views/home/my_wallet/card_wallet_widget.dart
@@ -38,7 +38,7 @@ class CardSeferWalletDriver extends StatelessWidget {
// box.write(BoxName.cvvCode, 1111);
if (double.parse(
Get.find().totalAmountVisa) >
- 100) {
+ 20) {
Get.defaultDialog(
barrierDismissible: false,
title: 'Do you want to collect your earnings?'.tr,
@@ -96,7 +96,7 @@ class CardSeferWalletDriver extends StatelessWidget {
.validate()) {
if (double.parse(Get.find()
.totalAmountVisa) >
- 100) {
+ 20) {
Get.back();
String amountAfter5LE = (double.parse(
Get.find()
@@ -132,7 +132,7 @@ class CardSeferWalletDriver extends StatelessWidget {
} else {
{
Get.snackbar(
- '${'The Amount is less than'.tr}${box.read(BoxName.countryCode) == 'Egypt' ? '100' : '20'}',
+ '${'The Amount is less than'.tr}${box.read(BoxName.countryCode) == 'Egypt' ? '20' : '20'}',
'',
backgroundColor: AppColor.yellowColor);
}