Active eCommerce Flutter App

Active eCommerce Flutter App v5.1.0

No permission to download

foxywaxy

Member
Oct 8, 2020
36
8
8
tried but result is same....
Replace your app_config.dart file wit this code.and change the base URL to your domain.


import 'package:flutter/material.dart';

var this_year = DateTime.now().year.toString();

class AppConfig {
static String copyright_text = "@ appname " + this_year; //this shows in the splash screen
static String app_name = "app name"; //this shows in the splash screen
static String purchase_code = "e61f6ccc-bf4f-4df0-bfc7-uf8b2632b513db"; //enter your purchase code for the app from codecanyon
//static String purchase_code = ""; //enter your purchase code for the app from codecanyon

//configure this
static const bool HTTPS = true;

//configure this
static const DOMAIN_PATH = "site url here"; //localhost
//static const DOMAIN_PATH = "demo.activeitzone.com/ecommerce_flutter_demo"; //inside a folder
//static const DOMAIN_PATH = "something.com"; // directly inside the public folder

//do not configure these below
static const String API_ENDPATH = "api/v2";
static const String PUBLIC_FOLDER = "public";
static const String PROTOCOL = HTTPS ? "https://" : "http://";
static const String RAW_BASE_URL = "${PROTOCOL}${DOMAIN_PATH}";
static const String BASE_URL = "${RAW_BASE_URL}/${API_ENDPATH}";

//configure this if you are using amazon s3 like services
//give direct link to file like https://[[bucketname]].s3.ap-southeast-1.amazonaws.com/
//otherwise do not change anythink
static const String BASE_PATH = "${RAW_BASE_URL}/${PUBLIC_FOLDER}/";
//static const String BASE_PATH = "https://tosoviti.s3.ap-southeast-2.amazonaws.com/";
}
 
  • Like
Reactions: PreetGill

PreetGill

New member
Jan 6, 2021
1
7
0
Replace your app_config.dart file wit this code.and change the base URL to your domain.


import 'package:flutter/material.dart';

var this_year = DateTime.now().year.toString();

class AppConfig {
static String copyright_text = "@ appname " + this_year; //this shows in the splash screen
static String app_name = "app name"; //this shows in the splash screen
static String purchase_code = "e61f6ccc-bf4f-4df0-bfc7-uf8b2632b513db"; //enter your purchase code for the app from codecanyon
//static String purchase_code = ""; //enter your purchase code for the app from codecanyon

//configure this
static const bool HTTPS = true;

//configure this
static const DOMAIN_PATH = "site url here"; //localhost
//static const DOMAIN_PATH = "demo.activeitzone.com/ecommerce_flutter_demo"; //inside a folder
//static const DOMAIN_PATH = "something.com"; // directly inside the public folder

//do not configure these below
static const String API_ENDPATH = "api/v2";
static const String PUBLIC_FOLDER = "public";
static const String PROTOCOL = HTTPS ? "https://" : "http://";
static const String RAW_BASE_URL = "${PROTOCOL}${DOMAIN_PATH}";
static const String BASE_URL = "${RAW_BASE_URL}/${API_ENDPATH}";

//configure this if you are using amazon s3 like services
//give direct link to file like https://[[bucketname]].s3.ap-southeast-1.amazonaws.com/
//otherwise do not change anythink
static const String BASE_PATH = "${RAW_BASE_URL}/${PUBLIC_FOLDER}/";
//static const String BASE_PATH = "https://tosoviti.s3.ap-southeast-2.amazonaws.com/";
}
its Same

below Is Debug Log When Login Button is Pressed

