Types of return value and parameter have limitations in Fast?
I used to compile extension with Aixc and it can use any type as return value and parameters, and the extension working in AI2.
Can you remove this limitations in Fast?
Types of return value and parameter have limitations in Fast?
I used to compile extension with Aixc and it can use any type as return value and parameters, and the extension working in AI2.
Can you remove this limitations in Fast?
I need more info to look into it.
I'm having trouble understanding what you mean. Could you please clarify?
I am trying to develop a pdf viewer extension using below library from many days and tried different ways but all were unsuccessful.
First it doesn't import the dependency due to conflict with android activity class that I resolved as per your recommendation by excluding it.
Second the build fails due to missing classes as I discussed above.
Not only this library but I faced similar issues in other libraries that uses androidx classes. I don't remember them exactly.
I am not expert in java development but this is my issue that I am facing and I am not sure if I have explained it correctly.
Your opinion will be appreciated.
What types do you mean, for example? You can return any type using the Object class.
Date built: 25.02.25.06.19
v2.3.1:
A huge thanks to @Patryk_F for this awesome contribution.
Yes, I know I can use Object class, but the code like this
@SimpleFunction
public Joint CreateMouseJoint(Body body, float x, float y) {
assertWorld();
MouseJointDef mjd = new MouseJointDef();
mjd.bodyA = boxWorld.getWorld().getBodyList();
mjd.bodyB = body;
mjd.target.set(BoxUtil.pixelToVec2(x, y));
MouseJoint mj = (MouseJoint) boxWorld.getWorld().createJoint(mjd);
body.setAwake(true);
return mj;
}
you see the return type is Joint, input type is Body, both not from Yail type, but if I compile this file with aixc, it's working.
but with Fast, it fails.
This will only work from the release of nb201.
Date built: 26.02.25.22.58
.readme
file. Thanks to @Kevinkun for spotting that docs gen bug.
Is there any plan to resolve library conflict issue as well?
Date built: 04.03.25.14.53
2.4.2:
fast upgrade
. Thanks to @Kevinkun for identifying and helping to resolve this issue.
Hi @JEWEL One more issue
I recently created an extension and add Helpers methods. But helpers doc not generate.
Please tell me more! How was it written, and how should it have been?
Date built: 08.03.25.15.34
AppInventor
, Kodular
, Niotron
& AndroidBuilder
by @Patryk_FUTF-8
encoding issues have been resolved.Hi everyone, Iโm a beginner in Java and currently trying to use Fast to create an .aix
extension for use in MIT App Inventor 2. However, I encountered an issue when trying to compile the project into an .apk
.
Here are my .java
, fast.yml
, and assets/*.png
files:
Fast_BluetoothHelper_v1_6.zip - Google Drive
Issue summary:
.aix
into AI2, the extensionโs icon doesn't display. (Could the image file be too large?).aix
can be imported into the AI2 website and runs fine via the MIT AI2 Companion simulator,.apk
โ even when thereโs no code block used in the project.I noticed that if I use the default .java
file provided by Fast instead of my own, the project can compile into an .apk
without any problem.
I would really appreciate it if any experienced developer could take a look and help me figure out whatโs wrong. Thanks a lot in advance!
If possible, please help me check whether thereโs anything wrong with my .java
or fast.yml
settings.
Sorry, I forgot to include some files in the previous upload.
Here is the updated compressed folder with all necessary files (.java
, fast.yml
, and assets/*.png
):
Fast_BluetoothHelper_v1_6.zip - Google Drive
U have a lot of problems.
Do u used ai to create this extension?