7/4/1
This commit is contained in:
@@ -55,8 +55,8 @@ android {
|
|||||||
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
|
||||||
minSdkVersion 23
|
minSdkVersion 23
|
||||||
targetSdkVersion 33
|
targetSdkVersion 33
|
||||||
versionCode 46
|
versionCode 47
|
||||||
versionName '1.5.46'
|
versionName '1.5.47'
|
||||||
// manifestPlaceholders = [mapsApiKey: 'android/app/src/main/AndroidManifest.xml']
|
// manifestPlaceholders = [mapsApiKey: 'android/app/src/main/AndroidManifest.xml']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>44</string>
|
<string>45</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleURLTypes</key>
|
<key>CFBundleURLTypes</key>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>4.0.44</string>
|
<string>4.0.45</string>
|
||||||
<key>FirebaseAppDelegateProxyEnabled</key>
|
<key>FirebaseAppDelegateProxyEnabled</key>
|
||||||
<string>NO</string>
|
<string>NO</string>
|
||||||
<key>GMSApiKey</key>
|
<key>GMSApiKey</key>
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class PaymobPayout extends GetxController {
|
|||||||
"msisdn": msisdn, // "01023456789"
|
"msisdn": msisdn, // "01023456789"
|
||||||
});
|
});
|
||||||
var res = await http.post(
|
var res = await http.post(
|
||||||
Uri.parse('https://paymobsolutions.com/api/secure/disburse/'),
|
Uri.parse('https://payouts.paymobsolutions.com/api/secure/disburse/'),
|
||||||
headers: headers,
|
headers: headers,
|
||||||
body: body,
|
body: body,
|
||||||
);
|
);
|
||||||
@@ -129,7 +129,7 @@ class PaymobPayout extends GetxController {
|
|||||||
};
|
};
|
||||||
var res = await http
|
var res = await http
|
||||||
.post(
|
.post(
|
||||||
Uri.parse('https://paymobsolutions.com/api/secure/disburse/'),
|
Uri.parse('https://payouts.paymobsolutions.com/api/secure/disburse/'),
|
||||||
headers: headers,
|
headers: headers,
|
||||||
body: body,
|
body: body,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ class CardSeferWalletDriver extends StatelessWidget {
|
|||||||
// box.write(BoxName.cvvCode, 1111);
|
// box.write(BoxName.cvvCode, 1111);
|
||||||
if (double.parse(
|
if (double.parse(
|
||||||
Get.find<CaptainWalletController>().totalAmountVisa) >
|
Get.find<CaptainWalletController>().totalAmountVisa) >
|
||||||
100) {
|
20) {
|
||||||
Get.defaultDialog(
|
Get.defaultDialog(
|
||||||
barrierDismissible: false,
|
barrierDismissible: false,
|
||||||
title: 'Do you want to collect your earnings?'.tr,
|
title: 'Do you want to collect your earnings?'.tr,
|
||||||
@@ -96,7 +96,7 @@ class CardSeferWalletDriver extends StatelessWidget {
|
|||||||
.validate()) {
|
.validate()) {
|
||||||
if (double.parse(Get.find<CaptainWalletController>()
|
if (double.parse(Get.find<CaptainWalletController>()
|
||||||
.totalAmountVisa) >
|
.totalAmountVisa) >
|
||||||
100) {
|
20) {
|
||||||
Get.back();
|
Get.back();
|
||||||
String amountAfter5LE = (double.parse(
|
String amountAfter5LE = (double.parse(
|
||||||
Get.find<CaptainWalletController>()
|
Get.find<CaptainWalletController>()
|
||||||
@@ -132,7 +132,7 @@ class CardSeferWalletDriver extends StatelessWidget {
|
|||||||
} else {
|
} else {
|
||||||
{
|
{
|
||||||
Get.snackbar(
|
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);
|
backgroundColor: AppColor.yellowColor);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user