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"
|
|
|
|
versionCode="1"
|
|
|
|
versionName="0.0.4">
|
|
|
|
<uses-sdk android:minSdkVersion="16"/>
|
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-03-29 18:43:41 -04:00
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
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>
|