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"
|
2024-08-02 22:26:01 -04:00
|
|
|
package="com.unprompted.tildefriends"
|
2024-11-01 18:01:10 -04:00
|
|
|
android:versionCode="30"
|
2024-11-27 12:10:17 -05:00
|
|
|
android:versionName="0.0.25">
|
2024-08-21 20:27:43 -04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
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"
|
2024-08-04 09:36:46 -04:00
|
|
|
android:usesCleartextTraffic="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>
|
2024-07-04 13:02:39 -04:00
|
|
|
<service
|
|
|
|
android:name=".TildeFriendsSandboxService"
|
|
|
|
android:exported="false"
|
|
|
|
android:isolatedProcess="true"
|
|
|
|
android:process=":sandbox"/>
|
2023-03-04 19:10:05 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|