Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dburckh committed Apr 11, 2022
1 parent 4823d15 commit 3136cb2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Another Android LibRaw implementation. LibRaw is used to render camera raw imag
## Using the artifact
On the surface, this is as easy as:

`implementation 'com.homesoft.android:libraw:2.0.2'`
`implementation 'com.homesoft.android:libraw:2.0.4'`

Unfortunately, you also need to add GitHub Packages to your base project build.gradle, which is kind of a pain. You'll need to add this to your root project build.gradle.
```groovy
Expand Down Expand Up @@ -63,6 +63,10 @@ Most of the code I did for this was either glue or tweaking of somebody else wor
- [LibRaw-Android](https://github.com/TSGames/Libraw-Android) Ground breaking "glue" code I borrowed heavily from.

### Change Log
2.0.4
- Add Proguard rules
- Update Libraw/Libraw-CMake

2.0.3
- Removed recycle from getBitmap(). Let me know if you feel it's necessary
- Added LibRaw.newInstance() factory to get the proper version of LibRaw (LibRaw or LibRaw26)
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ android {

dependencies {

implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation project(path: ':libraw')
implementation "androidx.core:core-ktx:+"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation 'androidx.preference:preference-ktx:1.2.0'
// implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -16,7 +16,7 @@ buildscript {
ext {
groupId = 'com.homesoft.android'
artifactId = 'libraw'
artifactVersion = '2.0.3'
artifactVersion = '2.0.4'
}
task clean(type: Delete) {
delete rootProject.buildDir
Expand Down

0 comments on commit 3136cb2

Please sign in to comment.