プロファイル可能なアプリを手動でビルドして実行する
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
プロファイル可能なアプリケーションを手動でビルドするには、次の操作を行います。
最初にリリースアプリをビルドし、次にそのマニフェスト ファイルを更新する必要があります。
これにより、リリースアプリがプロファイル可能なアプリに変わります。Google Chat の設定
プロファイル可能なアプリを構成し、プロファイラを起動して
プロファイル可能なプロセスを使用して
分析できます
リリースアプリをビルドする
プロファイリング用のリリースアプリをビルドする手順は次のとおりです。
-
アプリの build.gradle
ファイルに次の行を追加して、デバッグキーでアプリに署名します。すでに稼働中のリリースビルド バリアントがある場合は、スキップして次のステップに進みます。
buildTypes {
release {
signingConfig signingConfigs.debug
}
}
-
Android Studio で、[Build] > [Select Build Variant...] を選択して、リリース バリアントを選択します。
リリースをプロファイル可能に変更する
リリースアプリをプロファイル可能なアプリに変換する手順は次のとおりです。
-
アプリ
AndroidManifest.xml
ファイルを作成し、その中に以下を追加します。
<application>
。詳細については、リリース用アプリをビルドするをご覧ください。
<profileable android:shell="true"/>
-
SDK のバージョンによっては、マニフェストの検証に関連するエラーが表示されることがあります。解決できず、エラーを警告として扱っても安全であると判断した場合は、build.gradle
ファイルに次の行を追加して、エラーを警告として扱うことができます。
aaptOptions {
additionalParameters =["--warn-manifest-validation"]
}
このページのコンテンツやコードサンプルは、コンテンツ ライセンスに記載のライセンスに従います。Java および OpenJDK は Oracle および関連会社の商標または登録商標です。
最終更新日 2025-07-27 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-27 UTC。"],[],[],null,["# Build and run a profileable app manually\n\nTo build a [profileable](/studio/profile#requirements) application manually, you\nneed to first build a release application and then update its manifest file,\nwhich turns the release application into a profileable application. After you\nconfigure the profileable application, launch the profiler and select a\nprofileable process to analyze.\n\nBuild a release app\n-------------------\n\nTo build a release application for profiling purposes, do the following:\n\n\u003cbr /\u003e\n\n1. Sign your application with the debug key by adding the following lines to your application's\n `build.gradle` file. If you already have a working release build variant, you can\n skip to the next step.\n\n buildTypes {\n release {\n signingConfig signingConfigs.debug\n }\n }\n \n2. In Android Studio, select **Build** \\\u003e **Select Build Variant...** and choose the\n release variant.\n\n\u003cbr /\u003e\n\nChange release to profileable\n-----------------------------\n\nTo convert your [release app](#build-release-app) to a profileable app, do the\nfollowing:\n\n1. Open the\n `AndroidManifest.xml` file and adding the following within\n `\u003capplication\u003e`. For more details, see\n [Build your app for release](/studio/publish/preparing#publishing-build).\n\n `\u003cprofileable android:shell=\"true\"/\u003e`\n2. Depending on the SDK version, you might see an error related to manifest\n validation; if you can't resolve them and deem it safe to treat the errors\n as warnings, you can do so by adding the following lines to your\n `build.gradle` file.\n\n aaptOptions {\n additionalParameters =[\"--warn-manifest-validation\"]\n }"]]