30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|           package="adrienmalin.pingpoints">
 | |
|     <uses-permission android:name="android.permission.RECORD_AUDIO"/>
 | |
| 
 | |
|     <application
 | |
|             android:allowBackup="true"
 | |
|             android:icon="@mipmap/ic_launcher"
 | |
|             android:label="@string/app_name"
 | |
|             android:logo="@mipmap/ic_launcher"
 | |
|             android:roundIcon="@mipmap/ic_launcher_round"
 | |
|             android:supportsRtl="true"
 | |
|             android:theme="@style/PingPointsTheme">
 | |
|         <activity
 | |
|                 android:name=".StarterNameActivity"
 | |
|                 android:windowSoftInputMode="adjustResize">
 | |
|             <intent-filter>
 | |
|                 <action android:name="android.intent.action.MAIN"/>
 | |
| 
 | |
|                 <category android:name="android.intent.category.LAUNCHER"/>
 | |
|             </intent-filter>
 | |
|         </activity>
 | |
|         <activity
 | |
|                 android:name=".MatchActivity">
 | |
|         </activity>
 | |
|         <activity android:name=".VictoryActivity">
 | |
|         </activity>
 | |
|     </application>
 | |
| 
 | |
| </manifest> |