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"
|
2023-10-05 00:14:36 +00:00
|
|
|
android:versionCode="12"
|
|
|
|
android:versionName="0.0.12-wip">
|
2023-10-22 17:26:53 +00:00
|
|
|
<uses-sdk android:minSdkVersion="26"/>
|
2023-03-08 02:49:41 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2023-03-11 13:57:17 +00:00
|
|
|
<application android:label="Tilde Friends" android:usesCleartextTraffic="true" android:debuggable="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
|
|
|
|
android:name=".MainActivity"
|
2023-05-04 00:04:43 +00:00
|
|
|
android:icon="@drawable/icon"
|
2023-03-29 22:43:41 +00:00
|
|
|
android:configChanges="orientation|screenSize">
|
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>
|