最新的Estimote SDK捆绑到aar项目中,我无法将其作为外部库添加到我的自定义cordova插件中,它会复制aar文件并在project.proprties中创建gradle库,但在构建过程中失败因为它只是在我的插件java文件中找不到com.estimote.sdk包。
Beacon.java:40: error: package com.estimote does not exist
我到目前为止尝试的是添加这些参数的aar文件:
<framework src="libs/estimote.gradle" custom="true" type="gradleReference" />
<source-file src="libs/estimote-sdk-preview.aar" target-dir="libs" />
我也尝试过:
它会复制并准备一切,但它在构建过程中找不到库。
我在java文件中导入包时出错, HAS 为:
import com.estimote.sdk.*;