備忘録

調べ物の備忘録など何か書き残し。

2016-01-01から1年間の記事一覧

AndroidStudioでのgitバージョン管理方法

既に作成済みのandroid studioプロジェクトをgitに登録し、リモートリポジトリを作成、内部で公開する。▼手順 1.windows上にgitをインストールする 2.android studioのプロジェクト内でgitリポジトリを作る 3.公開フォルダでリモートリポジトリを生成する 4.…

android api level

android APIレベルのサポートレベルが変わる話メモ。Google Play services and Firebase for Android will support API level 14 at minimum | Android Developers Blog2017年のどこかで、google play service libraryがサポートするAPIレベルが変わる。API…

AndroidStudio apkファイル名プロパティ探し

AndroidStudioで [Build -> Build APK]を実行した際、apkファイル名がデフォルトのものになってしまう。 これを自由なファイル名に変更する。 appのbuild.gradleに以下のプロパティを追記する。 android{ applicationVariants.all {variant -> variant.outpu…