Commit cda95041 by Karthik Ponnam Committed by GitHub

Merge pull request #48 from crazecoder/master

Cannot build because of dependency w/ v28 #47
parents f3668906 bde3f843
...@@ -22,7 +22,7 @@ rootProject.allprojects { ...@@ -22,7 +22,7 @@ rootProject.allprojects {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 28 compileSdkVersion 27
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
...@@ -31,8 +31,26 @@ android { ...@@ -31,8 +31,26 @@ android {
lintOptions { lintOptions {
disable 'InvalidPackage' disable 'InvalidPackage'
} }
configurations.all {
resolutionStrategy.force "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0-rc01"
resolutionStrategy.force "androidx.arch.core:core-runtime:2.0.0-rc01"
resolutionStrategy.force "androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01"
resolutionStrategy.force "androidx.documentfile:documentfile:1.0.0-rc01"
resolutionStrategy.force "androidx.fragment:fragment:1.0.0-rc01"
resolutionStrategy.force "androidx.customview:customview:1.0.0-rc01"
resolutionStrategy.force "androidx.asynclayoutinflater:asynclayoutinflater:1.0.0-rc01"
resolutionStrategy.force "androidx.legacy:legacy-support-core-utils:1.0.0-rc01"
resolutionStrategy.force "androidx.interpolator:interpolator:1.0.0-rc01"
resolutionStrategy.force "androidx.core:core:1.0.0-rc01"
resolutionStrategy.force "androidx.viewpager:viewpager:1.0.0-rc01"
resolutionStrategy.force "androidx.drawerlayout:drawerlayout:1.0.0-rc01"
resolutionStrategy.force "androidx.legacy:legacy-support-core-ui:1.0.0-rc01"
resolutionStrategy.force "androidx.cursoradapter:cursoradapter:1.0.0-rc01"
resolutionStrategy.force "androidx.loader:loader:1.0.0-rc01"
}
} }
dependencies { dependencies {
implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.appcompat:appcompat:1.0.2'
} }
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
\ No newline at end of file
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