summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
blob: 1167b946fa6750c0e22c905feb1de747cdb6a68b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version='1.0'?>
<manifest
  xmlns:android='http://schemas.android.com/apk/res/android'
  package='ski.kramkow.paste'
  android:versionCode='0'
  android:versionName='0.1'
>
  <uses-sdk
    android:minSdkVersion="21"
    android:targetSdkVersion="28"
  />
  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <application
    android:appComponentFactory="androidx.core.app.CoreComponentFactory"
    android:label="@string/app_name"
    android:theme="@style/Theme.PasteTheme"
    android:supportsRtl="true"
  >
    <activity
      android:name='.MainActivity'
      android:exported='true'
      android:label="@string/app_name"
      android:theme="@style/Theme.PasteTheme"
    >
      <intent-filter>
        <category android:name='android.intent.category.LAUNCHER'/>
        <action android:name='android.intent.action.MAIN'/>
      </intent-filter>
    </activity>
  </application>
</manifest>