Skip to content
This repository was archived by the owner on Feb 19, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions Application/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ repositories {
jcenter()
google()
}
ext{
supportLibVersion = '28.0.0'
}

dependencies {
compile "com.android.support:support-v4:27.0.2"
compile "com.android.support:support-v13:27.0.2"
compile "com.android.support:cardview-v7:27.0.2"
compile "com.android.support:appcompat-v7:27.0.2"
compile 'com.android.support:recyclerview-v7:+'
compile 'com.android.support:appcompat-v7:21.+'
implementation "com.android.support:support-v4:$supportLibVersion"
implementation "com.android.support:support-v13:$supportLibVersion"
implementation "com.android.support:cardview-v7:$supportLibVersion"
implementation "com.android.support:appcompat-v7:$supportLibVersion"
implementation "com.android.support:recyclerview-v7:$supportLibVersion"
implementation "com.android.support:appcompat-v7:$supportLibVersion"
}

// The sample build uses multiple directories to
Expand All @@ -35,13 +38,13 @@ List<String> dirs = [
'template'] // boilerplate code that is generated by the sample template process

android {
compileSdkVersion 27
compileSdkVersion 28

buildToolsVersion "27.0.2"
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 21
targetSdkVersion 27
targetSdkVersion 28
}

compileOptions {
Expand Down