| | |
| | | <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="keyboard|keyboardHidden|screenLayout|screenSize|orientation" |
| | | 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> |
| | | |