Provisioning profile “PROVISIONING PROFILE NAME” doesn’t include the currently selected device “IPHONE NAME”. (in target ‘APPNAME’)
原因
端末のUUIDをプロビジョニングプロファイルに登録するのを忘れていた。
社員同士のゆるーい情報交換ブログです
Provisioning profile “PROVISIONING PROFILE NAME” doesn’t include the currently selected device “IPHONE NAME”. (in target ‘APPNAME’)
原因
端末のUUIDをプロビジョニングプロファイルに登録するのを忘れていた。
現在、テストフライトの外部テスター機能を使ってユーザーに配布しているが、大きな軌道修正があり、アプリのデザインが大きく変わってしまった。
この場合、次のテストフライトの作業として正しい行動はどれか?
ただし、このアプリは、まだリリースされていないものとする。
1.そもそもテストフライトに審査は無いので、なにも考慮する必要はない。
2.App Store Connectのアプリレコードを一旦削除して、新しいアプリとして作り直す必要がある。
3.テストフライトのテストユーザーへのコメント欄に、変更箇所を書く義務がある。
4.テストフライトの再審査が必要。
‘S’ is not a valid file-based resource name character: File-based resource names must contain only lowercase a-z, 0-9, or underscore
全文
Android (app) has already been disposed (see the cause for stacktrace) so the child
Sorry but parent: Android (app) has already been disposed (see the cause for stacktrace) so the child: {} will never be disposed
・Error:Execution failed for task ‘:app:compileDebugJavaWithJavac’.
> Could not expand ZIP ‘C:\Users\username\.android\build-cache\xxxxxxxxxxxxxxxxxxxxxxxx\output\jars\classes.jar’.
Warning:The project encoding (windows-31j) does not match the encoding specified in the Gradle build files (UTF-8).
This can lead to serious bugs.
警告:プロジェクトのエンコーディング(windows-31j)が、Gradleビルドファイル(UTF-8)で指定されたエンコーディングと一致しません。
これは深刻なバグにつながる可能性があります。
Error inflating class android.support.constraint.ConstraintLayout
ネットからサンプルコードなどを持ってきたときに発生する。
原因
コンストレイントレイアウト(ConstraintLayout)関連のエラーが出てる
基本的に、このエラーが出たら古い開発環境である。
AndroidStudioのバージョンを上げたほうが良い。
ConstraintLayoutはAndroidStudio 2.2から使える。それ以前の環境を使ってるのはちょっと古すぎます。
“[Android]エラー対策 Error inflating class android.support.constraint.ConstraintLayout” の続きを読む
must implement OnFragmentInteractionListener
java.lang.ClassCastException: com.example.appname.MainActivity@xxxxxxx must implement OnFragmentInteractionListener
FragmentをActivityに貼り付けようとするとエラー発生。
“[Android]エラー対策 must implement OnFragmentInteractionListener” の続きを読む
・android.os.NetworkOnMainThreadException
原因
メインスレッドからネットワーク制御をしたために発生した
昔は許されたらしい。
“[Android]エラー対策 android.os.NetworkOnMainThreadException” の続きを読む
Cannot execute task: the task has already been executed (a task can be executed only once)
・タスクを実行できません:タスクは既に実行されています(タスクは1回だけ実行できます)
原因
AsyncTask実行時に発生
AsyncTaskは毎回作り直さないといけない。