Code:
E/flutter (10242): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: FormatException: Unexpected character (at character 1)
E/flutter (10242): <!DOCTYPE html>
E/flutter (10242): ^
E/flutter (10242):
E/flutter (10242): #0      _ChunkedJsonParser.fail (dart:convert-patch/convert_patch.dart:1404:5)
E/flutter (10242): #1      _ChunkedJsonParser.parseNumber (dart:convert-patch/convert_patch.dart:1271:9)
E/flutter (10242): #2      _ChunkedJsonParser.parse (dart:convert-patch/convert_patch.dart:936:22)
E/flutter (10242): #3      _parseJson (dart:convert-patch/convert_patch.dart:40:10)
E/flutter (10242): #4      JsonDecoder.convert (dart:convert/json.dart:505:36)
E/flutter (10242): #5      JsonCodec.decode (dart:convert/json.dart:156:41)
E/flutter (10242): #6      loginResponseFromJson
E/flutter (10242): #7      AuthRepository.getLoginResponse
E/flutter (10242): <asynchronous suspension>
E/flutter (10242): #8      _LoginState.onPressedLogin
E/flutter (10242): #9      _LoginState.build.<anonymous closure>
E/flutter (10242): #10     _InkResponseState._handleTap
E/flutter (10242): #11     _InkResponseState.build.<anonymous closure>
E/flutter (10242): #12     GestureRecognizer.invokeCallback
E/flutter (10242): #13     TapGestureRecognizer.handleTapUp
E/flutter (10242): #14     BaseTapGestureRecognizer._checkUp
E/flutter (10242): #15     BaseTapGestureRecognizer.handlePrimaryPointer
E/flutter (10242): #16     PrimaryPointerGestureRecognizer.handleEvent
E/flutter (10242): #17     PointerRouter._dispatch
E/flutter (10242): #18     PointerRouter._dispatchEventToRoutes.<anonymous closure>
E/flutter (10242): #19     _LinkedHashMapMixin.forEach (dart:collection-patch/compact_hash.dart:377:8)
E/flutter (10242): #20     PointerRouter._dispatchEventToRoutes
E/flutter (10242): #21     PointerRouter.route
E/flutter (10242): #22     GestureBinding.handleEvent
E/flutter (10242): #23     GestureBinding.dispatchEvent
E/flutter (10242): #24     RendererBinding.dispatchEvent
E/flutter (10242): #25     GestureBinding._handlePointerEvent
E/flutter (10242): #26     GestureBinding._flushPointerEventQueue
E/flutter (10242): #27     GestureBinding._handlePointerDataPacket
E/flutter (10242): #28     _rootRunUnary (dart:async/zone.dart:1206:13)
E/flutter (10242): #29     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
E/flutter (10242): #30     _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7)
E/flutter (10242): #31     _invoke1 (dart:ui/hooks.dart:265:10)
E/flutter (10242): #32     _dispatchPointerDataPacket (dart:ui/hooks.dart:174:5)
E/flutter (10242):
 

foxywaxy

Member
Oct 8, 2020
36
8
8
its Same

below Is Debug Log When Login Button is Pressed

Code:
E/flutter (10242): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: FormatException: Unexpected character (at character 1)
E/flutter (10242): <!DOCTYPE html>
E/flutter (10242): ^
E/flutter (10242):
E/flutter (10242): #0      _ChunkedJsonParser.fail (dart:convert-patch/convert_patch.dart:1404:5)
E/flutter (10242): #1      _ChunkedJsonParser.parseNumber (dart:convert-patch/convert_patch.dart:1271:9)
E/flutter (10242): #2      _ChunkedJsonParser.parse (dart:convert-patch/convert_patch.dart:936:22)
E/flutter (10242): #3      _parseJson (dart:convert-patch/convert_patch.dart:40:10)
E/flutter (10242): #4      JsonDecoder.convert (dart:convert/json.dart:505:36)
E/flutter (10242): #5      JsonCodec.decode (dart:convert/json.dart:156:41)
E/flutter (10242): #6      loginResponseFromJson
E/flutter (10242): #7      AuthRepository.getLoginResponse
E/flutter (10242): <asynchronous suspension>
E/flutter (10242): #8      _LoginState.onPressedLogin
E/flutter (10242): #9      _LoginState.build.<anonymous closure>
E/flutter (10242): #10     _InkResponseState._handleTap
E/flutter (10242): #11     _InkResponseState.build.<anonymous closure>
E/flutter (10242): #12     GestureRecognizer.invokeCallback
E/flutter (10242): #13     TapGestureRecognizer.handleTapUp
E/flutter (10242): #14     BaseTapGestureRecognizer._checkUp
E/flutter (10242): #15     BaseTapGestureRecognizer.handlePrimaryPointer
E/flutter (10242): #16     PrimaryPointerGestureRecognizer.handleEvent
E/flutter (10242): #17     PointerRouter._dispatch
E/flutter (10242): #18     PointerRouter._dispatchEventToRoutes.<anonymous closure>
E/flutter (10242): #19     _LinkedHashMapMixin.forEach (dart:collection-patch/compact_hash.dart:377:8)
E/flutter (10242): #20     PointerRouter._dispatchEventToRoutes
E/flutter (10242): #21     PointerRouter.route
E/flutter (10242): #22     GestureBinding.handleEvent
E/flutter (10242): #23     GestureBinding.dispatchEvent
E/flutter (10242): #24     RendererBinding.dispatchEvent
E/flutter (10242): #25     GestureBinding._handlePointerEvent
E/flutter (10242): #26     GestureBinding._flushPointerEventQueue
E/flutter (10242): #27     GestureBinding._handlePointerDataPacket
E/flutter (10242): #28     _rootRunUnary (dart:async/zone.dart:1206:13)
E/flutter (10242): #29     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
E/flutter (10242): #30     _CustomZone.runUnaryGuarded (dart:async/zone.dart:1005:7)
E/flutter (10242): #31     _invoke1 (dart:ui/hooks.dart:265:10)
E/flutter (10242): #32     _dispatchPointerDataPacket (dart:ui/hooks.dart:174:5)
E/flutter (10242):
whats is your website version?
 
  • Like
