Archive for the ‘Titanium’ Category

 

distribute android market | titanium

8月 24th, 2011

titanium studioの[Distribute Android]でファイルを作成します。 Select Distribution Locatio: 適当にディレクトリを作っておきます。 Key Store Location: Key Store Password: Alias: さてKeyを作るそうです。 http://developer.android.com/guide/publishing/app-signing.html#cert $ which keytool /usr/bin/keytool 上記URLのサンプルコマンドは以下のようです。 $ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 my-release-key.keystore => junichi.keystore alias_name => junichiapp とかで良いのでしょうか、junichi部分をアプリの略名にしました。 $ keytool -genkey -v -keystore junichi.keystore -alias junichi -keyalg RSA -keysize 2048 -validity […]

Read full article | コメントは受け付けていません。

titanium android YQL return e.success=false everytime. | titanium

8月 24th, 2011

titanium android YQL return e.success=false everytime. if iPhone YSQL e.success == true, android ‘s success is false. we should not check e.success.

Read full article | コメントは受け付けていません。

android menu icon | titanium

8月 24th, 2011

var menu1 = menu.add( … menu.setIcon( ‘/images/icon.png’); this location is “Resourse/android/images/icon.png” size of android menu icon http://developer.android.com/guide/practices/ui_guidelines/icon_design_menu.html

Read full article | コメントは受け付けていません。

object dump | titanium

8月 22nd, 2011

Titanium.API.debug(JSON.stringify(obj)); で表示できます。 他の方法も是非教えてください。

Read full article | コメントは受け付けていません。