John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 2 | |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 3 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 4 | package="com.example.renderthread" |
| 5 | android:versionCode="1" |
| 6 | android:versionName="1.0"> |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 7 | |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 8 | <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 Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 15 | <intent-filter> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 16 | <action android:name="android.intent.action.MAIN"/> |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 17 | |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 18 | <category android:name="android.intent.category.LAUNCHER"/> |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 19 | </intent-filter> |
| 20 | </activity> |
| 21 | <activity android:name=".SubActivity" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 22 | android:theme="@style/AppTheme.Transparent"/> |
John Reck | cec24ae | 2013-11-05 13:27:50 -0800 | [diff] [blame] | 23 | </application> |
| 24 | |
| 25 | </manifest> |