From 8a28f5cff56a3429d4880978f124e81b00b5aa50 Mon Sep 17 00:00:00 2001 From: "kirill.penzykov" Date: Mon, 1 Feb 2016 12:28:54 +0200 Subject: [PATCH] updating libs and gradle --- README.md | 5 +++++ app/build.gradle | 6 +++--- build.gradle | 2 +- gradle.properties | 4 ++-- lib/build.gradle | 11 +++++------ 5 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 6f1ad3a..091ade7 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,11 @@ To stay `Context Menu` below Status Bar set `fitSystemWindows` to true and `clip # Changelog +### Version: 1.0.6 + + * com.android.tools.build:gradle:1.5.0 + * Support libs and sdk updated to 23 + ### Version: 1.0.4 * Old `ContextMenuDialogFragment` `newInstance` methods are deprecated. Use new universal one that received `MenuParams`. diff --git a/app/build.gradle b/app/build.gradle index 5b47da3..cdf1964 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,13 +1,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 22 - buildToolsVersion "21.1.2" + compileSdkVersion 23 + buildToolsVersion "23.0.2" defaultConfig { applicationId "com.yalantis.contextmenu.sample" minSdkVersion 11 - targetSdkVersion 22 + targetSdkVersion 23 versionCode Integer.parseInt(project.VERSION_CODE) versionName VERSION_NAME } diff --git a/build.gradle b/build.gradle index f4ab8f0..5ee8e61 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:1.2.3' + classpath 'com.android.tools.build:gradle:1.5.0' } } diff --git a/gradle.properties b/gradle.properties index 56eb563..4d157fa 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=1.0.5 -VERSION_CODE=6 +VERSION_NAME=1.0.6 +VERSION_CODE=7 GROUP=com.yalantis POM_DESCRIPTION=Android Library to display awesome context menu diff --git a/lib/build.gradle b/lib/build.gradle index 5666285..694011a 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -1,12 +1,13 @@ apply plugin: 'com.android.library' +apply from: '../mavenpush.gradle' android { - compileSdkVersion 22 - buildToolsVersion "21.1.2" + compileSdkVersion 23 + buildToolsVersion "23.0.2" defaultConfig { minSdkVersion 11 - targetSdkVersion 22 + targetSdkVersion 23 versionCode Integer.parseInt(project.VERSION_CODE) versionName VERSION_NAME } @@ -19,8 +20,6 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:22.1.1' + compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.nineoldandroids:library:2.4.0' } - -apply from: '../mavenpush.gradle' \ No newline at end of file