Calculation service

This commit is contained in:
Sergey Solovyev
2012-03-06 00:30:12 +04:00
parent 00181745ea
commit 378bebfb8a
7 changed files with 166 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="8"/>
<application android:debuggable="false" android:hardwareAccelerated="false" android:icon="@drawable/icon" android:label="@string/c_app_name" android:name=".CalculatorApplication">
<application android:debuggable="true" android:hardwareAccelerated="false" android:icon="@drawable/icon" android:label="@string/c_app_name" android:name=".CalculatorApplication">
<activity android:label="@string/c_app_name" android:name=".CalculatorActivity" android:windowSoftInputMode="adjustPan">
@@ -18,6 +18,8 @@
</intent-filter>
</activity>
<service android:name="org.solovyev.android.calculator.CalculationService"/>
<!--NOTE: a:configChanges="orientation|keyboardHidden" is needed to correct work of dialog windows (not to close them on orientation change) -->
<activity android:configChanges="orientation|keyboardHidden" android:label="@string/c_app_settings" android:name=".CalculatorPreferencesActivity"/>

View File

@@ -56,6 +56,13 @@
<type>apklib</type>
</dependency>
<dependency>
<groupId>org.solovyev.android</groupId>
<artifactId>calculatorpp-service</artifactId>
<version>0.1</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>org.solovyev</groupId>
<artifactId>jscl</artifactId>

View File

@@ -9,4 +9,5 @@
# Project target.
target=android-15
android.library.reference.1=gen-external-apklibs/org.solovyev.android_billing_0.1
android.library.reference.1=../../common
android.library.reference.2=../calculatorpp-service