Android

【Android Studio】パスに全角文字を含めるのはNG

2021年8月1日

Pocket

Androidアプリの開発環境を構築して、いざ開発スタート!と気合を入れて、
Android Studio を起動すると早速エラーメッセージが表示されました。。

org.gradle.api.tasks.StopExecutionException: Your project path contains non-ASCII characters. This will most likely cause the build to fail on Windows. Please move your project to a different directory. See http://b.android.com/95744 for details. This warning can be disabled by adding the line 'android.overridePathCheck=true' to gradle.properties file in the project directory.

どうやら、パスに全角文字を入れてはいけないようです。マジかよ。。
まあ、外国の方がわざわざ全角文字を入れて動作確認なんかするわけないよね。

というわけで、パスから全角文字を削除して、Android Studio を再起動したところ、
見事エラーは解消されました。

修正前:I:\Source\サンプル\AndroidAppJavaSamples
修正後:I:\Source\Sample\AndroidAppJavaSamples

Gitから取得した時点で日本語のフォルダ名があるので、
わざわざ別フォルダに移動する必要があるのだが、なんとかならんものか・・

-Android
-, ,

Copyright© SENORI BLOG , 2024 All Rights Reserved Powered by AFFINGER5.