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"
|
2024-08-02 22:26:01 -04:00
|
|
|
package="com.unprompted.tildefriends"
|
2024-08-28 19:10:16 -04:00
|
|
|
android:versionCode="27"
|
|
|
|
android:versionName="0.0.23-wip">
|
2024-08-21 20:27:43 -04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2023-03-07 21:49:41 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2023-10-22 14:52:20 -04:00
|
|
|
<application
|
|
|
|
android:label="Tilde Friends"
|
2024-08-04 09:36:46 -04:00
|
|
|
android:usesCleartextTraffic="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
|
2024-04-26 18:10:22 -04:00
|
|
|
android:name=".TildeFriendsActivity"
|
2023-05-03 20:04:43 -04:00
|
|
|
android:icon="@drawable/icon"
|
2023-10-22 13:51:16 -04:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="true">
|
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>
|
2024-07-04 13:02:39 -04:00
|
|
|
<service
|
|
|
|
android:name=".TildeFriendsSandboxService"
|
|
|
|
android:exported="false"
|
|
|
|
android:isolatedProcess="true"
|
|
|
|
android:process=":sandbox"/>
|
2023-03-04 14:10:05 -05:00
|
|
|
</application>
|
|
|
|
</manifest>
|