Skip to content

Commit

Permalink
Merge pull request #15 from saasquatch/dev
Browse files Browse the repository at this point in the history
[0.1.0] Fix Base64 decoding
  • Loading branch information
slisaasquatch authored Nov 22, 2024
2 parents d8e5334 + d4ed458 commit 4335718
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [Unreleased]

## [0.1.0] - 2024-11-22

### Changed

- saasquatch-java-sdk version bump. Fixes Base64 decoding on Android.
- Internal dependency version bumps.

## [0.0.9] - 2024-02-02

### Changed
Expand Down Expand Up @@ -60,7 +67,9 @@

## [0.0.1] - 2021-02-17

[Unreleased]: https://github.com/saasquatch/squatch-android/compare/0.0.9...HEAD
[Unreleased]: https://github.com/saasquatch/squatch-android/compare/0.1.0...HEAD

[0.1.0]: https://github.com/saasquatch/squatch-android/compare/0.0.9...0.1.0

[0.0.9]: https://github.com/saasquatch/squatch-android/compare/0.0.8...0.0.9

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add the dependency:

```gradle
dependencies {
implementation 'com.github.saasquatch:squatch-android:0.0.9'
implementation 'com.github.saasquatch:squatch-android:0.1.0'
}
```

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
minSdkVersion 19
targetSdkVersion 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionName '1.0'
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

compileOptions {
Expand All @@ -25,9 +25,9 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
api 'com.github.saasquatch:saasquatch-java-sdk:0.1.0'
api 'com.github.saasquatch:saasquatch-java-sdk:0.2.0'
api 'org.reactivestreams:reactive-streams:1.0.4'
implementation 'io.reactivex.rxjava3:rxjava:3.1.8'
implementation 'io.reactivex.rxjava3:rxjava:3.1.9'
implementation 'io.reactivex.rxjava3:rxandroid:3.0.2'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
}
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 {
}
dependencies {
// https://mvnrepository.com/artifact/com.android.tools.build/gradle?repo=google
classpath "com.android.tools.build:gradle:4.2.2"
classpath 'com.android.tools.build:gradle:4.2.2'

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

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}

0 comments on commit 4335718

Please sign in to comment.