Skip to content
Snippets Groups Projects
Commit 5902cde0 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Removed unnecessarily specific dependency definitions

parent cd97744d
Branches
Tags
No related merge requests found
...@@ -68,55 +68,30 @@ val appArchVersion = "1.0.0-alpha9-1" ...@@ -68,55 +68,30 @@ val appArchVersion = "1.0.0-alpha9-1"
dependencies { dependencies {
implementation(kotlin("stdlib")) implementation(kotlin("stdlib"))
implementation(appCompat("support-v4")) {
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation(appCompat("appcompat-v7")) {
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation(appCompat("design")) { implementation(appCompat("design")) {
exclude(group = "com.android.support", module = "support-media-compat") exclude(group = "com.android.support", module = "support-media-compat")
} }
implementation(appCompat("customtabs")) { implementation(appCompat("customtabs"))
exclude(group = "com.android.support", module = "support-media-compat") implementation(appCompat("cardview-v7"))
} implementation(appCompat("recyclerview-v7"))
implementation(appCompat("cardview-v7")) {
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation(appCompat("recyclerview-v7")) {
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation(appArch("lifecycle", "runtime", version = "1.0.0")) { implementation(appArch("lifecycle", "runtime", version = "1.0.0"))
exclude(group = "com.android.support", module = "support-media-compat") implementation(appArch("lifecycle", "extensions"))
}
implementation(appArch("lifecycle", "extensions")) {
exclude(group = "com.android.support", module = "support-media-compat")
}
kapt(appArch("lifecycle", "compiler")) kapt(appArch("lifecycle", "compiler"))
implementation(appArch("persistence.room", "runtime")) { implementation(appArch("persistence.room", "runtime"))
exclude(group = "com.android.support", module = "support-media-compat")
}
kapt(appArch("persistence.room", "compiler")) kapt(appArch("persistence.room", "compiler"))
implementation(appArch("paging", "runtime", version = "1.0.0-alpha1")) { implementation(appArch("paging", "runtime", version = "1.0.0-alpha1"))
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation("org.threeten:threetenbp:1.3.6") { implementation("org.threeten:threetenbp:1.3.6")
exclude(group = "com.android.support", module = "support-media-compat")
}
implementation("com.jakewharton:butterknife:8.7.0") { implementation("com.jakewharton:butterknife:8.7.0")
exclude(group = "com.android.support", module = "support-media-compat")
}
kapt("com.jakewharton:butterknife-compiler:8.7.0") kapt("com.jakewharton:butterknife-compiler:8.7.0")
implementation("com.faendir:acra:4.10.0") { implementation("com.faendir:acra:4.10.0") {
exclude(group = "com.android.support", module = "support-media-compat") exclude(group = "com.android.support", module = "support-media-compat")
} }
implementation(project(":lib")) implementation(project(":lib"))
implementation(project(":invokerannotations")) implementation(project(":invokerannotations"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment