Skip to content

Commit 7fd9af5

Browse files
committed
Gradle and SDK updates
1 parent cf3da90 commit 7fd9af5

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v2.0.1
2+
- Fixed crash in writeToParcel on Android 5.0 with RTL language (#21).
3+
- Japenese translation improvements.
4+
15
# v2.0.0
26
- Changed package name to `com.maltaisn.calcdialoglib`.
37
- To change the dialog settings, `CalcDialog.getSettings()` must now be used.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ If you haven't migrated to AndroidX, use version 1.3.2. Versions 1.4.0 and up us
1717

1818
## Screenshots
1919
<img src="screenshots/demo2.gif" alt="Demo" width="400px"/> <img src="screenshots/currency.gif" alt="Errors" width="400px"/>
20-
(Screenshots date back to version 1.0.0)
20+
(Screenshots date back to version 2.0.0)
2121

2222
## Changelog
2323
View [changelog](/CHANGELOG.md)

app/build.gradle

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

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 29
55
defaultConfig {
66
applicationId "com.maltaisn.calcdialoglib"
77
minSdkVersion 16
8-
targetSdkVersion 28
8+
targetSdkVersion 29
99
versionCode 1
1010
versionName "1.0"
1111
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -16,13 +16,11 @@ android {
1616
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1717
}
1818
}
19-
buildToolsVersion '28.0.3'
19+
buildToolsVersion '29.0.2'
2020
}
2121

2222
dependencies {
2323
testImplementation 'junit:junit:4.12'
24-
androidTestImplementation 'androidx.test:runner:1.1.1'
25-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
2624

2725
implementation 'androidx.appcompat:appcompat:1.0.2'
2826
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
jcenter()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.3.2'
10+
classpath 'com.android.tools.build:gradle:3.5.0'
1111
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
1212
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1313

calcdialog/build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ ext {
1313
siteUrl = 'https://github.com/maltaisn/calcdialoglib'
1414
gitUrl = 'https://github.com/maltaisn/calcdialoglib.git'
1515

16-
libraryVersionCode = 12
17-
libraryVersion = '2.0.0'
16+
libraryVersionCode = 13
17+
libraryVersion = '2.0.1'
1818

1919
developerId = 'maltaisn'
2020

@@ -24,10 +24,10 @@ ext {
2424
}
2525

2626
android {
27-
compileSdkVersion 28
27+
compileSdkVersion 29
2828
defaultConfig {
2929
minSdkVersion 16
30-
targetSdkVersion 28
30+
targetSdkVersion 29
3131
versionCode libraryVersionCode
3232
versionName libraryVersion
3333

@@ -44,17 +44,17 @@ android {
4444
abortOnError false
4545
}
4646

47-
buildToolsVersion '28.0.3'
47+
buildToolsVersion '29.0.2'
4848
}
4949

50+
tasks.withType(Javadoc).all { enabled = false }
51+
5052
dependencies {
5153
testImplementation 'junit:junit:4.12'
52-
androidTestImplementation 'androidx.test:runner:1.1.1'
53-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
5454

5555
implementation 'androidx.appcompat:appcompat:1.0.2'
5656
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
5757
}
5858

5959
apply from: 'maven-install.gradle'
60-
apply from: 'bintray.gradle'
60+
apply from: 'bintray.gradle'

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-4.10.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.zip

0 commit comments

Comments
 (0)