Skip to content

Commit

Permalink
updating libs and gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill.penzykov committed Feb 1, 2016
1 parent 2e44ffa commit 8a28f5c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.5.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 5 additions & 6 deletions lib/build.gradle
Original file line number Diff line number Diff line change
@@ -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
}
Expand All @@ -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'

0 comments on commit 8a28f5c

Please sign in to comment.