diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-10-27 10:59:55 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-27 10:59:55 -0700 |
| commit | 5d449c00e63e9e4dceeda1bca385b6831de12e0f (patch) | |
| tree | b9e45f31ca20ae5912f1542a22db0eeea3231fe2 /Source/Android/app | |
| parent | 802fda26ab0959f92327a37fac966d728c8dcc5f (diff) | |
| parent | cf57e909863634311610ab26125560d854d4636f (diff) | |
Merge pull request #6145 from gwicks/android-buildupdate
Android: Update gradle version to 4.1 and plugin to 3.0
Diffstat (limited to 'Source/Android/app')
| -rw-r--r-- | Source/Android/app/build.gradle | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/Android/app/build.gradle b/Source/Android/app/build.gradle index ae502037b1..3dc43ee8b0 100644 --- a/Source/Android/app/build.gradle +++ b/Source/Android/app/build.gradle @@ -75,22 +75,22 @@ ext { } dependencies { - compile "com.android.support:support-v13:$androidSupportVersion" - compile "com.android.support:cardview-v7:$androidSupportVersion" - compile "com.android.support:recyclerview-v7:$androidSupportVersion" - compile "com.android.support:design:$androidSupportVersion" + api "com.android.support:support-v13:$androidSupportVersion" + api "com.android.support:cardview-v7:$androidSupportVersion" + api "com.android.support:recyclerview-v7:$androidSupportVersion" + api "com.android.support:design:$androidSupportVersion" // Android TV UI libraries. - compile "com.android.support:leanback-v17:$androidSupportVersion" + api "com.android.support:leanback-v17:$androidSupportVersion" // For showing the banner as a circle a-la Material Design Guidelines - compile 'de.hdodenhof:circleimageview:2.1.0' + api 'de.hdodenhof:circleimageview:2.1.0' // For loading huge screenshots from the disk. - compile 'com.squareup.picasso:picasso:2.5.2' + api 'com.squareup.picasso:picasso:2.5.2' // Allows FRP-style asynchronous operations in Android. - compile 'io.reactivex:rxandroid:1.2.1' + api 'io.reactivex:rxandroid:1.2.1' } def getVersion() { |
