Commit 4c2adee9 authored by Mygod's avatar Mygod

Make plugin library depend on minimum version instead

parent 583025e0
......@@ -70,6 +70,10 @@ dependencies {
api(project(":plugin"))
api("androidx.core:core-ktx:1.6.0-alpha03")
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
api("androidx.drawerlayout:drawerlayout:1.1.1")
api("androidx.fragment:fragment-ktx:1.3.2")
api("com.google.android.material:material:1.3.0")
api("androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion")
api("androidx.lifecycle:lifecycle-livedata-core-ktx:$lifecycleVersion")
......
......@@ -12,6 +12,8 @@ android {
versionCode = findProperty("VERSION_CODE").toString().toInt()
versionName = findProperty("VERSION_NAME").toString()
}
lintOptions.informational("GradleDependency")
}
mavenPublish.targets.getByName("uploadArchives") {
......@@ -23,9 +25,7 @@ mavenPublish.targets.getByName("uploadArchives") {
dependencies {
api(kotlin("stdlib-jdk8"))
api("androidx.core:core-ktx:1.3.2")
// https://android-developers.googleblog.com/2019/07/android-q-beta-5-update.html
api("androidx.drawerlayout:drawerlayout:1.1.1")
api("androidx.fragment:fragment-ktx:1.3.2")
api("com.google.android.material:material:1.3.0")
api("androidx.core:core-ktx:1.0.0")
api("androidx.fragment:fragment-ktx:1.3.0")
api("com.google.android.material:material:1.1.0")
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment