Skip to content

Commit

Permalink
Android v13.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sictiru committed Jul 11, 2024
1 parent 0ac4024 commit 749f842
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@

/**
* Utility class for executing DB operations on the local, private NB database.
*
* It is the intent of this class to be the single location of SQL executed on
* our DB, replacing the deprecated ContentProvider access pattern.
*/
public class BlurDatabaseHelper {

// manual synchro isn't needed if you only use one DBHelper, but at present the app uses several
// Removing the manual synchro will cause ANRs
// because the db transactions are made on the main thread
public final static Object RW_MUTEX = new Object();

private final BlurDatabase dbWrapper;
Expand Down
4 changes: 2 additions & 2 deletions clients/android/NewsBlur/buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ object Config {
const val compileSdk = 34
const val minSdk = 24
const val targetSdk = 34
const val versionCode = 227
const val versionName = "13.2.11"
const val versionCode = 228
const val versionName = "13.3.0"

const val androidTestInstrumentation = "androidx.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 749f842

Please sign in to comment.