Skip to content

Commit

Permalink
Prepare for 1.2.2.210416 (9)
Browse files Browse the repository at this point in the history
  • Loading branch information
k3b committed Apr 14, 2021
1 parent 5efde7b commit e1e723d
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ android:
# https://github.com/travis-ci/travis-ci/issues/5036
- tools

# values in gradle.properties and .travis must be the same
# - build-tools-24.0.2
- build-tools-28.0.3
- android-28
- android-29

- add-on
- extra
Expand Down
17 changes: 9 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {

// SAF ACTION_CREATE_DOCUMENT requires api-19 and later
minSdkVersion 19 // Android 4.4 KitKat (API 19); Android 5.0 Lollipop (API 21); Android 6.0 Marshmallow (API 23); Android 7.0 Nougat (API 24)
targetSdkVersion 28
targetSdkVersion 29

// 1.0.0.190425 (1) initial version
// 1.0.1.190507 (2) Bugfix: missing read permission; port to android-x
Expand All @@ -17,8 +17,9 @@ android {
// 1.1.2.190605 (6) bugfixes send/get_content; translation-updates "en", "de","nb-rNO"
// 1.2.0.191107 (7) Added jpg Image Rotation
// 1.2.1.200708 (8) fix #4: Cropping result image without exif-thumbnail
versionCode 8
versionName "1.2.1.200708"
// 1.2.2.210416 (9) Library updates
versionCode 9
versionName "1.2.2.210416"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

// all supported locales. Note: the lib has more translations which are supressed here
Expand Down Expand Up @@ -50,12 +51,12 @@ android {
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.annotation:annotation:1.2.0'

implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'


// implements lossless croppig
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {

}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.android.tools.build:gradle:4.1.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -26,7 +26,7 @@ allprojects {
}

ext {
compileSdkVersion = 28
compileSdkVersion = 29

PUBLISH_GROUP_ID = 'net.realify.lib'
PUBLISH_ARTIFACT_ID = 'android-image-cropper'
Expand Down
4 changes: 2 additions & 2 deletions cropper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ repositories {

dependencies {
api 'androidx.legacy:legacy-support-v4:1.0.0'
api 'androidx.exifinterface:exifinterface:1.2.0'
api 'androidx.annotation:annotation:1.1.0'
api 'androidx.exifinterface:exifinterface:1.3.2'
api 'androidx.annotation:annotation:1.2.0'

// implementation 'com.github.Realify:Android-Image-Cropper:master'
}
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/10.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
todo
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/8.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix #4: Cropping result image without exif-thumbnail
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Library updates
8 changes: 4 additions & 4 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#Tue May 07 10:19:25 CEST 2019
#Wed Apr 14 19:33:52 CEST 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
# distributionSha256Sum from https://services.gradle.org/distributions/gradle-6.1.1-all.zip.sha256
distributionSha256Sum=10065868c78f1207afb3a92176f99a37d753a513dff453abb6b5cceda4058cda
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
# see https://gradle.org/release-checksums/
distributionSha256Sum=23e7d37e9bb4f8dabb8a3ea7fdee9dd0428b9b1a71d298aefd65b11dccea220f

0 comments on commit e1e723d

Please sign in to comment.