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

Wiktionary

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

Properties\AndroidManifest.android-xml

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.wiktionary"
    android:versionCode="1"
    android:versionName="1.0">

  <uses-permission android:name="android.permission.INTERNET" />
  <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4" />

  <meta-data android:name="android.app.default_searchable" android:value=".LookupActivity" />

  <!-- the android:debuggable="true" attribute is overwritten by the compiler when the debug info option is set -->
  <application android:icon="@drawable/app_icon"
               android:label="@string/app_name"
               android:description="@string/app_descrip">

    <!-- Browser-like Activity to navigate dictionary definitions  -->
    <activity
        android:name=".LookupActivity"
        android:theme="@style/LookupTheme"
        android:launchMode="singleTop"
        android:configChanges="orientation|keyboardHidden">

      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
        <data android:scheme="wiktionary" android:host="lookup" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.SEARCH" />
        <category android:name="android.intent.category.DEFAULT" />
      </intent-filter>

      <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
    </activity>

    <!-- Broadcast Receiver that will process AppWidget updates -->
    <receiver android:name=".WordWidget"
              android:label="@string/widget_name"
              android:icon="@drawable/app_icon"
              >
      <intent-filter>
        <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
      </intent-filter>
      <meta-data android:name="android.appwidget.provider"
          android:resource="@xml/widget_word" />
    </receiver>

    <!-- Service to perform web API queries -->
    <service android:name=".WordWidget$UpdateService" />

  </application>

</manifest>