問題タブ [sqlcipher-android]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - Android と SQLite の保護
assets フォルダーの *.db ファイルから入力された、10 万行以上の SQLite データベースを備えた Android アプリがあります。
データベースがデバイスから引き出されにくくしたいと考えています。
まず、誰かがデータベースをプルする方法は何ですか?
APK を取得し、assets フォルダーから *.db ファイルを抽出できます。
アプリが起動すると、デバイスの sqlite サーバーにクエリを実行できます
では、データベースをプルしにくくする方法は何ですか :
assets フォルダー内の *.db ファイルを暗号化する
Android 用の SQLCipher ? とにかく、ユーザーがパスワードを入力する必要はありません。私(クライアント)は、パスワードをコードに保存し、proguard を使用して見つけにくくするなど、SQLite をプルするのを難しくしたいだけです。
よろしく