android studioでhello worldを表示させるアプリをgoogle playに公開したいのですがbuild→generateからaabファイルの作成を行っていき失敗しました。フォルダの選択はデフォルトのままです。なぜ失敗するのでしょうか。
以下にエラーの内容を記載します。
コード
package com.example.myapplication;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); }
}
エラー内容
vExecution failed for task ':app:validateSigningRelease'.
Keystore file '/Users/yotsuba/AndroidStudioProjects/MyApplication6/hello.jks' not found for signing config 'externalOverride'.
- 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.
- Get more help at https://help.gradle.org
BUILD FAILED in 1s
22 actionable tasks: 6 executed, 16 up-to-date
回答1件
あなたの回答
tips
プレビュー