| | |
| | | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| | | |
| | | <application |
| | | android:name="com.secondworld.sdk.GameApp" |
| | | android:allowBackup="true" |
| | | android:supportsRtl="true"> |
| | | |
| | | <activity |
| | | android:name="com.secondworld.sdk.GameActivity" |
| | | android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection" |
| | | android:launchMode="singleTop" |
| | | android:screenOrientation="sensorLandscape" |
| | | tools:replace="android:configChanges" /> |
| | | <activity android:name="com.secondworld.sdk.GameActivity" |
| | | android:exported="true"> |
| | | <intent-filter> |
| | | <action android:name="android.intent.action.VIEW" /> |
| | | <category android:name="android.intent.category.DEFAULT" /> |
| | | <category android:name="android.intent.category.BROWSABLE" /> |
| | | <data android:scheme="${applicationId}" /> |
| | | </intent-filter> |
| | | </activity> |
| | | |
| | | </application> |
| | | |