mirror of
https://github.com/python/cpython.git
synced 2026-06-08 02:41:11 +00:00
Migrates Android build tooling to the shared Platforms folder. Co-authored-by: Malcolm Smith <smith@chaquo.com>
20 lines
No EOL
696 B
XML
20 lines
No EOL
696 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/Theme.Material3.Light.NoActionBar">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |