Skip to content

Commit f8c9913

Browse files
committed
Update support dependancy and SDK target
1 parent ca68763 commit f8c9913

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
22
apply plugin: 'com.neenbedankt.android-apt'
33

44
android {
5-
compileSdkVersion 22
6-
buildToolsVersion "23.0.0"
5+
compileSdkVersion 23
6+
buildToolsVersion "23.0.1"
77
publishNonDefault true
88

99
defaultConfig {
1010
applicationId "com.hitherejoe.androidboilerplate"
1111
minSdkVersion 16
12-
targetSdkVersion 22
12+
targetSdkVersion 23
1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414
versionCode 1
1515
versionName "1.0"
@@ -37,14 +37,14 @@ android {
3737
}
3838

3939
dependencies {
40-
final SUPPORT_LIBRARY_VERSION = '22.2.1'
40+
final SUPPORT_LIBRARY_VERSION = '23.0.1'
4141
final DAGGER_VERSION = '2.0.1'
4242
final HAMCREST_VERSION = '1.3'
4343
final MOCKITO_VERSION = '1.10.19'
4444

4545
compile fileTree(dir: 'libs', include: ['*.jar'])
4646

47-
compile 'com.android.support:support-v4:22.2.1'
47+
compile "com.android.support:support-v4:$SUPPORT_LIBRARY_VERSION"
4848
compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
4949
compile "com.android.support:cardview-v7:$SUPPORT_LIBRARY_VERSION"
5050
compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"

module-test-only/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ apply plugin: 'com.android.test'
22
apply plugin: 'com.neenbedankt.android-apt'
33

44
android {
5-
compileSdkVersion 22
6-
buildToolsVersion "23.0.0"
5+
compileSdkVersion 23
6+
buildToolsVersion "23.0.1"
77

88
defaultConfig {
99
testApplicationId 'com.hitherejoe.androidboilerplate.test'
1010
// The Instrumentation test runner used to run tests.
1111
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
1212
minSdkVersion 16
13-
targetSdkVersion 22
13+
targetSdkVersion 23
1414
}
1515

1616
lintOptions {
@@ -21,14 +21,14 @@ android {
2121
}
2222

2323
dependencies {
24-
final SUPPORT_LIBRARY_VERSION = '22.2.1'
24+
final SUPPORT_LIBRARY_VERSION = '23.0.1'
2525
final DAGGER_VERSION = '2.0.1'
2626
final DEXMAKER_VERSION = '1.2'
2727
final MOCKITO_VERSION = '1.10.19'
2828
final ESPRESSO_VERSION = '2.2'
2929

3030
compile fileTree(dir: 'libs', include: ['*.jar'])
31-
compile 'com.android.support:appcompat-v7:22.2.1'
31+
compile "com.android.support:appcompat-v7:$SUPPORT_LIBRARY_VERSION"
3232

3333
compile "com.google.dagger:dagger:$DAGGER_VERSION"
3434
apt "com.google.dagger:dagger-compiler:$DAGGER_VERSION"

0 commit comments

Comments
 (0)