删除aar包,改为用gradle的方式导入依赖

This commit is contained in:
cirno-poi
2018-09-10 15:38:44 +08:00
parent 39ff9b08b3
commit e970bfc0f7
2 changed files with 6 additions and 2 deletions

View File

@@ -26,11 +26,15 @@ android {
}
}
}
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation(name:'verifyedittextlibrary-release',ext:'aar')
implementation 'com.github.cirno-poi:VerifyEditText:1.0.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'