Minimal build support for an android app. Written while the power was out.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4199 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
2023-03-04 19:10:05 +00:00
parent 262b0e5e52
commit 28d73f5b37
6 changed files with 98 additions and 7 deletions

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unprompted.tildefriends"
versionCode="1"
versionName="0.0.4">
<uses-sdk android:minSdkVersion="16"/>
<application android:label="Tilde Friends">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>