forked from cory/tildefriends
Cory McWilliams
af13bfc920
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4478 ed5197a5-7fde-0310-b194-c3ffbd925b24
21 lines
812 B
XML
21 lines
812 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.unprompted.tildefriends"
|
|
android:versionCode="11"
|
|
android:versionName="0.0.11">
|
|
<uses-sdk android:minSdkVersion="28"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<application android:label="Tilde Friends" android:usesCleartextTraffic="true" android:debuggable="true">
|
|
<meta-data android:name="android.max_aspect" android:value="2.1"/>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:icon="@drawable/icon"
|
|
android:configChanges="orientation|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|