Skip to content
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.

set android support versions to binary equivalent androidx versions. #745

Merged
merged 2 commits into from Mar 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions java/build.gradle
Expand Up @@ -26,8 +26,8 @@ subprojects{
afterEvaluate {project ->
if(project.hasProperty("dependencies")){
dependencies {
implementation "com.android.support:appcompat-v7:$andSupportLibVersion"
implementation "com.android.support:design:$andSupportLibVersion"
implementation "androidx.appcompat:appcompat:$andSupportLibVersion"
implementation "com.google.android.material:material:$andSupportLibVersion"
implementation "com.esri.arcgisruntime:arcgis-android:$arcgisVersion"
implementation "androidx.multidex:multidex:$multidexVersion"
}
Expand Down
2 changes: 1 addition & 1 deletion kotlin/build.gradle
Expand Up @@ -26,7 +26,7 @@ subprojects {
afterEvaluate { project ->
if (project.hasProperty("dependencies")) {
dependencies {
implementation "com.android.support:appcompat-v7:$andSupportLibVersion"
implementation "androidx.appcompat:appcompat:$andSupportLibVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "com.esri.arcgisruntime:arcgis-android:$arcgisVersion"
implementation "androidx.multidex:multidex:$multidexVersion"
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Expand Up @@ -8,7 +8,7 @@ ext {
// library versions
kotlinVersion = '1.3.61'
ankoVersion = '0.10.8'
andSupportLibVersion = '28.0.0'
andSupportLibVersion = '1.0.0'
constraintLayoutVersion = '1.1.3'
multidexVersion = "2.0.1"
arcgisVersion = '100.7.0'
Expand Down