Skip to content

Releases: rafi0101/Android-Room-Database-Backup

v1.0.1

21 Apr 15:57
v1.0.1
5efc7df
Compare
Choose a tag to compare

[v1.0.1] - 2024-04-21

Changes

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

Android-Room-Database-Backup beta14

16 Jan 20:32
v1.0.0-beta14
d978461
Compare
Choose a tag to compare

[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

Fixes

  • Just dependency upgrades

Android-Room-Database-Backup beta13

15 Aug 19:23
v1.0.0-beta13
d241a3f
Compare
Choose a tag to compare

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

Changes

  • Dependency/Gradle upgrades
  • Updated Java to v17

Fixes

  • Fixes jetpack compose compatibility (#29)

Android-Room-Database-Backup beta12

13 Mar 07:00
v1.0.0-beta12
1f6ac47
Compare
Choose a tag to compare

[v1.0.0-beta12] - 2023-03-11

Changes

  • Dependency upgrades
  • License changed to 2023

Fixes

  • Improved requested file permissions for SDK33 or later
    devices (#25)
  • Only database files are allowed to
    restore (#26)
  • Improved builtin restart app function

Android-Room-Database-Backup beta11

31 Oct 06:51
v1.0.0-beta11
0b6b618
Compare
Choose a tag to compare

[v1.0.0-beta11] - 2022-10-30

Fixes

  • Just dependency upgrades

Android Room Database Backup beta10

06 Jan 15:40
v1.0.0-beta10
9f6f0d2
Compare
Choose a tag to compare

[v1.0.0-beta10] - 2022-01-06

Breaking Changes

  • onCompleteListener provides now an exitCode

Fixes

  • Crash when database restoring with wrong password: (#13)

Upgrading Notes

  • Add the exitCode property to your onCompleteListeners. Example

Android Room Database Backup beta09

06 Dec 19:06
79f0770
Compare
Choose a tag to compare

[v1.0.0-beta09] - 2021-12-06

Breaking Changes

  • Package name changes from com.ebner.roomdatabasebackup.core.RoomBackup to de.raphaelebner.roomdatabasebackup.core.RoomBackup

--> Next step is to change from Jitpack to MavenCentral

Upgrading Notes

  • You need to import the library by the new package name and delete the old import. Your IDE may helps you with these steps.

Android Room Database Backup beta08

15 Nov 20:55
3fabbc5
Compare
Choose a tag to compare

[v1.0.0-beta08] - 2021-11-14

Features

  • Custom Backup Location: (#9)

    You can choose between internal, external application storage and (new) custom storage. If you choose custom storage a CreateDocument() (for creating a backup file) or OpenDocument() (for choosing a backup file to restore) Activity will be opened

Upgrading Notes

  • .context(this) changed to val backup = RoomBackup(this) and must be declared outside of an onClickListener

  • .useExternalStorage(false) is replaced with .backupLocation(backupLocation: Int). See README.md

Android Room Database Backup beta06

23 Mar 21:17
49c582c
Compare
Choose a tag to compare
  • New: API support until 21
  • Change: Apache to MIT License

Android Room Database Backup beta04

23 Sep 19:57
624fbad
Compare
Choose a tag to compare
ADD customEncryptPassword; v:1.0.0-beta04

now you can use your own key instead of an random key to en- or decrypt
your Database