Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Minor Update] Fixes for EXIF rotation merged, and modified gradle im…
…plementation
  • Loading branch information
Mike committed Oct 16, 2018
1 parent 31d4f59 commit 2c6bc03
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions README.md
@@ -1,12 +1,12 @@
Croperino
=========

A simple image cropping tool for your android applications (v1.1.7)
A simple image cropping tool for your android applications (v1.1.8)

Supported SDK and Gradle Version:
* Minimum SDK Version 14
* Target SDK Version 27
* Gradle 3.0.1
* Target SDK Version 28
* Gradle 3.2.0

Features:
* Camera and/or gallery calls.
Expand All @@ -26,7 +26,7 @@ repositories {
```

```
compile 'com.github.ekimual:croperino:1.1.7'
compile 'com.github.mike14u:croperino:1.1.8'
```

Make sure to have this in your manifest
Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '28.0.2'
compileSdkVersion 28
buildToolsVersion '28.0.3'

defaultConfig {
applicationId "com.mikelau.cropme"
minSdkVersion 15
targetSdkVersion 27
targetSdkVersion 28
versionCode 1
versionName "1.1.7"
versionName "1.1.8"
}
buildTypes {
release {
Expand All @@ -27,6 +27,6 @@ repositories {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation project(':crop-me')
}
12 changes: 6 additions & 6 deletions crop-me/build.gradle
@@ -1,17 +1,17 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.ekimual'
group='com.github.mike14u'

android {
compileSdkVersion 27
buildToolsVersion '28.0.2'
compileSdkVersion 28
buildToolsVersion '28.0.3'

defaultConfig {
minSdkVersion 14
targetSdkVersion 27
targetSdkVersion 28
versionCode 1
versionName "1.1.7"
versionName "1.1.8"
}
buildTypes {
release {
Expand All @@ -29,7 +29,7 @@ repositories {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation('de.keyboardsurfer.android.widget:crouton:1.8.5@aar') {
// exclusion is not necessary, but generally a good idea.
exclude group: 'com.google.android', module: 'support-v4'
Expand Down

0 comments on commit 2c6bc03

Please sign in to comment.