What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin

LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin 2.0.2

raz0r

owner
Staff member
Administrator
Moderator
Member
Messages
26,811
Files
6777
Reactions
97,585
raz0r submitted a new resource:

LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin 49353967

View attachment 28885

LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin​

  • Agora Audio and Video Calls
  • Pusher Chat System
  • Firebase Notification
  • Appointment System
  • Google Services
  • No Coding Requirements
  • Cross-Browser Compatibility
  • 100% Fully Responsive
  • Sticky Header
  • 70+ Screens
  • And Much More...
Wallet System Integration
Empower your transactions with our...

Read more about this resource...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: 2a7u
raz0r updated LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin with a new update entry:

LawAdvisor 1.0.5

Version 1.0.5: Released Date: 13 Sep 2024

WEB & Admin
- AI ChatBot Integration:** A smart chatbot now assists users in finding the right legal services and professionals based on their needs.
- Community Forum:** Users and lawyers can engage in discussions, Q&A, and share knowledge, fostering a collaborative legal community.
- Admin Panel Update:** Enhanced content management with an improved editor for easier editing and formatting of service descriptions.
- Improvements & Bug...

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: 2a7u
raz0r updated LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin with a new update entry:

LawAdvisor 2.0

Version 2.0: Released Date: 18 Dec 2024

WEB & Admin

- Laravel version upgrade from 9 to 10
- Added the "Delete Account" functionality in the apps
- Improvements to the Stripe and Bank Account payment methods
- RePay functionality
- Wallet improvements
- Bug fixes

Mobile Applications
- Delete accounts on mobile apps

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: 2a7u
Thank you for update! I installed but is showing Version 1.0.5 not 2
 
Reacted by:
New Update
Version 2.0.1: Released Date: 17 Jan 2025

WEB & Admin
- Added multi-color theme with vibrant hues to enhance the visual appeal of the application
- Introduced a customizable home page layout with hide/show functionality for sections and the ability to change the sequence of sections
- Fixed composer autoload warnings to ensure smooth and error-free application performance
- Bug fixes

Mobile Applications- Updated the iOS version of the mobile application to the latest version
- Implemented the same multi-color theme on the mobile application as on the web for a consistent user experience
- Bug fixes
 
Reacted by:
  • Like
Reactions: 2a7u and orbesjoe
New Update
Version 2.0.1: Released Date: 17 Jan 2025

WEB & Admin
- Added multi-color theme with vibrant hues to enhance the visual appeal of the application
- Introduced a customizable home page layout with hide/show functionality for sections and the ability to change the sequence of sections
- Fixed composer autoload warnings to ensure smooth and error-free application performance
- Bug fixes

Mobile Applications- Updated the iOS version of the mobile application to the latest version
- Implemented the same multi-color theme on the mobile application as on the web for a consistent user experience
- Bug fixes
This Version 2.0.1: Released Date: 17 Jan 2025 does anyone have it?
 
Reacted by:
  • Like
Reactions: 2a7u
raz0r updated LawAdvisor - Seamless Tele-Advisory Platform & Virtual Legal Services with Flutter Apps, Web & Admin with a new update entry:

LawAdvisor 2.0.2

Version 2.0.2: Released Date: 19 Feb 2025

WEB & Admin
- Version Upgrade Page Enhancement: Improved visualization and usability of the Version Upgrade page in the Super Admin panel.
- Mail Configuration Settings: Separated mail configuration settings for better flexibility and management.
- System Information Dashboard: View detailed system information directly from the Super Admin dashboard.
- Cache & Site Optimization: Added an option to optimize and cache the website for better...

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: 2a7u
The error you're encountering is related to how the Flutter Gradle plugin is being applied in your Android project. This is a common issue when using newer versions of Flutter with older project configurations.

The error message indicates:
"You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is not possible anymore."

This means your project is using the older `apply` method to include the Flutter plugin, but newer versions require a declarative approach using the `plugins` block.


You need to modify your `android/app/build.gradle` file:

1. Open `android/app/build.gradle` in a text editor

2. **Remove** any lines that look like:
```gradle
apply from: "$flutterRoot/packages/flutter_tools/gradle/app_plugin_loader.gradle"
```


3. **Add** this at the top of the file (with the other plugins block if it exists):
```gradle
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
}
```


4. Also ensure you have the proper classpath in `android/build.gradle`:
```gradle
dependencies {
classpath "com.android.tools.build:gradle:7.3.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
classpath "dev.flutter:flutter-gradle-plugin:1.0.0"
}

```


What is the problem anyone can tell me...pls..
View attachment 46738
 
Reacted by:
C
The error you're encountering is related to how the Flutter Gradle plugin is being applied in your Android project. This is a common issue when using newer versions of Flutter with older project configurations.

The error message indicates:
"You are applying Flutter's app_plugin_loader Gradle plugin imperatively using the apply script method, which is not possible anymore."

This means your project is using the older `apply` method to include the Flutter plugin, but newer versions require a declarative approach using the `plugins` block.


You need to modify your `android/app/build.gradle` file:

1. Open `android/app/build.gradle` in a text editor

2. **Remove** any lines that look like:
```gradle
apply from: "$flutterRoot/packages/flutter_tools/gradle/app_plugin_loader.gradle"
```


3. **Add** this at the top of the file (with the other plugins block if it exists):
```gradle
plugins {
id "com.android.application"
id "kotlin-android"
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
}
```


4. Also ensure you have the proper classpath in `android/build.gradle`:
```gradle
dependencies {
classpath "com.android.tools.build:gradle:7.3.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
classpath "dev.flutter:flutter-gradle-plugin:1.0.0"
}

```
I tried a lot but I couldn't. Can you fix the file for me? It would be great if you could. I will remember you for the rest of my life.
 
Reacted by:
Top