Konubinix' opinionated web of thoughts

Share With Android Kivy

Fleeting

share with android kivy

<application android:allowBackup="true" android:debuggable="true" android:extractNativeLibs="true" android:hardwareAccelerated="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
  <meta-data android:name="wakelock" android:value="0"/>
  <activity android:configChanges="fontScale|keyboard|keyboardHidden|layoutDirection|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:exported="true" android:label="@string/app_name" android:launchMode="singleTask" android:name="org.kivy.android.PythonActivity" android:screenOrientation="portrait">
    <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.SEND" />
      <category android:name="android.intent.category.DEFAULT" />
      <data android:mimeType="text/plain" />
    </intent-filter>
  </activity>
  <service android:name="eu.konubinix.konixpoc.ServiceKonixpoc" android:process=":service_konixpoc"/>
</application>
</manifest>

from the python android runtime to a custom app