2023-03-04 19:10:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.unprompted.tildefriends"
|
2024-06-26 20:47:44 -04:00
|
|
|
android:versionCode="21"
|
|
|
|
android:versionName="0.0.21-wip">
|
2023-10-22 18:52:20 +00:00
|
|
|
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="34"/>
|
2023-03-08 02:49:41 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2023-10-22 18:52:20 +00:00
|
|
|
<application
|
|
|
|
android:label="Tilde Friends"
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
android:debuggable="true"
|
|
|
|
android:extractNativeLibs="true">
|
2023-04-20 00:24:12 +00:00
|
|
|
<meta-data android:name="android.max_aspect" android:value="2.1"/>
|
2023-03-29 22:43:41 +00:00
|
|
|
<activity
|
2024-04-26 18:10:22 -04:00
|
|
|
android:name=".TildeFriendsActivity"
|
2023-05-04 00:04:43 +00:00
|
|
|
android:icon="@drawable/icon"
|
2023-10-22 17:51:16 +00:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="true">
|
2023-03-04 19:10:05 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|