Skip to content

Commit ca1f078

Browse files
Update to jitpack.io
1 parent 7f9d9f0 commit ca1f078

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 22
4+
compileSdkVersion 23
55
buildToolsVersion '22.0.1'
66
defaultConfig {
77
applicationId 'com.devpaul.bluetoothutilitydemo'
88
minSdkVersion 14
9-
targetSdkVersion 22
9+
targetSdkVersion 23
1010
versionCode 5
1111
versionName '1.4'
1212
}

btutillib/build.gradle

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
4+
group = 'com.github.DeveloperPaul123'
25

36
repositories {
47
mavenCentral()
58
jcenter()
6-
maven { url 'https://dl.bintray.com/drummer-aidan/maven' }
9+
maven { url "https://jitpack.io" }
710
}
811

912
android {
10-
compileSdkVersion 22
11-
buildToolsVersion "22.0.0"
13+
compileSdkVersion 23
14+
buildToolsVersion "22.0.1"
1215

1316
defaultConfig {
1417
minSdkVersion 14
15-
targetSdkVersion 22
18+
targetSdkVersion 23
1619
versionName project.VERSION_NAME
1720
versionCode Integer.parseInt(project.VERSION_CODE)
1821
}
@@ -26,9 +29,9 @@ android {
2629

2730
dependencies {
2831
compile fileTree(include: ['*.jar'], dir: 'libs')
29-
compile 'com.android.support:support-v4:22.2.1'
30-
compile 'com.android.support:appcompat-v7:22.2.1'
31-
compile 'com.afollestad:material-dialogs:0.7.8.1'
32+
compile 'com.android.support:support-v4:23.0.1'
33+
compile 'com.android.support:appcompat-v7:23.0.1'
34+
compile('com.afollestad.material-dialogs:core:0.8.1.0@aar') {
35+
transitive = true
36+
}
3237
}
33-
34-
apply from: '../maven_push.gradle'

build.gradle

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ buildscript {
88
dependencies {
99
classpath 'com.android.tools.build:gradle:1.2.3'
1010
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
1112
// NOTE: Do not place your application dependencies here; they belong
1213
// in the individual module build.gradle files
1314
}
@@ -23,6 +24,7 @@ allprojects {
2324
repositories {
2425
mavenCentral()
2526
jcenter()
27+
maven {url "https://jitpack.io"}
2628
}
2729
}
2830

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip

0 commit comments

Comments
 (0)