我正在尝试导出我的apk,但我收到以下一个构建错误:
我在build.gradle依赖项中添加了from collections import Counter
length = len(mystring)
counts = Counter(mystring[i:j] for i in range(length) for j in range(i, length))
print(max(counts, key=lambda x: (counts[x] >= 2, len(x))))
,在defaultConfig中启用了multidex,并在我的Android Manifest文件中添加了compile 'com.android.support:multidex:1.0.1'
但仍然收到错误。
===============================
我的build.gradle可以在这里找到: http://pastie.org/10902207
================================
发生了什么事?谁能给我一些见解,为什么我收到这个?
答案 0 :(得分:2)
我想你遇到的问题是因为你没有在Build.gradle中定义了minSDK。您尝试使用的库是minSDKVersion 4.
如果未指定minSDKVersion,则项目将自动默认为版本1.尝试将以下内容添加到build.gradle文件中。
android{
compiledSdkVersion 23 //marshmallow
buildToolsVersion "23.0.0"
defaultConfig {
minSdkVersion 11 //honeycomb
targetSdkVersion 23
}
}