Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

ServiceApp

Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/ServiceApp

Properties\AndroidManifest.android-xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
		package="org.me.serviceapp">
  <application 
		android:label="@string/app_name"
		android:icon="@drawable/icon">
	<activity android:label="@string/app_name" android:name="org.me.serviceapp.ServiceInteractionActivity">
	  <intent-filter>
		<action android:name="android.intent.action.MAIN" />
		<category android:name="android.intent.category.LAUNCHER" />
	  </intent-filter>
	</activity>
	<service android:name="org.me.serviceapp.SampleService" />
  </application>
  <uses-sdk android:minSdkVersion="5" />
</manifest>