2023-03-04 14:10:05 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.unprompted.tildefriends"
|
2023-07-26 22:51:42 -04:00
|
|
|
versionCode="10"
|
|
|
|
versionName="0.0.10-wip">
|
2023-06-28 19:23:29 -04:00
|
|
|
<uses-sdk android:minSdkVersion="26"/>
|
2023-03-07 21:49:41 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2023-03-11 08:57:17 -05:00
|
|
|
<application android:label="Tilde Friends" android:usesCleartextTraffic="true" android:debuggable="true">
|
2023-04-19 20:24:12 -04:00
|
|
|
<meta-data android:name="android.max_aspect" android:value="2.1"/>
|
2023-03-29 18:43:41 -04:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2023-05-03 20:04:43 -04:00
|
|
|
android:icon="@drawable/icon"
|
2023-03-29 18:43:41 -04:00
|
|
|
android:configChanges="orientation|screenSize">
|
2023-03-04 14:10:05 -05:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|