Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi0101 committed Apr 21, 2024
1 parent 485617a commit 5efc7df
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
# Android-Room-Database-Backup Changelog

## [v1.0.1] - 2024-04-21

### Changes

- Dependency/Gradle upgrades
- Chagned to stable but marked single features as beta

## [v1.0.0-beta14] - 2024-01-16

###

- Migrated from Gradle to Kotlin DSL

**If this version makes any technical problems please feel free to contact me. I made some changes in Gradle/Kotlin DSL and not sure if everything is working as excepted**
**If this version makes any technical problems please feel free to contact me. I made some changes
in Gradle/Kotlin DSL and not sure if everything is working as excepted**

### Fixes

- Just dependency upgrades


## [v1.0.0-beta13] - 2023-08-15

### Changes
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ Simple tool to backup and restore your room database in Android
## Getting started

Android-Room-Database-Backup library is pushed
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.0-beta14/versions)
to [Maven Central](https://central.sonatype.com/artifact/de.raphaelebner/roomdatabasebackup/1.0.1/versions)
.
Add the dependency for `Android-Room-Database-Backup ` to your app-level `build.gradle` file.

```groovy
implementation 'de.raphaelebner:roomdatabasebackup:1.0.0-beta14'
implementation 'de.raphaelebner:roomdatabasebackup:1.0.1'
```

**If the version makes any technical problems please feel free to contact me. I made some changes in
Expand Down Expand Up @@ -141,7 +141,9 @@ The following options are optional and the default options
- `RoomBackup.BACKUP_FILE_LOCATION_INTERNAL`
- Custom Dialog (beta)
- You can choose to save or restore where ever you want. A CreateDocument() or OpenDocument() Activity will be launched where you can choose the location
- If your backup is encrypted I reccomend you using a custom encrption password else you can't restore your backup \* `RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG`
- If your backup is encrypted I reccomend you using a custom encrption password else you can't
restore your backup
- `RoomBackup.BACKUP_FILE_LOCATION_CUSTOM_DIALOG`
- Custom File (beta)
- You can choose to save or restore to/from a custom File.
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dependencies {
implementation("androidx.security:security-crypto:1.1.0-alpha06")

//Google Guava
implementation("com.google.guava:guava:31.0.1-jre")
implementation("com.google.guava:guava:33.1.0-jre")

//Apache commons io
//https://mvnrepository.com/artifact/commons-io/commons-io
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Project-wide Gradle settings.
GROUP_ID=de.raphaelebner
ARTIFACT_ID=roomdatabasebackup
VERSION_NAME=1.0.0-beta14
VERSION_NAME=1.0.1
VERSION_CODE=1

POM_DESCRIPTION=Simple tool to Backup and Restore your Room Database
Expand All @@ -24,4 +24,4 @@ android.enableJetifier=false
kotlin.code.style=official
kapt.incremental.apt=true
android.nonTransitiveRClass=true
android.nonFinalResIds=false
android.nonFinalResIds=false

0 comments on commit 5efc7df

Please sign in to comment.