Skip to content

Instantly share code, notes, and snippets.

@masaibar
Last active October 5, 2018 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masaibar/882d29c096e0726021b6e42d164debe0 to your computer and use it in GitHub Desktop.
Save masaibar/882d29c096e0726021b6e42d164debe0 to your computer and use it in GitHub Desktop.
Androidのデバッグ版とリリース版でパッケージ名、バージョン名、アプリ名、アイコンを変更する ref: https://qiita.com/masaibar/items/87cd03d3824ae8e1e16a
<application
android:icon="@mipmap/ic_launcher"
/>
buildTypes {
debug {
debuggable true
versionNameSuffix "debug" //←追加
}
}
<string name="app_name">アプリ名[Debug]</string>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment