我想在我的Android Studio项目中使用JTS拓扑套件1.15.0。我以前从vividsolutions使用1.13。现在我找不到1.15.0的build.gradle代码。它的Maven代码类似于this

<dependency>
    <groupId>org.locationtech.jts</groupId>
    <artifactId>jts-core</artifactId>
    <version>${jts.version}</version>
</dependency>


所以我在毕业典礼上写道

compile group: 'org.locationtech.jts', name: 'jts-core', version: '1.15'


但是它无法解决该程序包。我究竟做错了什么?

最佳答案

尝试使用version: '1.15.0'。实际的下载位置是https://jcenter.bintray.com/org/locationtech/jts/jts-core/1.15.0/,因此您需要在版本号中添加.0。

在Gradle 3中为:implementation 'org.locationtech.jts:jts-core:1.15.0'

09-25 20:16