build.gradle上的JTS拓扑套件1.15.0

时间:2017-09-27 12:28:08

标签: android maven android-studio build.gradle jts

我想在我的Android Studio项目中使用JTS拓扑套件1.15.0。我之前从生动解决方案中使用了1.13。现在我无法找到1.15.0的build.gradle代码。它的Maven代码就像this

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

所以在我的gradle中我写了

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

但是它无法解决这个问题。我做错了什么?

1 个答案:

答案 0 :(得分:1)

尝试使用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'