blob: 22a4e43c988c8a2108476cb1c7ef20fb79278ef7 [file] [log] [blame]
John Reckcec24ae2013-11-05 13:27:50 -08001<?xml version="1.0" encoding="utf-8"?>
Ashwini Orugantie178c242020-03-18 15:46:39 -07002
John Reckcec24ae2013-11-05 13:27:50 -08003<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Orugantie178c242020-03-18 15:46:39 -07004 package="com.example.renderthread"
5 android:versionCode="1"
6 android:versionName="1.0">
John Reckcec24ae2013-11-05 13:27:50 -08007
Ashwini Orugantie178c242020-03-18 15:46:39 -07008 <application android:allowBackup="true"
9 android:icon="@drawable/ic_launcher"
10 android:label="@string/app_name"
11 android:theme="@style/AppTheme">
12 <activity android:name=".MainActivity"
13 android:label="@string/app_name"
14 android:exported="true">
John Reckcec24ae2013-11-05 13:27:50 -080015 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070016 <action android:name="android.intent.action.MAIN"/>
John Reckcec24ae2013-11-05 13:27:50 -080017
Ashwini Orugantie178c242020-03-18 15:46:39 -070018 <category android:name="android.intent.category.LAUNCHER"/>
John Reckcec24ae2013-11-05 13:27:50 -080019 </intent-filter>
20 </activity>
21 <activity android:name=".SubActivity"
Ashwini Orugantie178c242020-03-18 15:46:39 -070022 android:theme="@style/AppTheme.Transparent"/>
John Reckcec24ae2013-11-05 13:27:50 -080023 </application>
24
25</manifest>