File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,10 @@ dependencies {
4747 androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
4848 exclude group : ' com.android.support' , module : ' support-annotations'
4949 })
50- compile ' com.android.support:appcompat-v7:27.0.0 '
50+ compile ' com.android.support:appcompat-v7:27.1.1 '
5151 testCompile ' junit:junit:4.12'
5252 compile ' net.zetetic:android-database-sqlcipher:3.5.7@aar'
53- compile " android.arch.persistence.room:runtime:1.0 .0"
54- annotationProcessor " android.arch.persistence.room:compiler:1.0 .0"
53+ compile " android.arch.persistence.room:runtime:1.1 .0"
54+ annotationProcessor " android.arch.persistence.room:compiler:1.1 .0"
5555 debugCompile project(' :debug-db' )
5656}
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ dependencies {
4848 exclude group : ' com.android.support' , module : ' support-annotations'
4949 })
5050 testCompile ' junit:junit:4.12'
51- compile ' com.google.code.gson:gson:2.8.0 '
51+ compile ' com.google.code.gson:gson:2.8.2 '
5252 compile ' net.zetetic:android-database-sqlcipher:3.5.7@aar'
53- compile " android.arch.persistence.room:runtime:1.0 .0"
53+ compile " android.arch.persistence.room:runtime:1.1 .0"
5454}
5555
5656// apply from: 'debug-db-upload.gradle'
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ function getDBList() {
7272 var isEncrypted = dbList [ count ] [ 1 ] ;
7373 var isDownloadable = dbList [ count ] [ 2 ] ;
7474 var dbAttribute = isEncrypted == "true" ? ' <span class="glyphicon glyphicon-lock" aria-hidden="true" style="color:blue"></span>' : "" ;
75- if ( dbName . indexOf ( "journal" ) == - 1 ) {
75+ if ( dbName . indexOf ( "journal" ) == - 1 && dbName . indexOf ( "-wal" ) == - 1 && dbName . indexOf ( "-shm" ) == - 1 ) {
7676 $ ( "#db-list" ) . append ( "<a href='#' id=" + dbName + " class='list-group-item' onClick='openDatabaseAndGetTableList(\"" + dbName + "\", \"" + isDownloadable + "\");'>" + dbName + dbAttribute + "</a>" ) ;
7777 if ( ! isSelectionDone ) {
7878 isSelectionDone = true ;
You can’t perform that action at this time.
0 commit comments