minor cleanup
This commit is contained in:
parent
126167c460
commit
09cb1a6d8c
|
@ -9,7 +9,7 @@
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:theme="@style/AppTheme">
|
android:theme="@style/AppTheme">
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.calculator.MainActivity"
|
android:name=".MainActivity"
|
||||||
android:screenOrientation="portrait">
|
android:screenOrientation="portrait">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<receiver
|
<receiver
|
||||||
android:name="com.simplemobiletools.calculator.MyWidgetProvider"
|
android:name=".MyWidgetProvider"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:label="Simple Calculator">
|
android:label="Simple Calculator">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
</receiver>
|
</receiver>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.calculator.MyWidgetConfigure"
|
android:name=".MyWidgetConfigure"
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:theme="@style/MyWidgetConfigTheme">
|
android:theme="@style/MyWidgetConfigTheme">
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.calculator.AboutActivity"
|
android:name=".AboutActivity"
|
||||||
android:label="@string/about"
|
android:label="@string/about"
|
||||||
android:screenOrientation="portrait"/>
|
android:screenOrientation="portrait"/>
|
||||||
</application>
|
</application>
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">Simple Calculator</string>
|
<string name="app_name">Simple Calculator</string>
|
||||||
|
|
||||||
|
<!-- About -->
|
||||||
<string name="about">About</string>
|
<string name="about">About</string>
|
||||||
<string name="website">For more simple apps please visit:\nhttp://simplemobiletools.com</string>
|
<string name="website">For more simple apps please visit:\nhttp://simplemobiletools.com</string>
|
||||||
<string name="email_label">You can send your feedback and new app suggestions at:</string>
|
<string name="email_label">You can send your feedback and new app suggestions at:</string>
|
||||||
|
|
Loading…
Reference in New Issue