-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from infinum/develop
Release 5.4.0
- Loading branch information
Showing
39 changed files
with
791 additions
and
342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
Feedback and code contributions are very much welcome. Just make a pull request with a short description of your changes. By making contributions to this project you give permission for your code to be used under the same [license](LICENSE). | ||
|
||
For easier developing a `sample` application with proper implementations is provided. | ||
|
||
It is also recommended to change `build.debug` property in `build.properties` to toggle dependency substitution in project level `build.gradle`. | ||
For easier developing a `sample` application with proper implementations is provided. | ||
|
||
Pushing changes directly into master branch is not allowed, please create a separate branch with your changes and then create a pull request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
ext { | ||
buildConfig = [ | ||
"minSdk" : 21, | ||
"compileSdk": 30, | ||
"targetSdk" : 30, | ||
"buildTools": "30.0.3" | ||
"compileSdk": 31, | ||
"targetSdk" : 31, | ||
"buildTools": "31.0.0" | ||
] | ||
releaseConfig = [ | ||
"group" : "com.infinum.dbinspector", | ||
"version" : "5.3.8", | ||
"versionCode": 5 * 100 * 100 + 3 * 100 + 8 | ||
"version" : "5.4.0", | ||
"versionCode": 5 * 100 * 100 + 4 * 100 + 0 | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
-keeppackagenames | ||
-keep public class com.infinum.dbinspector.DbInspector { | ||
public protected *; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
-keeppackagenames | ||
-keep public class com.infinum.dbinspector.* { | ||
public protected *; | ||
} | ||
|
6 changes: 5 additions & 1 deletion
6
...ctor/src/main/kotlin/com/infinum/dbinspector/domain/database/models/DatabaseDescriptor.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
package com.infinum.dbinspector.domain.database.models | ||
|
||
import android.os.Parcelable | ||
import kotlinx.parcelize.Parcelize | ||
|
||
@Parcelize | ||
internal data class DatabaseDescriptor( | ||
val exists: Boolean, | ||
val parentPath: String, | ||
val name: String, | ||
val extension: String = "", | ||
val version: String = "" | ||
) { | ||
) : Parcelable { | ||
val absolutePath: String | ||
get() = if (extension.isEmpty()) "$parentPath/$name" else "$parentPath/$name.$extension" | ||
} |
5 changes: 4 additions & 1 deletion
5
dbinspector/src/main/kotlin/com/infinum/dbinspector/domain/shared/models/Cell.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.