J2ObjC - Android 库
J2ObjC - Android Libraries
我正在尝试使用 J2ObjC 将我的 Android 项目转换为 Objective C 项目。到目前为止,我设法转换了所有未使用任何库的文件。但是,每个使用库的 class 都会收到错误。例如:error: package android.location does not exist
。
在文档中指出您不能转换 J2ObjC 中的 UI 元素。但是 android.location
包不包含 UI 元素(据我所知)。有没有办法转换这些 classes 呢?还是只能转换不使用库的代码?
如果您需要更多信息,请告诉我。
提前致谢:)
j2objc 支持Java runtime API (JRE), and only a very small subset of the Android API。
j2objc 没有计划支持 android.location API, since its package description states that its use is no longer recommended. For a cross-platform app, I suggest defining a minimum interface to meet your app's specific location needs, then implement that interface for each platform using the Google Places API 库。
我正在尝试使用 J2ObjC 将我的 Android 项目转换为 Objective C 项目。到目前为止,我设法转换了所有未使用任何库的文件。但是,每个使用库的 class 都会收到错误。例如:error: package android.location does not exist
。
在文档中指出您不能转换 J2ObjC 中的 UI 元素。但是 android.location
包不包含 UI 元素(据我所知)。有没有办法转换这些 classes 呢?还是只能转换不使用库的代码?
如果您需要更多信息,请告诉我。
提前致谢:)
j2objc 支持Java runtime API (JRE), and only a very small subset of the Android API。
j2objc 没有计划支持 android.location API, since its package description states that its use is no longer recommended. For a cross-platform app, I suggest defining a minimum interface to meet your app's specific location needs, then implement that interface for each platform using the Google Places API 库。