You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run project and get some errors related to android/text
Showing All Errors Only
Undefined symbol: AndroidTextTextUtils_isEmptyWithJavaLangCharSequence
Undefined symbol: AndroidTextTextUtils_joinWithJavaLangCharSequence_withJavaLangIterable
Undefined symbol: AndroidUtilLog_dWithNSString_withNSString
It seems that some folders and headers are missing from the latest code
by using the "make -j8 dist" command, as compared to the j2objc-2.8.zip release.
The missing folders and headers are:
We had to move the public android.* classes out of the JRE (where they didn't belong) because the Java 9+ module system blocked them from there. These classes were moved into a libandroid_util.a library, which is no longer built and needs to be added back to the build.
As a workaround, try copying the missing headers from 2.8 into a separate directory, then copying the lib/libandroid_util.a file to that directory, and include that directory in your project's include and lib paths. These files haven't changed since 2.8.
As a workaround, try copying the missing headers from 2.8 into a separate directory, then copying the lib/libandroid_util.a file to that directory, and include that directory in your project's include and lib paths. These files haven't changed since 2.8.
Thanks.
it works in iphone after copying the 2.8.zip libandroid_util.a &
related directories into the project, add lib & header search paths,
But it cannot run in simulator because of [arm64](ld: symbol(s) not found for architecture arm64).
could it be resolved?
run project and get some errors related to android/text
Showing All Errors Only
Undefined symbol: AndroidTextTextUtils_isEmptyWithJavaLangCharSequence
Undefined symbol: AndroidTextTextUtils_joinWithJavaLangCharSequence_withJavaLangIterable
Undefined symbol: AndroidUtilLog_dWithNSString_withNSString
It seems that some folders and headers are missing from the latest code
by using the "make -j8 dist" command, as compared to the j2objc-2.8.zip release.
The missing folders and headers are:
/include/android/os
/include/android/test
/include/android/text
/include/android/util
I'm wondering if you could help me resolve this issue.
Thank you for your help.
The text was updated successfully, but these errors were encountered: