AndroidManifest.xml 563 B

123456789101112
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.companyname.backgroundthreadtester">
  3. <application android:label="BackgroundThreadTester" android:icon="@mipmap/ic_launcher">
  4. <activity android:name=".MainActivity">
  5. <intent-filter>
  6. <action android:name="android.intent.action.MAIN" />
  7. <category android:name="android.intent.category.LAUNCHER" />
  8. </intent-filter>
  9. </activity>
  10. </application>
  11. <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="34" />
  12. </manifest>