SDL2とAndroid StudioでAndroid SDKのパスの設定
解決したいこと
SDL2のAndroidプロジェクトを作成しました。
ですが、Android Studioで開くとエラーが発生します。
解決方法を押してくださいませんか。
プロジェクトの作成方法は、下記サイトのとおりです。
https://github.com/libsdl-org/SDL/blob/main/docs/README-android.md
簡単に経緯を説明すると、SDL2に含まれるテンプレートプロジェクトをコピーし、SDLへのシンボリックリンクを作成しました。
srcディレクトリにmain.cppを作成しました。
その後、Android Stduioで開くとエラーが発生しました。
発生している問題・エラー
A problem occurred configuring project ':app'.
> SDK location not found. Define a valid SDK location with an ANDROID_HOME environment variable or by setting the sdk.dir path in your project's local properties file at 'E:\Game_Programming-Android\local.properties'.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
以下のファイルのsdk.dirは正しいことを確認しています。
Android StudioのSDK ManagerのAndroid SDK Locationと同じパスでした。
local.properties
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Sat Aug 10 08:06:09 JST 2024
sdk.dir=C\:\\Users\\jts0y\\AppData\\Local\\Android\\Sdk
0