Application IDの変更をしたいです。
ネット上にはパッケージ名の変更方法ばかりで、Application IDの変更方法に関する
有用なサイトが見当たりませんでした????
・build.gradle
のandroid > defaultConfig
から直接Application IDを書き換えると、以下のエラーが出ます。
以下のエラーが出てしまいます。
error
1FAILURE: Build failed with an exception. 2 3* What went wrong: 4Execution failed for task ':app:processDebugGoogleServices'. 5> No matching client found for package name 'com.example.flutter3' 6 7* Try: 8Run 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. 9 10* Get more help at https://help.gradle.org 11 12BUILD FAILED in 8s 13
両者はセットアップ時に選択した名前を除いて互いに独立しているらしいのですが、
パッケージ名ではなく、Application IDの変更方法を教えて頂きたいです????
https://developer.android.com/studio/build/application-id?hl=ja
????
また、Application IDを変更したい理由は、
**「複数のアプリを別物と認識させ、ホーム画面にそれらを同時に表示したい為」**なのですが、
皆さんはApplication IDを変更したのち、ホーム画面にアプリを表示しているのですか?
尚、僕のアプリは公開前なのでApplication IDの変更の弊害はないかと思います。
エラー追記
error
1FAILURE: Build failed with an exception. 2 3* Where: 4Build file 'C:\Users\81907\AndroidStudioProjects\flutter1\android\build.gradle' line: 28 5 6* What went wrong: 7A problem occurred evaluating root project 'android'. 8> Project with path 'android' could not be found in project ':app'. 9 10* Try: 11Run 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. 12 13* Get more help at https://help.gradle.org 14 15BUILD FAILED in 2s 16Exception: Gradle task assembleDebug failed with exit code 1
尚、C:\Users\81907\AndroidStudioProjects\flutter1\android\build.gradle' line: 28
は以下です。
(エラーはflutter123全てのアプリにおいて発生。)
Flutter
1rootProject.buildDir = '../build' 2subprojects { 3 project.buildDir = "${rootProject.buildDir}/${project.name}" 4} 5subprojects { 6 project.evaluationDependsOn(':app') <--------line: 28 7} 8 9task clean(type: Delete) { 10 delete rootProject.buildDir 11} 12
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/05 12:25
2020/07/05 12:44
2020/07/05 12:54
2020/07/05 13:34 編集
2020/07/05 13:58 編集
2020/07/05 14:08
2020/07/05 23:11 編集
2020/07/06 11:11
2020/07/06 12:40