Reactions: PreetGill

PreetGill

New member
Jan 6, 2021
1
7
0
Initially i had this same login issue. all i did was to downgrade my site from 5.4 to 5.3 and it worked. alternatively can your try the app on a real device instead of the emulator.
i am using a real device bro....

which app version you are using ?

i am using 1.8 ,coz i dont have that much posts to unlock the 1.7v app password
 

PreetGill

New member
Jan 6, 2021
1
7
0
1.8 has issues with login.....many verified purchasers at code canyon posted about it there.....
may be its some messed up dependencies,,,,
coz in the debug logs I can many errors regarding path_provider, shared_prefrences and other dependencies...
so I have to wait for the password of 1.7v app source code posted here
 

foxywaxy

Member
Oct 8, 2020
36
8
8
1.8 has issues with login.....many verified purchasers at code canyon posted about it there.....
may be its some messed up dependencies,,,,
coz in the debug logs I can many errors regarding path_provider, shared_prefrences and other dependencies...
so I have to wait for the password of 1.7v app source code posted here
Mine works well, the only issue i have is shipping calculation.
 
  • Like
Reactions: PreetGill

PreetGill

New member
Jan 6, 2021
1
7
0
if u can share your site url let me build apk from my end and lets check it out



1 more thing i was checking the json response from AUTH Controller in API, But its not returning response in json format,

Location In Laravel -> /app/Http/Controllers/Api/V2/AuthController Line No:- 134
Code:
  return $this->loginSuccess($tokenResult, $user);

can you verify it in original source
 
Last edited:

foxywaxy

Member
Oct 8, 2020
36
8
8
my site :- xxxxxx


1 more thing i was checking the json response from AUTH Controller in API, But its not returning response in json format,

Location In Laravel -> /app/Http/Controllers/Api/V2/AuthController Line No:- 134
Code:
  return $this->loginSuccess($tokenResult, $user);

can you verify it in original source
okay will get back to u shortly
 
Last edited:
  • Like
Reactions: PreetGill

ahmedtsadek

New member
May 22, 2021
24
10
3
1 more thing i was checking the json response from AUTH Controller in API, But its not returning response in json format,

Location In Laravel -> /app/Http/Controllers/Api/V2/AuthController Line No:- 134
Code:
  return $this->loginSuccess($tokenResult, $user);

can you verify it in original source
1- Which flutter version are you using?
2- have you edited the pubspec.yaml?
3- can you try the nulled website version on local with xampp and test the app with it as it maybe a conflict between the nulled app and purchased website?
 

PreetGill

New member
Jan 6, 2021
1
7
0
1- Which flutter version are you using?
2- have you edited the pubspec.yaml?
3- can you try the nulled website version on local with xampp and test the app with it as it maybe a conflict between the nulled app and purchased website?
• Flutter version 1.22.4
• Framework revision 1aafb3a8b9 (11 months ago), 2020-11-13 09:59:28 -0800
• Engine revision 2c956a31c0
• Dart version 2.10.4

yes added missing dependencies

not tried on local
 

ahmedtsadek

New member
May 22, 2021
24
10
3
• Flutter version 1.22.4
• Framework revision 1aafb3a8b9 (11 months ago), 2020-11-13 09:59:28 -0800
• Engine revision 2c956a31c0
• Dart version 2.10.4

yes added missing dependencies

not tried on local
try the on local with the nulled website and let me know the result
 

Latest posts

Forum statistics

Threads
69,226
Messages
908,438
Members
237,026
Latest member
Hefon_mark

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu