アンドロイドスタジオで "eneim/Toro"をインポートしようとしていますが、エラーが発生するたびにエラーが表示されます:com.jfrog.bintray.gradleでプロパティ 'bintray_user'を見つけることができませんでした。 BintrayExtension_Decorated @ 39913ada。Android Studioのeneim/Toroライブラリをインポートする
build.gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.novoda:bintray-release:0.3.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
apply plugin: 'bintray-release'
}
ext {
libraryVersion = '2.0.0'
androidVersion = 24
buildToolVersion = '24.0.0'
supportLibraryVersion = '24.0.0'
minSupportSDKVersion = 16
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
maven {
url "https://jcenter.bintray.com"
}
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
configurations {
javadocDeps
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
編集した質問のbuild.gradleを追加しました – Shahbaz