diff --git a/build.gradle b/build.gradle index 5c09808b6..4b836064a 100644 --- a/build.gradle +++ b/build.gradle @@ -33,8 +33,8 @@ subprojects { ext { minSdkVersion = 15 - targetSdkVersion = 25 - compileSdkVersion = 27 + targetSdkVersion = 28 + compileSdkVersion = 28 buildToolsVersion = '28.0.3' sourceCompatibilityVersion = JavaVersion.VERSION_1_7 targetCompatibilityVersion = JavaVersion.VERSION_1_7 @@ -42,13 +42,13 @@ ext { ext.deps = [ // Android support - supportAnnotations : 'com.android.support:support-annotations:27.1.1', - supportAppCompat : 'com.android.support:appcompat-v7:27.1.1', - supportCoreUi : 'com.android.support:support-core-ui:27.1.1', - supportRecyclerView: 'com.android.support:recyclerview-v7:27.1.1', + supportAnnotations : "com.android.support:support-annotations:$ANDROID_SUPPORT_VERSION", + supportAppCompat : "com.android.support:appcompat-v7:$ANDROID_SUPPORT_VERSION", + supportCoreUi : "com.android.support:support-core-ui:$ANDROID_SUPPORT_VERSION", + supportRecyclerView: "com.android.support:recyclerview-v7:$ANDROID_SUPPORT_VERSION", supportConstraintLayout: 'com.android.support.constraint:constraint-layout:1.1.0', supportEspresso : 'com.android.support.test.espresso:espresso-core:2.2.2', - supportDesign : 'com.android.support:design:27.1.1', + supportDesign : "com.android.support:design:$ANDROID_SUPPORT_VERSION", supportEspressoIntents : 'com.android.support.test.espresso:espresso-intents:2.2.2', supportTestRunner : 'com.android.support.test:runner:1.0.2', // Arch diff --git a/gradle.properties b/gradle.properties index 0099ae917..3275ffafa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,6 +13,7 @@ POM_DEVELOPER_NAME=facebook # Shared version numbers LITHO_VERSION=0.24.0 +ANDROID_SUPPORT_VERSION=28.0.0 # Gradle internals org.gradle.internal.repository.max.retries=10