我找不到三点工作。以下是我所做的:
在app build.gradle中导入依赖项implementation 'com.jakewharton.threetenabp:threetenabp:1.2.1'
在myapplication.oncreate()中初始化库AndroidThreeTen.init(this)
将myapplication添加到清单<application android:name=".MyApplication" ...>
使用Instant解析字符串Instant.parse(updatedOn)
Instant
的唯一可能导入是java.time.Instant
。但这在android api 26之前是不可用的,这就是为什么我想首先使用threetenabp的原因。
我发现了一些使用importorg.threeten.bp.Instant
的示例,但是在我的案例中找不到这个import/package。
我已经做了臭名昭著的“使缓存失效并重新启动”,但没有效果。我还缺什么吗??
最佳答案
好吧,抱歉,你们浪费时间了。我在错误的应用程序模块中添加依赖项。现在一切都正常了。
关于android - 如何设置和使用ThreeTenABP库,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57598665/