カブトムシの壺

消しゴム付き鉛筆

DeployGate、めちゃ便利。

DeployGate

 

めちゃ便利です。DeployGate。

 

なので、家でも使おう、と思って公式HP見ながらセットアップしてたらAndroid Studioのボタンをポチっと一発で出来ることが分かった。これまでapkを手動でアップロードしてたのに!!

 

deploygateのプラグインを入れるだけで出来た。詳しくはこちら。

 

あとプラグインオープンソースだったのだけど、見た感じメッセージとかもいじれるっぽかった。こちらはやってない。

https://github.com/DeployGate/gradle-deploygate-plugin


Androidひとくちメモ : supportsRtlって何?

・"AndroidManifest.xml"の<application>要素の属性"supportsRtl"は、右から左へのレイアウトをサポートするかの指定。

・デフォルトはfalse(サポートしない)なので、右から左へ文字を書くアラビア語ヘブライ語ペルシャ語などに対応しないのであれば、書かなくて良い。

 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="myapplication">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>