在 Mac OSX 上使用 IntelliJ 处理 ormlite 时出现问题

发布于 2025-01-01 20:27:29 字数 585 浏览 1 评论 0原文

我正在 Intellij IDEA 上加载 Ubuntu 的笔记本中开发一个带有 sqlite 数据库的 Android 应用程序,并使用 ormlite 进行数据库映射。我在 libs 目录中安装了 ormlite-android-4.23.jarormlite-core-4-1.31.jarormlite-4.23.jar项目文件夹的。我不确定这里使用的是哪个版本。应用程序正在运行,我尝试使用我的 Macbook 继续我的应用程序开发。我是 Macbook 新手。它装载了 Mac OS X 版本 10.5.8。该应用程序未运行。

以下是Intellij用红色表示的,其消息为:

cannot resolve

import com.j256.ormlite.android.apptools.OrmLiteBaseActivity中的j256,以及其他与ormlite相关的地方。

我是开发此类应用程序的新手,有人可以帮助我吗?我在类似的问题中指出答案是下载 ormlite 版本 4.20。我需要确切地知道文件名以及应该保存在哪里。

I am developing an Android application with a sqlite database in an Ubuntu loaded notebook on Intellij IDEA and using database mapping using ormlite. I installed ormlite-android-4.23.jar, ormlite-core-4-1.31.jar, and ormlite-4.23.jar in libs directory of the project folder. I was not sure which version is used here. The application was running and I tried to use my Macbook to proceed with my app development. I am new to Macbook. It is loaded with Mac OS X version 10.5.8. The app is not running.

The following are indicated in red by Intellij and its message is:

cannot resolve

j256 in import com.j256.ormlite.android.apptools.OrmLiteBaseActivity, and other places related ormlite.

I am new to developing this kind of applications and can anybody help me? I noted in a similar question the answer was downloading ormlite version 4.20. I need to know exactly the name of file and where should be saved this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗藏城府 2025-01-08 20:27:29

您很可能需要 2 个文件:

  • ormlite-core-4.33.jar
  • ormlite-android-4.33.jar

将这些文件放在项目的任何目录中(而 libs 是为原生 .so 库设计的,许多开发人员将其用于 jar 库,因此您可以使用它)。然后在 IntelliJ IDEA 中配置一个库,并将其添加到依赖项中。 你的模块。

Most likely you need 2 files:

  • ormlite-core-4.33.jar
  • ormlite-android-4.33.jar

Place these files in any directory of your project (while libs is designed for native .so libraries, many developers use it for jar libraries so you can use it). Then configure a library in IntelliJ IDEA and add it to the dependencies of your module.

两仪 2025-01-08 20:27:29

您还可以将其添加到您的依赖项中:

compile group: 'com.j256.ormlite', name: 'ormlite-core', version: '4.33'
compile group: 'com.j256.ormlite', name: 'ormlite-android', version: '4.33'

You also can add it to your dependencies:

compile group: 'com.j256.ormlite', name: 'ormlite-core', version: '4.33'
compile group: 'com.j256.ormlite', name: 'ormlite-android', version: '4.33'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文