Skip to content

Commit

Permalink
Adjusted old supportLibraryVersion variable to const format
Browse files Browse the repository at this point in the history
  • Loading branch information
andrehtissot authored Mar 29, 2020
1 parent 0f72ce1 commit 9b4beab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions android/lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

// Android supported libraries
api "com.android.support:appcompat-v7:${rootProject.ext.supportLibraryVersion}"
api "com.android.support:design:${rootProject.ext.supportLibraryVersion}"
api "com.android.support:customtabs:${rootProject.ext.supportLibraryVersion}"
api "com.android.support:support-media-compat:${rootProject.ext.supportLibraryVersion}"
api "com.android.support:support-v4:${rootProject.ext.supportLibraryVersion}"
api "com.android.support:appcompat-v7:${rootProject.ext.SUPPORT_LIBRARY_VERSION}"
api "com.android.support:design:${rootProject.ext.SUPPORT_LIBRARY_VERSION}"
api "com.android.support:customtabs:${rootProject.ext.SUPPORT_LIBRARY_VERSION}"
api "com.android.support:support-media-compat:${rootProject.ext.SUPPORT_LIBRARY_VERSION}"
api "com.android.support:support-v4:${rootProject.ext.SUPPORT_LIBRARY_VERSION}"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.7.22'
testImplementation 'org.robolectric:robolectric:4.2'
Expand Down

0 comments on commit 9b4beab

Please sign in to comment.