Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@ distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
org.gradle.jvmargs=-Xmx6g -XX:+UseG1GC -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseStringDeduplication -Dfile.encoding=UTF-8
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.configureondemand=true
Comment on lines +6 to +9
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logic: Wrong file for these settings. gradle-wrapper.properties is only for Gradle wrapper configuration (distribution URL, paths). These org.gradle.* build settings belong in gradle.properties at the project root (android/gradle.properties).

Additionally, the PR title mentions "enable AndroidX support" but no AndroidX settings (android.useAndroidX=true, android.enableJetifier=true) are included.

Create a new file at examples/flutter/RunAnywhereAI/android/gradle.properties with these settings instead.

Prompt To Fix With AI
This is a comment left during a code review.
Path: examples/flutter/RunAnywhereAI/android/gradle/wrapper/gradle-wrapper.properties
Line: 6:9

Comment:
**logic:** **Wrong file for these settings.** `gradle-wrapper.properties` is only for Gradle wrapper configuration (distribution URL, paths). These `org.gradle.*` build settings belong in `gradle.properties` at the project root (`android/gradle.properties`).

Additionally, the PR title mentions "enable AndroidX support" but no AndroidX settings (`android.useAndroidX=true`, `android.enableJetifier=true`) are included.

Create a new file at `examples/flutter/RunAnywhereAI/android/gradle.properties` with these settings instead.

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please check this @vaibhav936

Also, can you fix the downloading of the binaries and setting them? make sure it's part of the gradle and podspec in iOS to download those binaries automatically?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes! sure am checking this.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need this change and PR? can we please close it if not needed?