我尝试导入library from github
我下载了ZIP并解压缩它。然后我导入了库;图书馆的gradle似乎有很多需要修复的错误。
apply plugin: 'com.android.library'
apply plugin: 'maven'
apply plugin: 'signing'
android {
compileSdkVersion Integer.parseInt(project.TARGET_SDK_VERSION)
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion MIN_SDK_VERSION
targetSdkVersion project.TARGET_SDK_VERSION
versionCode Integer.parseInt(project.VERSION_CODE)
versionName project.VERSION_NAME
}
buildTypes {
release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
minifyEnabled false
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
signing {
required { has("release") && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}
uploadArchives {
configuration = configurations.archives
repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: sonatypeRepo) {
authentication(userName: sonatypeUsername, password: sonatypePassword )
}
snapshotRepository(url: snapshotRepo) {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
pom.project {
name POM_NAME
description POM_DESC
packaging 'aar'
url POM_URL
scm {
url POM_SCM_URL
connection POM_SCM_CONN
developerConnection POM_SCM_DEV_CONN
}
licenses {
license {
name LICENCE_NAME
url LICENCE_URL
distribution 'repo'
}
}
developers {
developer {
id POM_DEV
name POM_DEV_NAME
}
}
}
}
}
我已将SDK_VERSION
替换为我的项目版本,但仍然存在很多错误&我不知道如何修复它们。
答案 0 :(得分:2)
直接在build.gradle中添加依赖项,无需下载jar文件并导入它。
dependencies {
compile 'com.lorentzos.swipecards:library:X.X.X@aar'
}
他们已经直接在你的项目中使用它了,那你为什么要下载jar文件?
如果您不想要aar文件,他们还提供了导入maven文件的链接
dependencies {
compile 'com.lorentzos.swipecards:library:1.0.9'
}
继续在Gradle please牛仔上找到最新版本!务必 添加@aar后缀。
答案 1 :(得分:0)
你不必困扰自己。没有必要放jar文件。
只需在应用级别的依赖关系中添加以下行 build.gradle
:
compile 'com.lorentzos.swipecards:library:1.0.9'
它会正常工作。
P.S。您可以查看最新版本Here.