名称在安卓 gradle 中不得为空

  • 本文关键字:gradle android gradle null
  • 更新时间 :
  • 英文 :


我是刚开始在安卓工作室安装库的新手,我遇到了麻烦。尝试设置依赖项时,我不断收到错误,名称不得为空。我正在尝试安装此库。

这是build.gradle代码。

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.example.webbj.imageeditor"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
configurations{
compile
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
//compile 'com.isseiaoki:simplecropview:1.1.5'
**compile group: "com.isseiaoki", module: "simplecropview", version: "1.1.5"**
testCompile 'junit:junit:4.12'
compile project(':libraries:SimpleCropView')

错误发生在被星星包围的线上。 我真的很感激有人帮助我解决这个问题。

添加此行而不是该行。

compile 'com.isseiaoki:simplecropview:1.1.5'

对于仍然遇到此错误的人:

在"依赖项"下添加:

implementation project("com.isseiaoki:simplecropview:1.1.5")

在我的情况下,内部模块中有"-"特殊字符...我更改了模块名称,它已修复!

相关内容

  • 没有找到相关文章

最新更新