Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BFF68111B5 for ; Thu, 20 Feb 2014 23:15:44 +0000 (UTC) Received: (qmail 60449 invoked by uid 500); 20 Feb 2014 23:15:42 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 60408 invoked by uid 500); 20 Feb 2014 23:15:42 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 60389 invoked by uid 99); 20 Feb 2014 23:15:41 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Feb 2014 23:15:41 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of bowserj@gmail.com designates 209.85.128.180 as permitted sender) Received: from [209.85.128.180] (HELO mail-ve0-f180.google.com) (209.85.128.180) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Feb 2014 23:15:35 +0000 Received: by mail-ve0-f180.google.com with SMTP id cz12so1275794veb.25 for ; Thu, 20 Feb 2014 15:15:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=tjZYcVfYpnWWxJcCZEEFhwJlXwZTsm0dnmYZdzEIcwE=; b=Gt6Y4JdMGziDk6tsWl6OV3RFd+1iLjb0EzHsXDYSHCahL7SadIcOHyiiiyeKBF+DYw /D0AchMfNt8FdV1Y56SMKODzVugfVcbqX10II7anaKhAxTtGvBY0RJou/4U0t5m43qZ4 aFqDKbLvLH1FuYWVbU34AhQjOR/yIUS6Zm+8qe4BLrDrXCcXqUDyFLx39tRjbT97Wui7 8ndUrwkQdAfgY2rr3jH5mYrPxFlarY1o0QMNguY7/R9aXMy3TjwT0/OiI3LD/j7mnKTc rg+gKyB/bD190YRz6Bv0vMAtQRtjPQeOgIQxdo+SHf1aXuMa1H/imU1LheoT/4QpX2Oi +fvA== MIME-Version: 1.0 X-Received: by 10.220.89.4 with SMTP id c4mr2617602vcm.53.1392938114348; Thu, 20 Feb 2014 15:15:14 -0800 (PST) Received: by 10.220.183.5 with HTTP; Thu, 20 Feb 2014 15:15:14 -0800 (PST) Date: Thu, 20 Feb 2014 15:15:14 -0800 Message-ID: Subject: [Android] [CB-6033] Android 4.4 and SQLite deletion From: Joe Bowser To: dev Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org https://issues.apache.org/jira/browse/CB-6033 Hey I'm working on a work-around for SQLite deletion, and I've run into a couple issues with the code: 1. Why are we deprecating FileHelper? It would be helpful if we had a quick and dirty copy method in here that we can use when we need to do things like copy SQLite Databases to other areas of internal storage or to the SD Card. 2. Does anyone know why Chromium WebView deletes the SQLite db? Will using this SQLite database cause localStorage to not work? I'm going to throw a simple copy and delete method in the deprecated class, since that's the only place this makes sense. I know we could use Apache Commons, but I don't want to add more dependences for this hack. Thoughts? Joe