diff --git a/build.gradle b/build.gradle index 6ce06a6..c503665 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.1' + classpath 'com.android.tools.build:gradle:2.2.2' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/sample/build.gradle b/sample/build.gradle index 11d70a3..5479e1d 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -17,13 +17,13 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 24 + compileSdkVersion 25 buildToolsVersion "24.0.3" defaultConfig { applicationId "com.github.nisrulz.senseysample" minSdkVersion 9 - targetSdkVersion 24 + targetSdkVersion 25 versionCode 1 versionName "1.0" jackOptions { @@ -41,10 +41,10 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:24.2.1' + compile 'com.android.support:appcompat-v7:25.0.0' - // compile 'com.github.nisrulz:sensey:1.4.1' + // compile 'com.github.nisrulz:sensey:1.5.0' // Module Dependency - compile project(':sensey') + compile project(':sensey') } diff --git a/sensey/build.gradle b/sensey/build.gradle index 6b08e7a..0294cde 100644 --- a/sensey/build.gradle +++ b/sensey/build.gradle @@ -17,14 +17,14 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 24 + compileSdkVersion 25 buildToolsVersion '24.0.3' defaultConfig { minSdkVersion 9 - targetSdkVersion 24 - versionCode 9 - versionName '1.5.0' + targetSdkVersion 25 + versionCode 10 + versionName VERSION_NAME } buildTypes { debug { @@ -46,13 +46,14 @@ dependencies { testCompile 'org.mockito:mockito-core:2.1.0' testCompile "org.robolectric:robolectric:3.1.2" - compile 'com.android.support:support-compat:24.2.1' + compile 'com.android.support:support-compat:25.0.0' } - // Bintray info def LIB_MODULE_NAME = 'sensey' def LIB_MODULE_DESC = 'Android library which makes detecting gestures a breeze' +def GITHUB_LINK = "https://github.com/nisrulz/sensey" +def GITHUB_REPO = "nisrulz/sensey" ext { bintrayRepo = 'maven' @@ -65,9 +66,9 @@ ext { libraryDescription = LIB_MODULE_DESC // Your github repo link - siteUrl = POM_URL - gitUrl = POM_GIT_URL - githubRepository = LIB_GITHUB_REPO + siteUrl = GITHUB_LINK + gitUrl = GITHUB_LINK + ".git" + githubRepository = GITHUB_REPO libraryVersion = VERSION_NAME @@ -82,5 +83,4 @@ ext { // Place it at the end of the file apply from: 'https://raw.githubusercontent.com/nisrulz/JCenter/master/installv1.gradle' -apply from: 'https://raw.githubusercontent.com/nisrulz/JCenter/master/bintrayv1.gradle' - +apply from: 'https://raw.githubusercontent.com/nisrulz/JCenter/master/bintrayv1.gradle' \ No newline at end of file