1.2.8+16 uploaded on play store

main_design2.1 V1.2.8
Sikander Saleem 6 months ago
parent 3908bd7e08
commit 9d0ed3abf6

@ -1,7 +1,7 @@
class URLs {
URLs._();
static const String appReleaseBuildNumber = "14";
static const String appReleaseBuildNumber = "15";
static const host1 = "https://atomsm.hmg.com"; // production url
// static const host1 = "https://atomsmdev.hmg.com"; // local UAT url

@ -172,20 +172,15 @@ class _SplashPageState extends State<SplashPage> {
Future<bool> checkDeviceSafety() async {
if (!kReleaseMode) return true;
bool isOnExternalStorage = false;
bool isDevelopmentModeEnable = false;
bool isJailBroken = false;
bool isRealDevice = false;
try {
isJailBroken = await SafeDevice.isJailBroken;
isRealDevice = await SafeDevice.isRealDevice;
if (Platform.isAndroid) {
isOnExternalStorage = await SafeDevice.isOnExternalStorage;
isDevelopmentModeEnable = await SafeDevice.isDevelopmentModeEnable;
}
//TODO correct isDevelopmentModeEnable when publish to prod...
if (isJailBroken || !isRealDevice || isOnExternalStorage || isDevelopmentModeEnable) {
if (isJailBroken || !isRealDevice) {
return false;
} else {
return true;

@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.2.7+15
version: 1.2.8+16
environment:
sdk: ">=2.7.0 <3.0.0"
@ -86,7 +86,7 @@ dependencies:
wifi_iot: ^0.3.19+1
just_audio: ^0.9.30
pinput:
safe_device: ^1.1.9
safe_device: ^1.2.1
dev_dependencies:
flutter_test:

Loading…
Cancel
Save