Skip to content

Commit 0964c16

Browse files
author
Ali Muzaffar
committed
Update gradle plugin version, update project to use Android API 24
1 parent 9da4a0f commit 0964c16

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ details. Read more about
2828
### Gradle
2929

3030
dependencies {
31-
compile 'com.alimuzaffar.lib:pinentryedittext:1.0'
31+
compile 'com.alimuzaffar.lib:pinentryedittext:1.1'
3232
}
3333

3434
## STEP-2

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.1.0'
8+
classpath 'com.android.tools.build:gradle:2.1.2'
99
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
1111

pinentryedittext/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ext {
1212
siteUrl = 'https://github.com/alphamu/PinEntryEditText'
1313
gitUrl = 'https://github.com/alphamu/PinEntryEditText.git'
1414

15-
libraryVersion = '1.0'
15+
libraryVersion = '1.1'
1616

1717
developerId = 'alphamu'
1818
developerName = 'Ali Muzaffar'
@@ -24,14 +24,14 @@ ext {
2424
}
2525

2626
android {
27-
compileSdkVersion 23
28-
buildToolsVersion "23.0.3"
27+
compileSdkVersion 24
28+
buildToolsVersion "24"
2929

3030
defaultConfig {
3131
minSdkVersion 11
32-
targetSdkVersion 23
32+
targetSdkVersion 24
3333
versionCode 1
34-
versionName '1.0'
34+
versionName '1.1'
3535
}
3636
buildTypes {
3737
release {
@@ -47,7 +47,7 @@ android {
4747
dependencies {
4848
compile fileTree(dir: 'libs', include: ['*.jar'])
4949
testCompile 'junit:junit:4.12'
50-
compile 'com.android.support:appcompat-v7:23.4.0'
50+
compile 'com.android.support:appcompat-v7:24.0.0'
5151
}
5252

5353
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'

sample-app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.3"
4+
compileSdkVersion 24
5+
buildToolsVersion "24"
66

77
defaultConfig {
88
applicationId "com.alimuzaffar.sample.pin"
99
minSdkVersion 11
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 1
12-
versionName "1.0"
12+
versionName "1.1"
1313
}
1414
buildTypes {
1515
release {
@@ -25,6 +25,6 @@ android {
2525
dependencies {
2626
compile fileTree(include: ['*.jar, *.aar'], dir: 'libs')
2727
testCompile 'junit:junit:4.12'
28-
compile 'com.android.support:appcompat-v7:23.4.0'
28+
compile 'com.android.support:appcompat-v7:24.0.0'
2929
compile project(':pinentryedittext')
3030
}

0 commit comments

Comments
 (0)