All Above Discussion is Too Complicated. i just use basic source on Linux Mint and Compile with Ant Extensions. I will like to Update on Fast when I have free time.
This is why I have skipped merging AndroidManifest.xml & proguard.txt from aar files. FAST collects all the necessary jars from those aars and converts (if exists) R.txt into a proper R.class, placing them right where they need to go.
Secondly, the error java.lang.VerifyError: Expecting a stackmap frame indicates a verification issue in the bytecode. This usually happens when the Java class file is compiled with a different java version than that used by appinventor.
I don't think so, I tried both java8 and java 11. I tried with and without desugaring. The compilation error only occurs when I pull the helpers block from the extension drawer and place it in the blocks workspace. I made a test extension without any libraries, only one function from the helpers block and it compiles correctly there. It doesn't work with my big extension and I have no idea what the reason is. Fortunately, I can live without helpers blocks
Cleaning build caches
- Increasing Components version
- Compiling Kotlin classes
- Compiling Java classes
- Generating components info
- WARNING: An illegal reflective access operation has occurred
- WARNING: Illegal reflective access by org.jetbrains.kotlin.kapt3.util.ModuleManipulationUtilsKt (file:/Users/husnain/.local/share/Fast/lib/kotlinc/lib/kotlin-annotation-processing.jar) to constructor com.sun.tools.javac.util.Context()
- WARNING: Please consider reporting this to the maintainers of org.jetbrains.kotlin.kapt3.util.ModuleManipulationUtilsKt
- WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
- WARNING: All illegal access operations will be denied in a future release
- Coping extension assets
- Reading AndroidManifest.xml
x JSONArray[0] not found.
Could you please let me know which version of FAST you are using? Additionally, could you share the logs.txt file that is located in the installed directory of FAST?
Fast is initialized.
The installed fast version is: 1.2.6 11.11.24.21.56
fast build initialized.
PROJECT_DIR: /Users/husnain/testexten
Got the JAVA_HOME by system property.
JAVA_HOME: /Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home
Got FAST_HOME from environment variable.
FAST_HOME: /Users/husnain/.local/share/Fast
KOTLIN_HOME: /Users/husnain/.local/share/Fast/lib/kotlinc
fast.yml is found at: /Users/husnain/testexten/fast.yml
AndroidManifest.xml is found at: /Users/husnain/testexten/src/AndroidManifest.xml
Package name is: com.testfast.testexten
Cleaning build caches.
Checking the availablity of .kt files.
Checking the availablity of .java file.
Getting provided libraries.
Got 85 libraries.
Getting the libraries of deps folder.
Got 55 libraries.
Adding kotlin libraies.
Increasing components version.
Compiling kotlin classes.
Running kotlinc
Successfully created kotlinc arguments
Calling kotlinc commands.
kotlinc is successfully executed.
Compiling java classes with kotlin sources as classpath.
Compiling java classes.
Found 1 sources.
Added custom bootclasspath to target Java 8.
Successfully created javac arguments
Calling javac commands.
Note: Wrote file file:///Users/husnain/testexten/.fast/classes/simple_components.json
Note: Wrote file file:///Users/husnain/testexten/.fast/classes/simple_components.txt
Note: Wrote file file:///Users/husnain/testexten/.fast/classes/simple_components_build_info.json
Note: Wrote file file:///Users/husnain/testexten/.fast/classes/AutogeneratedOdeMessages.java
Note: Wrote file file:///Users/husnain/testexten/.fast/classes/ComponentsTranslation.java
javac is successfully executed.
Running kapt compiler.
Successfully created kapt arguments
Calling kapt commands.
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.jetbrains.kotlin.kapt3.util.ModuleManipulationUtilsKt (file:/Users/husnain/.local/share/Fast/lib/kotlinc/lib/kotlin-annotation-processing.jar) to constructor com.sun.tools.javac.util.Context()
WARNING: Please consider reporting this to the maintainers of org.jetbrains.kotlin.kapt3.util.ModuleManipulationUtilsKt
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
info: note: Wrote file file:///Users/husnain/testexten/.fast/kapt/simple_components.json
info: note: Wrote file file:///Users/husnain/testexten/.fast/kapt/simple_components.txt
info: note: Wrote file file:///Users/husnain/testexten/.fast/kapt/simple_components_build_info.json
info: note: Wrote file file:///Users/husnain/testexten/.fast/kapt/AutogeneratedOdeMessages.java
info: note: Wrote file file:///Users/husnain/testexten/.fast/kapt/ComponentsTranslation.java
kapt is successfully executed.
Making raw files.
Coping assets.
Reading AndroidManifest.xml
com.jewel.fast.repacked.hscrWKTXXUrLRGhDZujG: JSONArray[0] not found.
com.jewel.fast.repacked.hscrWKTXXUrLRGhDZujG: JSONArray[0] not found.
at com.jewel.fast.repacked.OMwYeUAfbaBRzMtFyhgP.iUIKuJlLwsOpwhRkqGDF(Unknown Source)
at com.jewel.fast.repacked.OMwYeUAfbaBRzMtFyhgP.iUIKuJlLwsOpwhRkqGDF(Unknown Source)
at com.jewel.fast.repacked.OggnIzhFqrXyvGpcPouW.<init>(Unknown Source)
at com.jewel.fast.repacked.qXSHrxLAZKiREPbpxhEi.<init>(Unknown Source)
at com.jewel.fast.Fast.main(Unknown Source)
It looks like r8 or proguard is removing information from the class file that Kawa needs to perform its compilation passes. What does the full proguard config look like?
I also noticed that if I don't add a description for a function or property, I get warnings during compilation. Everything is fine, but why do I have 4 warnings for the same function? That is, I don't have a description in one function and I get 4 of the same warnings.