• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Active eCommerce Flutter App

Active eCommerce Flutter App 4.6.1 - Untouched

No permission to download
To disable the message "The app is inactivated"

go to offline_wallet_recharge_response.dart and comment or remove this code
please note this is only to bypass the UI but it still communicate with their server
youromain.com/api/v2/addon-list

Code:
    .then((value) {
    Future.delayed(const Duration(seconds: 5)).then((value2) {
      if (value.body == "bad") {
        OneContext().addOverlay(
            overlayId: "overlayId",
            builder: (context) => Scaffold(
                  body: SizedBox(
                    width: DeviceInfo(context).width,
                    child: Column(
                      mainAxisAlignment: MainAxisAlignment.center,
                      crossAxisAlignment: CrossAxisAlignment.center,
                      children: [
                        Text(
                          utf8.decode(MessageResponse.message),
                          style: TextStyle(
                              fontSize: double.parse(utf8.decode(([50, 53]))),
                              color: Color(int.parse(utf8.decode(
                                  [48, 120, 70, 70, 70, 70, 48, 48, 48, 48])))),
                          textAlign: TextAlign.center,
                        )
                      ],
                    ),
                  ),
                ));
      }
    });
  });
 
  • Like
Reactions: hostmax
To bypass the message "The app is inactivated"

go to lib/data_model/offline_wallet_recharge_response.dart and replace the below code:

The Code to remove :

Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111,
    110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111,
    109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105,
    118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);

    Future.delayed(Duration(seconds: 5)).then((value2) {
      if (value.body == "bad") {
        OneContext().addOverlay(
          overlayId: "overlayId",
          builder: (context) => Scaffold(
            body: Container(
              width: DeviceInfo(context).width,
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                crossAxisAlignment: CrossAxisAlignment.center,
                children: [
                  Text(
                    utf8.decode(MessageResponse.message),
                    style: TextStyle(
                      fontSize: double.parse(utf8.decode(([50, 53]))),
                      color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                    ),
                    textAlign: TextAlign.center,
                  ),
                ],
              ),
            ),
          ),
        );
      }
    });
  });
}

To replacement code:
Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111, 109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);
    Future.delayed(Duration(seconds: 5)).then((value2) {
      final responseJson = json.decode(value.body);
      final success = responseJson['success'];

      if (success != true) {
        // Check if success is not true before adding the overlay
        OneContext().addOverlay(overlayId: "overlayId", builder: (context) => Scaffold(
          body: Container(
            width: DeviceInfo(context).width,
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              crossAxisAlignment: CrossAxisAlignment.center,
              children: [
                Text(
                  utf8.decode(MessageResponse.message),
                  style: TextStyle(
                    fontSize: double.parse(utf8.decode(([50, 53]))),
                    color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                  ),
                  textAlign: TextAlign.center,
                )
              ],
            ),
          ),
        ));
      }
    });
  });
}
 
To bypass the message "The app is inactivated"

go to lib/data_model/offline_wallet_recharge_response.dart and replace the below code:

The Code to remove :

Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111,
    110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111,
    109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105,
    118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);

    Future.delayed(Duration(seconds: 5)).then((value2) {
      if (value.body == "bad") {
        OneContext().addOverlay(
          overlayId: "overlayId",
          builder: (context) => Scaffold(
            body: Container(
              width: DeviceInfo(context).width,
              child: Column(
                mainAxisAlignment: MainAxisAlignment.center,
                crossAxisAlignment: CrossAxisAlignment.center,
                children: [
                  Text(
                    utf8.decode(MessageResponse.message),
                    style: TextStyle(
                      fontSize: double.parse(utf8.decode(([50, 53]))),
                      color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                    ),
                    textAlign: TextAlign.center,
                  ),
                ],
              ),
            ),
          ),
        );
      }
    });
  });
}

To replacement code:
Code:
$() {
  Uri url = Uri.parse(utf8.decode([
    104, 116, 116, 112, 115, 58, 47, 47, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110, 46, 97, 99, 116, 105, 118, 101, 105, 116, 122, 111, 110, 101, 46, 99, 111, 109, 47, 99, 104, 101, 99, 107, 95, 97, 100, 100, 111, 110, 95, 97, 99, 116, 105, 118, 97, 116, 105, 111, 110
  ]));

  http.post(url, body: {
    'main_item': 'eCommerce',
    'unique_identifier': 'flutter',
    'url': AppConfig.DOMAIN_PATH
  }).then((value) {
    print("value");
    print(value.body);
    Future.delayed(Duration(seconds: 5)).then((value2) {
      final responseJson = json.decode(value.body);
      final success = responseJson['success'];

      if (success != true) {
        // Check if success is not true before adding the overlay
        OneContext().addOverlay(overlayId: "overlayId", builder: (context) => Scaffold(
          body: Container(
            width: DeviceInfo(context).width,
            child: Column(
              mainAxisAlignment: MainAxisAlignment.center,
              crossAxisAlignment: CrossAxisAlignment.center,
              children: [
                Text(
                  utf8.decode(MessageResponse.message),
                  style: TextStyle(
                    fontSize: double.parse(utf8.decode(([50, 53]))),
                    color: Color(int.parse(utf8.decode([48, 120, 70, 70, 70, 70, 48, 48, 48, 48]))),
                  ),
                  textAlign: TextAlign.center,
                )
              ],
            ),
          ),
        ));
      }
    });
  });
}
actually you can remove the whole function it's useless $()
 
  • Like
Reactions: TechBrain
Hello to all
I run the flutter build appbundle command, but I get the following error:

================================================================
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':flutter_local_notifications:compileReleaseJavaWithJavac'.
> Could not resolve all files for configuration ':flutter_local_notifications:releaseCompileClasspath'.
> Failed to transform lifecycle-runtime-2.2.0.jar (androidx.lifecycle:lifecycle-runtime:2.2.0) to match attributes {artifactType=android-classes-jar, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-api}.
> Could not find lifecycle-runtime-2.2.0.jar (androidx.lifecycle:lifecycle-runtime:2.2.0).
Searched in the following locations:
https://dl.google.com/dl/android/ma...cle-runtime/2.2.0/lifecycle-runtime-2.2.0.jar

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 53s
Running Gradle task 'bundleRelease'... 54.0s
Gradle task bundleRelease failed with exit code 1
================================================================

Does anyone have a solution to this problem?
I did not make any changes in the program and I just want to compile the program
can someone help me?
 
I
After compiling app is not connecting with the web .. showing black and written on the top "This is a pirated app."
@zakblack .. Any hint??

I KNOW DEAR DEVELOPER UPDATED CODE SECRETLY. I AM UPDATING CODE REGULARLY BUT I AM SENDING REQUEST TO ALL BABIATO MEMBERS MANY TIME THAT I NEED SELLER FLUTTER APP LATEST VERSION BUT STILL NOT RECEIVED. PLEASE SHARE IT WITH ME
 
please friends guide me wholesale items are showing into my app and their thumbnail as well but when i open wholesale product nothing show
 
Guys don't bother ultimately you guys have to pay if you don't know coding, because everytime author release update someone has to null fully both backend and app which takes a lot of time and I can't do that everytime and if u try to use it anyway the author can and will delete your database at some point and all your files so unless u guys have some basic coding knowledge avoid not to mention this product is still buggy as f
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock