我创建了我的第一个 android 库并将其发布到 GitHub。
现在一个想让其他人能够使用它。
所以访问了 gitpack.io 并按照那里的步骤进行操作。
问题是,我的 Gradle 同步在我想使用我的 lib 的项目中失败,并且 JitPack 日志说关于缺少 maven 插件但构建成功的警告。
这是我的 jitpack 日志 https://jitpack.io/com/github/ludev-studio/colorpicker-android/v1.0.0/build.log
和我的库 build.gradle (模块)
apply plugin: 'com.android.library'
apply plugin: 'maven'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:support-core-utils:28.0.0"
implementation 'com.android.support:appcompat-v7:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso- core:3.0.2'
}
我希望你能帮帮我!