Skip to content

Instantly share code, notes, and snippets.

@choipd
Created November 19, 2012 13:34
Show Gist options
  • Save choipd/4110655 to your computer and use it in GitHub Desktop.
Save choipd/4110655 to your computer and use it in GitHub Desktop.
Titanium에서 한글 앱 이름 설정하기
<application android:icon="@drawable/appicon"
android:label="@string/app_name" android:name="AnsimApplication"
android:debuggable="false">
<!-- TI_APPLICATION -->
<activity android:name=".AnsimActivity"
android:label="@string/app_name" android:theme="@style/Theme.Titanium"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment