Samples
Samples
Calculator.Android
Language: Hydrogene, Platform: All, Category: Calculator
https://github.com/remobjects/ElementsSamples/tree/master/Hydrogene/All/Calculator/Calculator.Android
-
calculator.android
-
References
- android
- cooper
- elements
- Source Files
- Other Files
-
References
Properties\AndroidManifest.android-xml
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.remobjects.calculator"> <!-- the android:debuggable="true" attribute is overwritten by the compiler when the debug info option is set --> <application android:label="@string/app_name" android:icon="@drawable/icon" android:allowBackup="true" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>
