3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UnityでSQLiteをAndroid(64bit対応)向けに導入する

Last updated at Posted at 2019-05-21

UnityでSQLiteをAndroid(64bit対応)向けに導入する

概略の手順

  • 公式サイトから最新版を取ってきます。
  • パッケージ内のプラグイン名に合わせてDllImportの引数を書き換える(※1)か、逆にAARパッケージ内のプラグイン名を変更(※2)します。
    • ※1) 未検証です。
    • ※2) 例えば[DllImport ("sqlite3", ~なら、sqlite-android~.aar/jni/*/libsqliteX.solibsqlite3.soでいけます。
  • AARパッケージのままで、"Assets\Plugins\sqlite3\Android"とかに配置します。

留意点

  • AARパッケージはZIPファイルなので、ファイル名を「sqlite-android-xxxxxxx.aar.zip」などと変更することで内部にアクセスできます。
  • パッケージからフォルダ構造ごとファイルを取り出してAssetフォルダに配置することも可能ですが、そのままのファイル名だとビルドの際にUnityの同名チェックに引っかかります。

参考

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?