Revo Apps Woocommerce - Flutter E-Commerce Full App Android iOS

Revo Apps Woocommerce - Flutter E-Commerce Full App Android iOS 6.5.5

No permission to download

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
momarel updated Revo Apps Woocommerce - Flutter E-Commerce Full App Android iOS with a new update entry:

RevoWoo Nulled

Create Mobile App for Your Woocommerce Store. Providing solutions for business people who want to increase sales multiple times by using Android / iOS applications. Also helps save build time for developer friends.

- Release Version: 5.1.3 (BIG UPDATE AUGUST 02, 2022).
- Support Flutter 3.0 (NEW)
- Support all versions of Woocommerce.
- Files Included: Full Flutter Source Code (iOS & Android).

LOG
V.5.1.3 (August 02, 2022)
- Remove all query package (androidmanifest.xml)

Read the rest of this update entry...
 
  • Like
Reactions: Andre231

toufic

Member
Feb 2, 2019
48
3
8
thanks for sharing @momarel I'm ask how to make default lang is arabic and active social login like google or Facebook and remove Hebrew from lang list

 

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
thanks for sharing @momarel I'm ask how to make default lang is arabic and active social login like google or Facebook and remove Hebrew from lang list

you need to modify a little the code . Is not hard ... but need to know how is working the flutter
 

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
momarel updated Revo Apps Woocommerce - Flutter E-Commerce Full App Android iOS with a new update entry:

RevoWoo 6.1.0 Nulled

V.6.1.0 (August 19, 2022)
- Add Live Chat (will required RevoPOS, sold separately)
- Add WPML + Polylang
- Add banner link to attribute
- Change icon at home screen related with app color
- Fix webview ewallet
- Fix open gojek app (iOS)
- Fix slug variation product (add cart)
- Fix & remove query all package
- Fix minor bug

Read the rest of this update entry...
 

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
For anyone having a problem. It's worth checking your theme as it may have conflicts. Here even the child theme was giving rise to conflict. I removed and solved 90% the other 10% I'm analyzing. To know the theme that I tested and is 100% compatible is https://themeforest.net/item/martfury-woocommerce-marketplace-wordpress-theme/21273233

Here at Babioto it has it, download and test it. It's just a suggestion.
This : https://babiato.tech/resources/electro-electronics-store-woocommerce-theme.7057/ is the theme what they use it in the demo ... :)

And is not the theme the problem .. are the plugins . Because some plugins make some modifications to your API . You can stop theme with a function in the child function what tell to wordpress to not use the specific mobile in in RestAPI .

If i remember right is something like that:

function_exists( 'is_rest' ) )
function is_rest()
//do something
}
}


So like that ... with a little work and a little of google it .. you can find and disable or modify the response of your website...
[/COLOR]
 
Last edited:
  • Like
Reactions: sonn1220

sonn1220

Active member
May 4, 2022
331
60
28
This code didn't work for me, it gave an error in the Snippet plugin. So I googled your code and found this one, it worked. And I believe it should help on the server, because through the forum it should help verify what is really needed for API requests. But the error still persists, see this print.

some image does not load. Maybe it's some error in flutter, I'll try to redo the pk later. If possible have any suggestions, it is well appreciated by everyone here. Thanks in advance for your time
print.jpg
 

sonn1220

Active member
May 4, 2022
331
60
28
the code i'm using is this one. source https://gist.github.com/matzeeable/dfd82239f48c2fedef25141e48c8dc30


if( !function_exists( 'is_rest' ) ) {
/**
* Checks if the current request is a WP REST API request.
*
* Case #1: After WP_REST_Request initialisation
* Case #2: Support "plain" permalink settings and check if `rest_route` starts with `/`
* Case #3: It can happen that WP_Rewrite is not yet initialized,
* so do this (wp-settings.php)
* Case #4: URL Path begins with wp-json/ (your REST prefix)
* Also supports WP installations in subfolders
*
* @returns boolean
* @author matzeeable
*/
function is_rest() {
if (defined('REST_REQUEST') && REST_REQUEST // (#1)
|| isset($_GET['rest_route']) // (#2)
&& strpos( $_GET['rest_route'] , '/', 0 ) === 0)
return true;

// (#3)
global $wp_rewrite;
if ($wp_rewrite === null) $wp_rewrite = new WP_Rewrite();

// (#4)
$rest_url = wp_parse_url( trailingslashit( rest_url( ) ) );
$current_url = wp_parse_url( add_query_arg( array( ) ) );
return strpos( $current_url['path'] ?? '/', $rest_url['path'], 0 ) === 0;
}
}
 
  • Like
Reactions: DarkWave

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
This code didn't work for me, it gave an error in the Snippet plugin. So I googled your code and found this one, it worked. And I believe it should help on the server, because through the forum it should help verify what is really needed for API requests. But the error still persists, see this print.

some image does not load. Maybe it's some error in flutter, I'll try to redo the pk later. If possible have any suggestions, it is well appreciated by everyone here. Thanks in advance for your time
print.jpg
Hmmm .. what we see here is a problem with the pictures... I do not remember if the app support all kind of pictures... Maybe are webp ? Or maybe you have some plugin what optimize the images?
Or si a cache problem ? (for that is easy... you add a rest api database cache :))

If you want to see more easy the errors .. you can install Insomnia (https://insomnia.rest/). and you login and paste the link and you will see exact what recive the app .. the code the error and everything...
If you google it you will find the construction of the woocommerce in rest api link ...

It all about to be careful at details... After that everything else you will solved :)
 

Bichhod

New member
May 18, 2022
2
1
3
FAILURE: Build failed with an exception.

* Where:
Script '/Users/milanghimire/flutter/packages/flutter_tools/gradle/flutter.gradle' line: 1159

* What went wrong:
Execution failed for task ':app:compileFlutterBuildRelease'.
> Process 'command '/Users/milanghimire/flutter/bin/flutter'' finished with non-zero exit value 1
 

Attachments

  • Screenshot 2022-11-15 at 6.23.16 am.png
    Screenshot 2022-11-15 at 6.23.16 am.png
    298.4 KB · Views: 12

momarel

Active member
Trusted Uploader
May 2, 2022
73
150
33
Cyprus
FAILURE: Build failed with an exception.

* Where:
Script '/Users/milanghimire/flutter/packages/flutter_tools/gradle/flutter.gradle' line: 1159

* What went wrong:
Execution failed for task ':app:compileFlutterBuildRelease'.
> Process 'command '/Users/milanghimire/flutter/bin/flutter'' finished with non-zero exit value 1
Try this:
  1. flutter clean
  2. delete folder ".gradle" in your projectdir>android>.gradle
  3. delete pubspec.lock
  4. update your gradle at projectdir>android>build.gradle
  5. update your gradle distributionUrl at projectdir>android>app>gradle>wrapper>gradle-wrapper.properties
  6. restart your IDE
  7. flutter pub get
 

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